ticketfrei/retootbot.py

116 lines
3.6 KiB
Python
Raw Normal View History

2017-06-17 18:49:30 +00:00
#!/usr/bin/env python3
import pytoml as toml
import mastodon
import os
import pickle
import re
import time
2017-06-25 17:15:38 +00:00
import trigger
import logging
import sendmail
logger = logging.getLogger(__name__)
2017-12-30 15:33:34 +00:00
2017-06-17 18:49:30 +00:00
class RetootBot(object):
def __init__(self, config, trigger):
2017-06-17 18:49:30 +00:00
self.config = config
self.trigger = trigger
self.client_id = self.register()
self.m = self.login()
2017-06-17 18:49:30 +00:00
# load state
try:
with open('seen_toots.pickle', 'rb') as f:
self.seen_toots = pickle.load(f)
except IOError:
self.seen_toots = set()
def register(self):
client_id = os.path.join(
2017-12-30 15:33:34 +00:00
'appkeys',
self.config['mapp']['name'] +
'@' + self.config['muser']['server']
)
2017-06-17 18:49:30 +00:00
if not os.path.isfile(client_id):
2017-06-17 18:49:30 +00:00
mastodon.Mastodon.create_app(
2017-12-30 15:33:34 +00:00
self.config['mapp']['name'],
api_base_url=self.config['muser']['server'],
to_file=client_id
2017-12-30 15:33:34 +00:00
)
2018-01-04 10:05:36 +00:00
return client_id
2017-06-17 18:49:30 +00:00
def login(self):
m = mastodon.Mastodon(
2017-12-30 15:33:34 +00:00
client_id=self.client_id,
api_base_url=self.config['muser']['server']
)
m.log_in(
2017-12-30 15:33:34 +00:00
self.config['muser']['email'],
self.config['muser']['password']
)
return m
2017-06-17 18:49:30 +00:00
2017-06-17 22:35:34 +00:00
def retoot(self, toots=()):
2017-06-17 18:49:30 +00:00
# toot external provided messages
for toot in toots:
self.m.toot(toot)
# boost mentions
retoots = []
for notification in self.m.notifications():
if (notification['type'] == 'mention'
and notification['status']['id'] not in self.seen_toots):
self.seen_toots.add(notification['status']['id'])
text_content = re.sub(r'<[^>]*>', '',
notification['status']['content'])
if not self.trigger.is_ok(text_content):
continue
logger.info('Boosting toot from %s: %s' % (
notification['status']['account']['acct'],
notification['status']['content']))
self.m.status_reblog(notification['status']['id'])
retoots.append('%s: %s' % (
notification['status']['account']['acct'],
re.sub(r'@\S*', '', text_content)))
2017-10-02 18:12:58 +00:00
# If the Mastodon instance returns interesting Errors, add them here:
2017-06-17 18:49:30 +00:00
# save state
2017-12-30 10:31:16 +00:00
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY | os.O_EXCL | os.O_CREAT), 'wb') as f:
2017-06-17 18:49:30 +00:00
pickle.dump(self.seen_toots, f)
os.rename('seen_toots.pickle.part', 'seen_toots.pickle')
# return mentions for mirroring
return retoots
if __name__ == '__main__':
# read config in TOML format (https://github.com/toml-lang/toml#toml)
2017-12-30 09:32:20 +00:00
with open('config.toml') as configfile:
2017-06-25 17:15:38 +00:00
config = toml.load(configfile)
fh = logging.FileHandler(config['logging']['logpath'])
fh.setLevel(logging.DEBUG)
logger.addHandler(fh)
2017-12-30 15:33:34 +00:00
trigger = trigger.Trigger(config)
bot = RetootBot(config, trigger)
try:
while True:
bot.retoot()
time.sleep(1)
except KeyboardInterrupt:
2018-01-04 11:20:59 +00:00
print("Good bye. Remember to restart the bot!")
except:
logger.error('Shutdown', exc_info=True)
try:
mailer = sendmail.Mailer(config)
mailer.send('', config['mail']['contact'],
'Ticketfrei Crash Report',
attachment=config['logging']['logpath'])
except:
logger.error('Mail sending failed', exc_info=True)