-
Notifications
You must be signed in to change notification settings - Fork 25
/
feediverse.py
executable file
·246 lines (216 loc) · 8.13 KB
/
feediverse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/env python3
import os
import re
import yaml
import argparse
import dateutil
import feedparser
import random
import time
import requests
from bs4 import BeautifulSoup
from mastodon import Mastodon
from datetime import datetime, timezone, MINYEAR
DEFAULT_CONFIG_FILE = os.path.join("~", ".feediverse")
def main():
parser = argparse.ArgumentParser()
parser.add_argument("-n", "--dry-run", action="store_true",
help=("perform a trial run with no changes made: "
"don't toot, don't save config"))
parser.add_argument("-v", "--verbose", action="store_true",
help="be verbose")
parser.add_argument("-c", "--config",
help="config file to use",
default=os.path.expanduser(DEFAULT_CONFIG_FILE))
parser.add_argument("-d", "--delay", action="store_true",
help="delay randomly from 10 to 30 seconds between each post")
parser.add_argument("-p", "--dedupe",
help="dedupe against the given tag",
default="", metavar="TAG")
args = parser.parse_args()
config_file = args.config
dedupe_field = args.dedupe
if args.verbose:
print("using config file", config_file)
if not os.path.isfile(config_file):
setup(config_file)
config = read_config(config_file)
masto = Mastodon(
api_base_url=config['url'],
client_id=config['client_id'],
client_secret=config['client_secret'],
access_token=config['access_token']
)
newest_post = config['updated']
dupes = config['dupecheck']
for feed in config['feeds']:
if args.verbose:
print(f"fetching {feed['url']} entries since {config['updated']}")
for entry in get_feed(feed['url'], config['updated']):
newest_post = max(newest_post, entry['updated'])
entry_text = feed['template'].format(**entry)[:499]
if args.dry_run:
print(entry_text)
continue
if args.verbose:
print(entry_text)
if dedupe_field:
if entry[dedupe_field] in dupes:
if args.verbose:
print(f"Skipping dupe post: {entry_text} based on dedupe field {dedupe_field}")
continue
update_dupes(dupes, entry[dedupe_field])
image_medias = []
if feed.get('include_images', False) and entry['images']:
for image in entry['images'][:4]:
# TODO: handle image fetch and upload exceptions
image_response = requests.get(image)
image_medias.append(masto.media_post(image_response.content, mime_type=image_response.headers['Content-Type']))
if not args.dry_run:
masto.status_post(
entry_text,
media_ids=image_medias
)
if args.delay:
delay = random.randrange(10,30)
print("Delaying..." + str(delay) + " seconds...")
time.sleep(delay)
if not args.dry_run:
config['updated'] = newest_post.isoformat()
config['dupecheck'] = dupes
save_config(config, config_file)
def get_feed(feed_url, last_update):
feed = feedparser.parse(feed_url)
# RSS feeds can contain future dates that we don't want to post yet,
# so we filter them out
now = datetime.now(timezone.utc)
entries = [e for e in feed.entries
if dateutil.parser.parse(e['updated']) <= now]
# Now we can filter for date normally
if last_update:
entries = [e for e in entries
if dateutil.parser.parse(e['updated']) > last_update]
entries.sort(key=lambda e: e.updated_parsed)
for entry in entries:
yield get_entry(entry)
def update_dupes(dupes, new):
if len(dupes) > 10:
del dupes[0]
dupes.append(new)
def get_entry(entry):
hashtags = []
for tag in entry.get('tags', []):
t = tag['term'].replace(' ', '_').replace('.', '').replace('-', '')
hashtags.append('#{}'.format(t))
summary = entry.get('summary', '')
content = entry.get('content', '')
comments = entry.get('comments', '')
if content:
content = cleanup(content[0].get('value', ''))
url = entry.id
return {
'url': url,
'link': entry.link,
'links': entry.links,
'comments': comments,
'title': cleanup(entry.title),
'summary': cleanup(summary),
'content': content,
'hashtags': ' '.join(hashtags),
'images': find_images(summary),
'updated': dateutil.parser.parse(entry['updated'])
}
def cleanup(text):
html = BeautifulSoup(text, 'html.parser')
text = html.get_text()
text = re.sub('\xa0+', ' ', text)
text = re.sub(' +', ' ', text)
text = re.sub(' +\n', '\n', text)
text = re.sub('\n\n\n+', '\n\n', text, flags=re.M)
return text.strip()
def find_urls(html):
if not html:
return
urls = []
soup = BeautifulSoup(html, 'html.parser')
for tag in soup.find_all(["a", "img"]):
if tag.name == "a":
url = tag.get("href")
elif tag.name == "img":
url = tag.get("src")
if url and url not in urls:
urls.append(url)
return urls
def find_images(html):
if not html:
return
urls = []
soup = BeautifulSoup(html, 'html.parser')
for tag in soup.find_all(["img"]):
if tag.name == "img":
url = tag.get("src")
if url and url not in urls:
urls.append(url)
return urls
def yes_no(question):
res = input(question + ' [y/n] ')
return res.lower() in "y1"
def save_config(config, config_file):
copy = dict(config)
with open(config_file, 'w') as fh:
fh.write(yaml.dump(copy, default_flow_style=False))
def read_config(config_file):
config = {
'updated': datetime(MINYEAR, 1, 1, 0, 0, 0, 0, timezone.utc),
'dupecheck': [],
}
with open(config_file) as fh:
cfg = yaml.load(fh, yaml.SafeLoader)
if 'updated' in cfg:
cfg['updated'] = dateutil.parser.parse(cfg['updated'])
config.update(cfg)
return config
def setup(config_file):
url = input('What is your Mastodon Instance URL? ')
have_app = yes_no('Do you have your app credentials already?')
if have_app:
name = 'feediverse'
client_id = input('What is your app\'s client id: ')
client_secret = input('What is your client secret: ')
access_token = input('access_token: ')
else:
print("Ok, I'll need a few things in order to get your access token")
name = input('app name (e.g. feediverse): ')
client_id, client_secret = Mastodon.create_app(
api_base_url=url,
client_name=name,
#scopes=['read', 'write'],
website='https://github.com/edsu/feediverse'
)
username = input('mastodon username (email): ')
password = input('mastodon password (not stored): ')
m = Mastodon(client_id=client_id, client_secret=client_secret, api_base_url=url)
access_token = m.log_in(username, password)
feed_url = input('RSS/Atom feed URL to watch: ')
old_posts = yes_no('Shall already existing entries be tooted, too?')
include_images = yes_no('Do you want to attach images (the first 4) found in entries to your toot?')
config = {
'name': name,
'url': url,
'client_id': client_id,
'client_secret': client_secret,
'access_token': access_token,
'feeds': [
{'url': feed_url, 'template': '{title} {url}', 'include_images': include_images}
]
}
if not old_posts:
config['updated'] = datetime.now(tz=timezone.utc).isoformat()
save_config(config, config_file)
print("")
print("Your feediverse configuration has been saved to {}".format(config_file))
print("Add a line line this to your crontab to check every 15 minutes:")
print("*/15 * * * * /usr/local/bin/feediverse")
print("")
if __name__ == "__main__":
main()