telegram_bots/feeds/tasks.py

57 lines
1.4 KiB
Python
Raw Normal View History

2019-03-14 07:17:08 +00:00
import traceback
2019-03-10 07:11:59 +00:00
import sentry_sdk
2019-03-14 06:53:06 +00:00
from celery.exceptions import Reject
2019-01-26 09:36:44 +00:00
from celery_once import QueueOnce
2019-01-11 19:16:01 +00:00
from django.utils import timezone
from telebot import TeleBot
2019-01-19 06:52:00 +00:00
from djconfig import config
2019-01-11 19:16:01 +00:00
from config.celery import app
2019-01-26 09:36:44 +00:00
2019-01-26 09:43:15 +00:00
@app.task(base=QueueOnce, once={'graceful': True})
2019-01-26 09:36:44 +00:00
def check_feeds():
2019-01-26 09:38:13 +00:00
from feeds.models import Feed
2019-01-26 09:36:44 +00:00
feeds = Feed.objects.filter(lock=False)
2019-03-14 06:53:06 +00:00
enqueued = []
2019-01-26 09:36:44 +00:00
for feed in feeds:
2019-03-14 06:53:06 +00:00
if feed.run_check():
enqueued.append(str(feed))
return f'Following tasks were enqueued: {enqueued}'
2019-01-11 19:16:01 +00:00
@app.task()
def execute_feed(feed_pk):
from feeds.models import Feed
2019-01-25 16:33:22 +00:00
2019-01-25 16:33:54 +00:00
config._reload_maybe()
2019-01-11 19:16:01 +00:00
2019-02-04 09:15:53 +00:00
feed = None
2019-01-11 19:16:01 +00:00
try:
feed = Feed.objects.get(pk=feed_pk)
2019-03-14 06:58:33 +00:00
# if not feed.lock:
# feed.lock = True
# feed.save()
# else:
# raise Reject('Lock', requeue=False)
2019-01-11 19:16:01 +00:00
2019-03-09 19:11:42 +00:00
bot = TeleBot(config.feed_bot_token, threaded=False)
2019-03-10 07:11:59 +00:00
print(f'Last ID for "{feed}" = "{feed.last_id}"')
2019-02-04 09:15:53 +00:00
for last_id in feed.config.execute(bot, feed.chat_id, feed.last_id):
if last_id:
feed.last_id = last_id
feed.save()
2019-03-10 07:11:59 +00:00
print(f'Saved last ID for "{feed}" = "{feed.last_id}"')
2019-01-11 19:16:01 +00:00
feed.last_check = timezone.now()
feed.save()
2019-03-10 07:11:59 +00:00
except Exception as e:
sentry_sdk.capture_exception(e)
2019-03-14 07:17:08 +00:00
traceback.print_exc()
2019-01-11 19:16:01 +00:00
finally:
2019-02-04 09:15:53 +00:00
if feed:
feed.lock = False
feed.save()