pleroma-ebooks/gen.py

50 lines
1.5 KiB
Python
Raw Normal View History

2018-10-09 03:11:51 +02:00
#!/usr/bin/env python3
# SPDX-License-Identifier: AGPL-3.0-only
2018-10-09 03:11:51 +02:00
2021-06-16 03:59:57 +02:00
import re
from third_party import utils
2021-06-16 03:59:57 +02:00
from pleroma import Pleroma
2018-10-09 03:11:51 +02:00
2021-06-16 03:59:57 +02:00
def parse_args():
parser = utils.arg_parser_factory(description='Generate and post a toot.')
2021-06-16 03:59:57 +02:00
parser.add_argument(
'-s', '--simulate', dest='simulate', action='store_true',
help="Print the toot without actually posting it. Use this to make sure your bot's actually working.",
)
parser.add_argument(
'-m', '--mode',
default='markov',
help='Pass one of these: ' + ', '.join(utils.TextGenerationMode.__members__),
)
2021-06-16 03:59:57 +02:00
return parser.parse_args()
2018-10-09 03:11:51 +02:00
2021-06-16 03:59:57 +02:00
async def main():
args = parse_args()
cfg = utils.load_config(args.cfg)
2018-10-09 03:11:51 +02:00
toot = utils.make_toot(cfg, mode=utils.TextGenerationMode.__members__[args.mode])
2019-07-01 09:23:18 +02:00
if cfg['strip_paired_punctuation']:
toot = re.sub(r"[\[\]\(\)\{\}\"“”«»„]", "", toot)
if not args.simulate:
2021-06-16 03:59:57 +02:00
async with Pleroma(api_base_url=cfg['site'], access_token=cfg['access_token']) as pl:
try:
await pl.post(toot, visibility='unlisted', cw=cfg['cw'])
except Exception:
import traceback
toot = (
'An error occurred while submitting the generated post. '
'Contact io@csdisaster.club for assistance. Full traceback:\n\n'
+ traceback.format_exc()
)
await pl.status_post(toot, visibility='unlisted', cw='Error!')
raise
try:
2019-07-02 12:43:34 +02:00
print(toot)
except UnicodeEncodeError:
print(toot.encode("ascii", "ignore")) # encode as ASCII, dropping any non-ASCII characters
2021-06-16 03:59:57 +02:00
if __name__ == '__main__':
import anyio
anyio.run(main)