2018-10-08 18:11:51 -07:00
|
|
|
#!/usr/bin/env python3
|
2021-06-15 18:29:53 -07:00
|
|
|
# SPDX-License-Identifier: EUPL-1.2
|
2018-10-08 18:11:51 -07:00
|
|
|
|
2021-06-15 18:59:57 -07:00
|
|
|
import re
|
2019-01-11 04:47:42 -08:00
|
|
|
import functions
|
2021-06-15 18:59:57 -07:00
|
|
|
from pleroma import Pleroma
|
2018-10-08 18:11:51 -07:00
|
|
|
|
2021-06-15 18:59:57 -07:00
|
|
|
def parse_args():
|
|
|
|
parser = functions.arg_parser_factory(description='Generate and post a toot.')
|
|
|
|
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.")
|
|
|
|
return parser.parse_args()
|
2018-10-08 18:11:51 -07:00
|
|
|
|
2021-06-15 18:59:57 -07:00
|
|
|
async def main():
|
|
|
|
args = parse_args()
|
|
|
|
cfg = functions.load_config(args.cfg)
|
2018-10-08 18:11:51 -07:00
|
|
|
|
2019-08-06 20:46:57 -07:00
|
|
|
toot = functions.make_toot(cfg)
|
2019-07-01 00:23:18 -07:00
|
|
|
if cfg['strip_paired_punctuation']:
|
|
|
|
toot = re.sub(r"[\[\]\(\)\{\}\"“”«»„]", "", toot)
|
2018-10-31 22:27:03 -07:00
|
|
|
if not args.simulate:
|
2021-06-15 18:59:57 -07: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
|
|
|
|
|
2019-02-22 16:34:22 -08:00
|
|
|
try:
|
2019-07-02 03:43:34 -07:00
|
|
|
print(toot)
|
2019-02-22 16:34:22 -08:00
|
|
|
except UnicodeEncodeError:
|
2021-06-04 14:38:36 -07:00
|
|
|
print(toot.encode("ascii", "ignore")) # encode as ASCII, dropping any non-ASCII characters
|
2021-06-15 18:59:57 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import anyio
|
|
|
|
anyio.run(main)
|