commit e4e504f71344c472d5737bbc3e347618232cd990 Author: shibao Date: Thu Dec 15 19:31:12 2022 -0500 initial commit diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..558678d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.gitignore +crontab +crontab.example diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..78e21d1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +crontab diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 0000000..bc91fdd --- /dev/null +++ b/.tool-versions @@ -0,0 +1 @@ +python 3.11.1 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cafcb64 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.11.1-alpine3.17 + +COPY . . + +RUN pip install -r requirements.txt + +RUN crontab crontab + +CMD ["crond", "-f"] diff --git a/crontab.example b/crontab.example new file mode 100644 index 0000000..70220c5 --- /dev/null +++ b/crontab.example @@ -0,0 +1 @@ +0 * * * * python misskey-szuru-bot.py --instance misskey.io --token token_here --booru szurubooru.com --username my-username --apiKey szuru-login-token --query "sort:random" diff --git a/misskey-szuru-bot.py b/misskey-szuru-bot.py new file mode 100644 index 0000000..e2f9f99 --- /dev/null +++ b/misskey-szuru-bot.py @@ -0,0 +1,37 @@ +#!/usr/bin/python3 +import argparse +import pyszuru +import requests +from misskey import Misskey + +# arguments +parser = argparse.ArgumentParser(prog='misskey-szuru-bot', + description='Bot that posts a link to a random szurubooru image') + +parser.add_argument('-i', '--instance', metavar='instance', type=str, + help='Domain of misskey instance i.e: misskey.io', required=True) +parser.add_argument('-t', '--token', metavar='token', type=str, + help='Token used for posting to misskey instance', required=True) +parser.add_argument('-b', '--booru', metavar='booru', type=str, + help='Domain of szurubooru instance to query i.e: szurubooru.com', required=True) +parser.add_argument('-u', '--username', metavar='username', type=str, + help='Username for szurubooru account', required=True) +parser.add_argument('-a', '--apiKey', metavar='apiKey', type=str, + help='API key for szurubooru account', required=True) +parser.add_argument('-q', '--query', metavar='query', type=str, + help='Query to search szurubooru', default="sort:random") + +args = parser.parse_args() + +# get post +booru = pyszuru.API(f"https://{args.booru}", username=args.username, token=args.apiKey) +post = next(booru.search_post(args.query)) + +# compose note +text = f"link: {post.content}" +if post.safety == "unsafe": + text += " (nsfw)" +text += f"source: https://{args.booru}/post/{post.id_}" + +# post a note :D +Misskey(args.instance, i=args.token).notes_create(text=text) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..802c02f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +Misskey.py +requests +pyszuru