2018-10-09 03:11:51 +02:00
|
|
|
#!/usr/bin/env python3
|
2021-07-26 06:52:13 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2018-10-09 03:11:51 +02:00
|
|
|
|
2021-06-16 05:49:34 +02:00
|
|
|
import re
|
|
|
|
import anyio
|
|
|
|
import pleroma
|
|
|
|
import contextlib
|
2021-07-26 06:52:13 +02:00
|
|
|
from third_party import utils
|
2018-10-09 03:11:51 +02:00
|
|
|
|
2021-06-16 05:49:34 +02:00
|
|
|
def parse_args():
|
2021-07-26 06:52:13 +02:00
|
|
|
return utils.arg_parser_factory(description='Reply service. Leave running in the background.').parse_args()
|
2021-06-16 05:49:34 +02:00
|
|
|
|
|
|
|
class ReplyBot:
|
|
|
|
def __init__(self, cfg):
|
|
|
|
self.cfg = cfg
|
|
|
|
self.pleroma = pleroma.Pleroma(access_token=cfg['access_token'], api_base_url=cfg['site'])
|
|
|
|
|
|
|
|
async def run(self):
|
|
|
|
async with self.pleroma as self.pleroma:
|
|
|
|
self.me = (await self.pleroma.me())['id']
|
|
|
|
self.follows = frozenset(user['id'] for user in await self.pleroma.following(self.me))
|
|
|
|
async for notification in self.pleroma.stream_mentions():
|
|
|
|
await self.process_notification(notification)
|
|
|
|
|
|
|
|
async def process_notification(self, notification):
|
|
|
|
acct = "@" + notification['account']['acct'] # get the account's @
|
|
|
|
post_id = notification['status']['id']
|
|
|
|
context = await self.pleroma.status_context(post_id)
|
|
|
|
|
|
|
|
# check if we've already been participating in this thread
|
|
|
|
if self.check_thread_length(context):
|
|
|
|
return
|
|
|
|
|
|
|
|
content = self.extract_toot(notification['status']['content'])
|
|
|
|
if content in {'pin', 'unpin'}:
|
|
|
|
await self.process_command(context, notification, content)
|
|
|
|
else:
|
|
|
|
await self.reply(notification)
|
|
|
|
|
|
|
|
def check_thread_length(self, context) -> bool:
|
|
|
|
"""return whether the thread is too long to reply to"""
|
|
|
|
posts = 0
|
|
|
|
for post in context['ancestors']:
|
|
|
|
if post['account']['id'] == self.me:
|
|
|
|
posts += 1
|
|
|
|
if posts >= self.cfg['max_thread_length']:
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
async def process_command(self, context, notification, command):
|
|
|
|
post_id = notification['status']['id']
|
|
|
|
if notification['account']['id'] not in self.follows: # this user is unauthorized
|
|
|
|
await self.pleroma.react(post_id, '❌')
|
|
|
|
return
|
|
|
|
|
|
|
|
# find the post the user is talking about
|
|
|
|
for post in context['ancestors']:
|
|
|
|
if post['id'] == notification['status']['in_reply_to_id']:
|
|
|
|
target_post_id = post['id']
|
|
|
|
|
|
|
|
try:
|
|
|
|
await (self.pleroma.pin if command == 'pin' else self.pleroma.unpin)(target_post_id)
|
|
|
|
except pleroma.BadRequest as exc:
|
|
|
|
async with anyio.create_task_group() as tg:
|
|
|
|
tg.start_soon(self.pleroma.react, post_id, '❌')
|
|
|
|
tg.start_soon(self.pleroma.reply, notification['status'], 'Error: ' + exc.args[0])
|
|
|
|
else:
|
|
|
|
await self.pleroma.react(post_id, '✅')
|
|
|
|
|
|
|
|
async def reply(self, notification):
|
2021-07-26 06:52:13 +02:00
|
|
|
toot = utils.make_toot(self.cfg) # generate a toot
|
2021-06-16 05:49:34 +02:00
|
|
|
await self.pleroma.reply(notification['status'], toot, cw=self.cfg['cw'])
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def extract_toot(toot):
|
2021-07-26 06:52:13 +02:00
|
|
|
text = utils.extract_toot(toot)
|
2021-06-16 05:49:34 +02:00
|
|
|
text = re.sub(r"^@\S+\s", r"", text) # remove the initial mention
|
|
|
|
text = text.lower() # treat text as lowercase for easier keyword matching (if this bot uses it)
|
|
|
|
return text
|
|
|
|
|
|
|
|
async def amain():
|
|
|
|
args = parse_args()
|
2021-07-26 06:52:13 +02:00
|
|
|
cfg = utils.load_config(args.cfg)
|
2021-06-16 05:49:34 +02:00
|
|
|
await ReplyBot(cfg).run()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
with contextlib.suppress(KeyboardInterrupt):
|
|
|
|
anyio.run(amain)
|