ticketfrei/backend.py

39 lines
1.1 KiB
Python
Raw Normal View History

2017-12-30 00:15:22 +00:00
#!/usr/bin/env python3
2018-03-28 15:36:35 +00:00
from bot import Bot
import active_bots
from config import config
from db import db
2018-03-24 15:26:35 +00:00
import logging
2018-03-28 23:25:17 +00:00
from sendmail import sendmail
2018-03-28 15:36:35 +00:00
import time
2018-03-24 15:26:35 +00:00
if __name__ == '__main__':
logger = logging.getLogger()
2018-03-28 22:24:56 +00:00
fh = logging.StreamHandler()
2018-03-24 15:26:35 +00:00
fh.setLevel(logging.DEBUG)
logger.addHandler(fh)
2018-03-28 15:36:35 +00:00
bots = []
for ActiveBot in active_bots.__dict__.values():
if isinstance(ActiveBot, type) and issubclass(ActiveBot, Bot):
bots.append(ActiveBot())
2018-03-28 15:36:35 +00:00
try:
while True:
for user in db.active_users:
for bot in bots:
reports = bot.crawl(user)
for status in reports:
2018-03-28 15:36:35 +00:00
if not user.is_appropriate(status):
continue
2018-03-28 21:50:55 +00:00
for bot2 in bots:
bot2.post(user, status)
2018-03-28 15:36:35 +00:00
time.sleep(60) # twitter rate limit >.<
2018-03-28 23:25:17 +00:00
except Exception:
logger.error('Shutdown.', exc_info=True)
try:
sendmail(config['web']['contact'], 'Ticketfrei Shutdown')
except Exception:
logger.error('Could not inform admin.', exc_info=True)