2017-06-17 18:49:30 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import mastodon
|
|
|
|
import re
|
2018-03-23 14:51:52 +00:00
|
|
|
# import time
|
|
|
|
# import trigger
|
|
|
|
# import sendmail
|
2018-01-18 10:41:08 +00:00
|
|
|
import report
|
2018-03-23 14:51:52 +00:00
|
|
|
from user import User
|
|
|
|
|
2017-06-17 18:49:30 +00:00
|
|
|
|
|
|
|
class RetootBot(object):
|
2018-03-23 14:51:52 +00:00
|
|
|
def __init__(self, config, logger, uid, db):
|
2017-06-17 18:49:30 +00:00
|
|
|
self.config = config
|
2018-03-23 14:51:52 +00:00
|
|
|
self.logger = logger
|
|
|
|
self.user = User(db, uid)
|
|
|
|
client_id, client_secret, access_token, instance_url = self.user.get_masto_credentials()
|
|
|
|
self.m = mastodon.Mastodon(client_id=client_id, client_secret=client_secret,
|
|
|
|
access_token=access_token, api_base_url=instance_url)
|
2017-06-17 18:49:30 +00:00
|
|
|
|
|
|
|
# load state
|
|
|
|
try:
|
2018-03-23 14:51:52 +00:00
|
|
|
self.seen_toots = self.user.get_seen_toot()
|
|
|
|
except TypeError:
|
|
|
|
self.seen_toots = 0
|
2017-06-17 18:49:30 +00:00
|
|
|
|
2018-01-18 12:06:53 +00:00
|
|
|
def save_last(self):
|
2018-03-23 14:51:52 +00:00
|
|
|
self.user.save_seen_toot(self.seen_toots)
|
2018-01-18 12:06:53 +00:00
|
|
|
|
2018-01-18 10:41:08 +00:00
|
|
|
def crawl(self):
|
|
|
|
"""
|
|
|
|
Crawl mentions from Mastodon.
|
|
|
|
|
|
|
|
:return: list of statuses
|
|
|
|
"""
|
|
|
|
mentions = []
|
2018-01-18 23:17:09 +00:00
|
|
|
try:
|
|
|
|
all = self.m.notifications()
|
|
|
|
except: # mastodon.Mastodon.MastodonAPIError is unfortunately not in __init__.py
|
2018-03-23 10:18:00 +00:00
|
|
|
self.logger.error("Unknown Mastodon API Error.", exc_info=True)
|
2018-01-18 23:17:09 +00:00
|
|
|
return mentions
|
2018-01-18 10:41:08 +00:00
|
|
|
for status in all:
|
2018-03-23 14:51:52 +00:00
|
|
|
if status['type'] == 'mention' and status['status']['id'] > self.seen_toots:
|
2018-01-18 10:41:08 +00:00
|
|
|
# save state
|
2018-03-23 14:51:52 +00:00
|
|
|
self.seen_toots = status['status']['id']
|
2018-01-18 12:06:53 +00:00
|
|
|
self.save_last()
|
2018-01-18 10:41:08 +00:00
|
|
|
# add mention to mentions
|
2018-01-18 14:10:05 +00:00
|
|
|
text = re.sub(r'<[^>]*>', '', status['status']['content'])
|
2018-03-23 16:00:52 +00:00
|
|
|
text = re.sub("(?<=^|(?<=[^a-zA-Z0-9-_.]))@([A-Za-z]+[A-Za-z0-9-_]+)", "", text)
|
2018-01-18 10:41:08 +00:00
|
|
|
mentions.append(report.Report(status['account']['acct'],
|
|
|
|
"mastodon",
|
2018-01-18 14:10:05 +00:00
|
|
|
text,
|
2018-01-18 10:41:08 +00:00
|
|
|
status['status']['id'],
|
|
|
|
status['status']['created_at']))
|
|
|
|
return mentions
|
|
|
|
|
|
|
|
def repost(self, mention):
|
|
|
|
"""
|
|
|
|
Retoots a mention.
|
|
|
|
|
|
|
|
:param mention: (report.Report object)
|
|
|
|
"""
|
2018-03-23 10:18:00 +00:00
|
|
|
self.logger.info('Boosting toot from %s' % (
|
2018-01-18 10:41:08 +00:00
|
|
|
mention.format()))
|
|
|
|
self.m.status_reblog(mention.id)
|
|
|
|
|
|
|
|
def post(self, report):
|
|
|
|
"""
|
|
|
|
Toots a report from other sources.
|
|
|
|
|
|
|
|
:param report: (report.Report object)
|
|
|
|
"""
|
|
|
|
toot = report.format()
|
|
|
|
self.m.toot(toot)
|
|
|
|
|
|
|
|
def flow(self, trigger, reports=()):
|
2017-06-17 18:49:30 +00:00
|
|
|
# toot external provided messages
|
2018-01-18 10:41:08 +00:00
|
|
|
for report in reports:
|
|
|
|
self.post(report)
|
2017-06-17 18:49:30 +00:00
|
|
|
|
|
|
|
# boost mentions
|
|
|
|
retoots = []
|
2018-01-18 10:41:08 +00:00
|
|
|
for mention in self.crawl():
|
|
|
|
if not trigger.is_ok(mention.text):
|
|
|
|
continue
|
|
|
|
self.repost(mention)
|
|
|
|
retoots.append(mention)
|
2017-06-17 18:49:30 +00:00
|
|
|
|
|
|
|
# return mentions for mirroring
|
|
|
|
return retoots
|
|
|
|
|
2018-03-23 14:51:52 +00:00
|
|
|
"""
|
2017-06-17 18:49:30 +00:00
|
|
|
if __name__ == '__main__':
|
2018-03-23 12:19:39 +00:00
|
|
|
config = backend.get_config()
|
2017-06-25 17:15:38 +00:00
|
|
|
|
2018-01-07 19:22:32 +00:00
|
|
|
trigger = trigger.Trigger(config)
|
2018-01-18 10:41:08 +00:00
|
|
|
bot = RetootBot(config)
|
2018-01-04 10:02:42 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
while True:
|
2018-01-18 10:41:08 +00:00
|
|
|
bot.flow(trigger)
|
2018-01-04 10:02:42 +00:00
|
|
|
time.sleep(1)
|
|
|
|
except KeyboardInterrupt:
|
2018-01-04 11:20:59 +00:00
|
|
|
print("Good bye. Remember to restart the bot!")
|
2018-01-04 10:02:42 +00:00
|
|
|
except:
|
2018-03-23 10:18:00 +00:00
|
|
|
bot.logger.error('Shutdown', exc_info=True)
|
2018-01-07 19:22:32 +00:00
|
|
|
try:
|
|
|
|
mailer = sendmail.Mailer(config)
|
|
|
|
mailer.send('', config['mail']['contact'],
|
|
|
|
'Ticketfrei Crash Report',
|
|
|
|
attachment=config['logging']['logpath'])
|
|
|
|
except:
|
2018-03-23 10:18:00 +00:00
|
|
|
bot.logger.error('Mail sending failed', exc_info=True)
|
2018-03-23 14:51:52 +00:00
|
|
|
"""
|