ticketfrei/active_bots/mastodonbot.py

76 lines
2.7 KiB
Python
Raw Normal View History

2018-03-28 15:36:35 +00:00
#!/usr/bin/env python3
from bot import Bot
import logging
from mastodon import Mastodon
import re
from report import Report
logger = logging.getLogger(__name__)
class MastodonBot(Bot):
def crawl(self, user):
"""
Crawl mentions from Mastodon.
:return: list of statuses
"""
mentions = []
try:
m = Mastodon(*user.get_masto_credentials())
except TypeError:
2018-09-13 15:33:33 +00:00
# logger.error("No Mastodon Credentials in database.", exc_info=True)
return mentions
2018-03-28 15:36:35 +00:00
try:
notifications = m.notifications()
2018-03-28 23:25:17 +00:00
except Exception:
2018-03-28 15:36:35 +00:00
logger.error("Unknown Mastodon API Error.", exc_info=True)
return mentions
for status in notifications:
2018-09-13 15:24:19 +00:00
if user.get_seen_toot() is None:
2018-09-09 18:22:41 +00:00
user.init_seen_toot(m.instance()['uri'])
2018-03-28 15:36:35 +00:00
if (status['type'] == 'mention' and
2018-03-28 20:12:57 +00:00
status['status']['id'] > user.get_seen_toot()):
2018-03-28 15:36:35 +00:00
# save state
2018-03-28 20:12:57 +00:00
user.save_seen_toot(status['status']['id'])
2018-03-28 15:36:35 +00:00
# add mention to mentions
text = re.sub(r'<[^>]*>', '', status['status']['content'])
text = re.sub(
"(?<=^|(?<=[^a-zA-Z0-9-_.]))@([A-Za-z]+[A-Za-z0-9-_]+)",
"", text)
if status['status']['visibility'] == 'public':
mentions.append(Report(status['account']['acct'],
self,
text,
status['status']['id'],
status['status']['created_at']))
else:
mentions.append(Report(status['account']['acct'],
'mastodonPrivate',
text,
status['status']['id'],
status['status']['created_at']))
2018-03-28 15:36:35 +00:00
return mentions
def post(self, user, report):
try:
m = Mastodon(*user.get_masto_credentials())
except TypeError:
return # no mastodon account for this user.
2018-03-28 15:36:35 +00:00
if report.source == self:
try:
m.status_reblog(report.id)
except Exception:
logger.error('Error boosting: ' + report.id, exc_info=True)
2018-03-28 15:36:35 +00:00
else:
2018-04-15 09:42:34 +00:00
text = report.text
if len(text) > 500:
text = text[:500 - 4] + u' ...'
try:
2018-04-15 09:42:34 +00:00
m.toot(text)
except Exception:
2018-09-13 15:33:33 +00:00
logger.error('Error tooting: ' + user.get_city() + ': ' +
report.id, exc_info=True)