mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Added more error detection to the Reddit app, also moved is_valid to the model
This commit is contained in:
@@ -1,23 +1,47 @@
|
||||
from urllib2 import HTTPError, URLError
|
||||
from celery.task import Task
|
||||
from celery.decorators import task
|
||||
from reddit.models import RedditAccount
|
||||
from reddit.api import Inbox
|
||||
from reddit.api import Inbox, LoginError
|
||||
from django.conf import settings
|
||||
|
||||
@task(ignore_result=True)
|
||||
def send_reddit_message(to, subject, message):
|
||||
ib = Inbox(username=settings.REDDIT_USER, password=settings.REDDIT_PASSWORD)
|
||||
ib.send(to, subject, message)
|
||||
class send_reddit_message(Task):
|
||||
|
||||
default_retry_delay = 5 * 60 # retry in 5 minutes
|
||||
ignore_result = True
|
||||
|
||||
def run(self, to, subject, message, **kwargs):
|
||||
logger = self.get_logger(**kwargs)
|
||||
|
||||
logger.info("Sending Reddit message to %s" % to)
|
||||
ib = Inbox(username=settings.REDDIT_USER, password=settings.REDDIT_PASSWORD)
|
||||
try:
|
||||
ib.send(to, subject, message)
|
||||
except (HTTPError, URLError), exc:
|
||||
logger.error("Error sending message, queueing for retry")
|
||||
self.retry([to, subject, message], kwargs=kwargs, exc=exc)
|
||||
except LoginError, exc:
|
||||
logger.error("Error logging into Reddit")
|
||||
|
||||
|
||||
@task(ignore_result=True)
|
||||
def process_validations():
|
||||
log = process_validations.get_logger()
|
||||
inbox = Inbox(settings.REDDIT_USER, settings.REDDIT_PASSWORD)
|
||||
logger = process_validations.get_logger()
|
||||
try:
|
||||
inbox = Inbox(settings.REDDIT_USER, settings.REDDIT_PASSWORD)
|
||||
except (HTTPError, URLError), exc:
|
||||
logger.error("Error with Reddit, aborting.")
|
||||
return
|
||||
except LoginError, exc:
|
||||
logger.error("Error logging into Reddit")
|
||||
return
|
||||
|
||||
for msg in inbox:
|
||||
if not msg.was_comment:
|
||||
try:
|
||||
acc = RedditAccount.objects.get(username__iexact=msg.author)
|
||||
if not acc.validated and msg.subject == "Validation: %s" % acc.user.username:
|
||||
log.info("Validated %s" % acc.user.username)
|
||||
logger.info("Validated %s" % acc.user.username)
|
||||
acc.validated = True
|
||||
acc.save()
|
||||
except RedditAccount.DoesNotExist:
|
||||
|
||||
Reference in New Issue
Block a user