regluit/core/tasks.py

101 lines
3.6 KiB
Python
Raw Normal View History

from time import sleep
from datetime import timedelta
import logging
logger = logging.getLogger(__name__)
from celery.task import task
2012-02-16 18:19:36 +00:00
from django.contrib.auth.models import User
from django.conf import settings
2012-02-16 18:19:36 +00:00
from regluit.core import bookloader, models
from regluit.core import goodreads, librarything
from regluit.core.models import Campaign
from regluit.utils.localdatetime import now, date_today
from django.core.mail import send_mail
from notification.engine import send_all
from notification import models as notification
@task
2012-02-16 18:19:36 +00:00
def populate_edition(isbn):
"""given an edition this task will populate the database with additional
information about related editions and subjects related to this edition
"""
2012-02-16 18:19:36 +00:00
bookloader.add_related(isbn)
edition=models.Edition.get_by_isbn(isbn)
if edition:
bookloader.add_openlibrary(edition.work)
return edition
@task
2012-02-16 18:19:36 +00:00
def load_goodreads_shelf_into_wishlist(user_id, shelf_name='all', goodreads_user_id=None, max_books=None,
expected_number_of_books=None):
2012-02-16 18:19:36 +00:00
user=User.objects.get(id=user_id)
return goodreads.load_goodreads_shelf_into_wishlist(user,shelf_name,goodreads_user_id,max_books, expected_number_of_books)
2012-02-16 18:19:36 +00:00
@task
2012-02-16 18:19:36 +00:00
def load_librarything_into_wishlist(user_id, lt_username, max_books=None):
user=User.objects.get(id=user_id)
return librarything.load_librarything_into_wishlist(user, lt_username, max_books)
@task
2011-11-10 17:33:22 +00:00
def fac(n, sleep_interval=None):
2012-03-29 20:10:14 +00:00
# used to test celery task execution
if not(isinstance(n,int) and n >= 0):
raise Exception("You can't calculate a factorial of %s " % (str(n)))
if n <= 1:
return 1
else:
res = 1
for i in xrange(2,n+1):
res = res*i
2011-11-10 17:33:22 +00:00
fac.update_state(state="PROGRESS", meta={"current": i, "total": n})
if sleep_interval is not None:
sleep(sleep_interval)
return res
2012-03-29 20:10:14 +00:00
@task
def send_mail_task(subject, message, from_email, recipient_list,
fail_silently=False, auth_user=None, auth_password=None,
connection=None, override_from_email=True):
"""a task to drop django.core.mail.send_mail into """
# NOTE: since we are currently using Amazon SES, which allows email to be sent only from validated email
# addresses, we force from_email to be one of the validated address unless override_from_email is FALSE
2012-07-10 20:06:57 +00:00
try:
2012-07-10 20:03:36 +00:00
if override_from_email:
try:
from_email = settings.DEFAULT_FROM_EMAIL
except:
pass
r= send_mail(subject, message, from_email, recipient_list, fail_silently=False, auth_user=auth_user,
auth_password=auth_password, connection=connection)
except:
r=logger.info('failed to send message:' + message)
return r
#task to update the status of active campaigns
@task
def update_active_campaign_status():
"""update the status of all active campaigns -- presumed to be run at midnight Eastern time"""
return [c.update_status(send_notice=True) for c in Campaign.objects.filter(status='Active') ]
@task
def emit_notifications():
logger.info('notifications emitting' )
return send_all()
@task
def report_new_ebooks(created=None): #created= creation date
if created:
period = (created, created+timedelta(days=1))
else:
period = (date_today()-timedelta(days=1), date_today())
works = models.Work.objects.filter(editions__ebooks__created__range = period).distinct()
for work in works:
notification.send_now(work.wished_by(), "wishlist_unglued_book_released", {'work':work}, True)