from datetime import ( datetime, timedelta ) from flask import current_app from notifications_utils.statsd_decorators import statsd from sqlalchemy import and_ from sqlalchemy.exc import SQLAlchemyError from app import notify_celery from app.celery.tasks import process_job from app.config import QueueNames, TaskNames from app.dao.invited_org_user_dao import delete_org_invitations_created_more_than_two_days_ago from app.dao.invited_user_dao import delete_invitations_created_more_than_two_days_ago from app.dao.jobs_dao import dao_set_scheduled_jobs_to_pending from app.dao.jobs_dao import dao_update_job from app.dao.notifications_dao import ( is_delivery_slow_for_provider, dao_get_scheduled_notifications, set_scheduled_notification_to_processed, notifications_not_yet_sent ) from app.dao.provider_details_dao import ( get_current_provider, dao_toggle_sms_provider ) from app.dao.users_dao import delete_codes_older_created_more_than_a_day_ago from app.models import ( Job, JOB_STATUS_IN_PROGRESS, JOB_STATUS_ERROR, SMS_TYPE, EMAIL_TYPE, ) from app.notifications.process_notifications import send_notification_to_queue from app.v2.errors import JobIncompleteError @notify_celery.task(name="run-scheduled-jobs") @statsd(namespace="tasks") def run_scheduled_jobs(): try: for job in dao_set_scheduled_jobs_to_pending(): process_job.apply_async([str(job.id)], queue=QueueNames.JOBS) current_app.logger.info("Job ID {} added to process job queue".format(job.id)) except SQLAlchemyError: current_app.logger.exception("Failed to run scheduled jobs") raise @notify_celery.task(name='send-scheduled-notifications') @statsd(namespace="tasks") def send_scheduled_notifications(): try: scheduled_notifications = dao_get_scheduled_notifications() for notification in scheduled_notifications: send_notification_to_queue(notification, notification.service.research_mode) set_scheduled_notification_to_processed(notification.id) current_app.logger.info( "Sent {} scheduled notifications to the provider queue".format(len(scheduled_notifications))) except SQLAlchemyError: current_app.logger.exception("Failed to send scheduled notifications") raise @notify_celery.task(name="delete-verify-codes") @statsd(namespace="tasks") def delete_verify_codes(): try: start = datetime.utcnow() deleted = delete_codes_older_created_more_than_a_day_ago() current_app.logger.info( "Delete job started {} finished {} deleted {} verify codes".format(start, datetime.utcnow(), deleted) ) except SQLAlchemyError: current_app.logger.exception("Failed to delete verify codes") raise @notify_celery.task(name="delete-invitations") @statsd(namespace="tasks") def delete_invitations(): try: start = datetime.utcnow() deleted_invites = delete_invitations_created_more_than_two_days_ago() deleted_invites += delete_org_invitations_created_more_than_two_days_ago() current_app.logger.info( "Delete job started {} finished {} deleted {} invitations".format(start, datetime.utcnow(), deleted_invites) ) except SQLAlchemyError: current_app.logger.exception("Failed to delete invitations") raise @notify_celery.task(name='switch-current-sms-provider-on-slow-delivery') @statsd(namespace="tasks") def switch_current_sms_provider_on_slow_delivery(): """ Switch providers if at least 10% of notifications took more than four minutes to be delivered in the last ten minutes. Search from the time we last switched to the current provider. """ current_provider = get_current_provider('sms') if current_provider.updated_at > datetime.utcnow() - timedelta(minutes=10): current_app.logger.info("Slow delivery notifications provider switched less than 10 minutes ago.") return slow_delivery_notifications = is_delivery_slow_for_provider( provider=current_provider.identifier, threshold=0.2, created_at=datetime.utcnow() - timedelta(minutes=10), delivery_time=timedelta(minutes=4), ) if slow_delivery_notifications: current_app.logger.warning( 'Slow delivery notifications detected for provider {}'.format( current_provider.identifier ) ) dao_toggle_sms_provider(current_provider.identifier) @notify_celery.task(name='check-job-status') @statsd(namespace="tasks") def check_job_status(): """ every x minutes do this check select from jobs where job_status == 'in progress' and template_type in ('sms', 'email') and scheduled_at or created_at is older that 30 minutes. if any results then raise error process the rows in the csv that are missing (in another task) just do the check here. """ thirty_minutes_ago = datetime.utcnow() - timedelta(minutes=30) thirty_five_minutes_ago = datetime.utcnow() - timedelta(minutes=35) jobs_not_complete_after_30_minutes = Job.query.filter( Job.job_status == JOB_STATUS_IN_PROGRESS, and_(thirty_five_minutes_ago < Job.processing_started, Job.processing_started < thirty_minutes_ago) ).order_by(Job.processing_started).all() # temporarily mark them as ERROR so that they don't get picked up by future check_job_status tasks # if they haven't been re-processed in time. job_ids = [] for job in jobs_not_complete_after_30_minutes: job.job_status = JOB_STATUS_ERROR dao_update_job(job) job_ids.append(str(job.id)) if job_ids: notify_celery.send_task( name=TaskNames.PROCESS_INCOMPLETE_JOBS, args=(job_ids,), queue=QueueNames.JOBS ) raise JobIncompleteError("Job(s) {} have not completed.".format(job_ids)) @notify_celery.task(name='replay-created-notifications') @statsd(namespace="tasks") def replay_created_notifications(): # if the notification has not be send after 4 hours + 15 minutes, then try to resend. resend_created_notifications_older_than = (60 * 60 * 4) + (60 * 15) for notification_type in (EMAIL_TYPE, SMS_TYPE): notifications_to_resend = notifications_not_yet_sent( resend_created_notifications_older_than, notification_type ) if len(notifications_to_resend) > 0: current_app.logger.info("Sending {} {} notifications " "to the delivery queue because the notification " "status was created.".format(len(notifications_to_resend), notification_type)) for n in notifications_to_resend: send_notification_to_queue(notification=n, research_mode=n.service.research_mode)