don't include letters when timing out/deleting old notifications

also refactored those functions, since they were pretty gnarly and
repeated themselves a lot
This commit is contained in:
Leo Hemsted
2017-04-19 11:34:00 +01:00
parent ddda2bd158
commit b381aeefa1

View File

@@ -1,3 +1,4 @@
import functools
import pytz import pytz
from datetime import ( from datetime import (
datetime, datetime,
@@ -23,7 +24,9 @@ from app.models import (
NOTIFICATION_PENDING, NOTIFICATION_PENDING,
NOTIFICATION_TECHNICAL_FAILURE, NOTIFICATION_TECHNICAL_FAILURE,
NOTIFICATION_TEMPORARY_FAILURE, NOTIFICATION_TEMPORARY_FAILURE,
KEY_TYPE_NORMAL, KEY_TYPE_TEST NOTIFICATION_PERMANENT_FAILURE,
KEY_TYPE_NORMAL, KEY_TYPE_TEST,
LETTER_TYPE
) )
from app.dao.dao_utils import transactional from app.dao.dao_utils import transactional
@@ -137,7 +140,7 @@ def dao_create_notification(notification):
# need to populate defaulted fields before we create the notification history object # need to populate defaulted fields before we create the notification history object
notification.id = create_uuid() notification.id = create_uuid()
if not notification.status: if not notification.status:
notification.status = 'created' notification.status = NOTIFICATION_CREATED
db.session.add(notification) db.session.add(notification)
if _should_record_notification_in_history_table(notification): if _should_record_notification_in_history_table(notification):
@@ -155,9 +158,8 @@ def _should_record_notification_in_history_table(notification):
def _decide_permanent_temporary_failure(current_status, status): def _decide_permanent_temporary_failure(current_status, status):
# Firetext will send pending, then send either succes or fail. # Firetext will send pending, then send either succes or fail.
# If we go from pending to delivered we need to set failure type as temporary-failure # If we go from pending to delivered we need to set failure type as temporary-failure
if current_status == 'pending': if current_status == NOTIFICATION_PENDING and status == NOTIFICATION_PERMANENT_FAILURE:
if status == 'permanent-failure': status = NOTIFICATION_TEMPORARY_FAILURE
status = 'temporary-failure'
return status return status
@@ -173,9 +175,9 @@ def _update_notification_status(notification, status):
def update_notification_status_by_id(notification_id, status): def update_notification_status_by_id(notification_id, status):
notification = Notification.query.with_lockmode("update").filter( notification = Notification.query.with_lockmode("update").filter(
Notification.id == notification_id, Notification.id == notification_id,
or_(Notification.status == 'created', or_(Notification.status == NOTIFICATION_CREATED,
Notification.status == 'sending', Notification.status == NOTIFICATION_SENDING,
Notification.status == 'pending')).first() Notification.status == NOTIFICATION_PENDING)).first()
if not notification: if not notification:
return None return None
@@ -191,8 +193,8 @@ def update_notification_status_by_id(notification_id, status):
def update_notification_status_by_reference(reference, status): def update_notification_status_by_reference(reference, status):
notification = Notification.query.filter( notification = Notification.query.filter(
Notification.reference == reference, Notification.reference == reference,
or_(Notification.status == 'sending', or_(Notification.status == NOTIFICATION_SENDING,
Notification.status == 'pending')).first() Notification.status == NOTIFICATION_PENDING)).first()
if not notification: if not notification:
return None return None
@@ -344,10 +346,13 @@ def _filter_query(query, filter_dict=None):
@statsd(namespace="dao") @statsd(namespace="dao")
def delete_notifications_created_more_than_a_week_ago(status): def delete_notifications_created_more_than_a_week_ago(status):
seven_days_ago = date.today() - timedelta(days=7) seven_days_ago = date.today() - timedelta(days=7)
deleted = db.session.query(Notification).filter( deleted = db.session.query(Notification).filter(
func.date(Notification.created_at) < seven_days_ago, func.date(Notification.created_at) < seven_days_ago,
Notification.status == status Notification.status == status,
Notification.notification_type != LETTER_TYPE
).delete(synchronize_session='fetch') ).delete(synchronize_session='fetch')
db.session.commit() db.session.commit()
return deleted return deleted
@@ -363,32 +368,40 @@ def dao_delete_notifications_and_history_by_id(notification_id):
).delete(synchronize_session='fetch') ).delete(synchronize_session='fetch')
def dao_timeout_notifications(timeout_period_in_seconds): def _timeout_notifications(current_statuses, new_status, timeout_start, updated_at):
# update all notifications that are older that the timeout_period_in_seconds for table in [NotificationHistory, Notification]:
# with a status of created|sending|pending q = table.query.filter(
table.created_at < timeout_start,
table.status.in_(current_statuses),
table.notification_type != LETTER_TYPE
)
last_update_count = q.update({'status': new_status, 'updated_at': updated_at}, synchronize_session=False)
return last_update_count
def dao_timeout_notifications(timeout_period_in_seconds):
"""
Timeout SMS and email notifications by the following rules:
we never sent the notification to the provider for some reason
created -> technical-failure
the notification was sent to the provider but there was not a delivery receipt
sending -> temporary-failure
pending -> temporary-failure
Letter notifications are not timed out
"""
timeout_start = datetime.utcnow() - timedelta(seconds=timeout_period_in_seconds)
updated_at = datetime.utcnow()
timeout = functools.partial(_timeout_notifications, timeout_start=timeout_start, updated_at=updated_at)
# Notifications still in created status are marked with a technical-failure: # Notifications still in created status are marked with a technical-failure:
# the notification has failed to go to the provider updated = timeout([NOTIFICATION_CREATED], NOTIFICATION_TECHNICAL_FAILURE)
update_at = datetime.utcnow()
updated = db.session.query(Notification). \
filter(Notification.created_at < (datetime.utcnow() - timedelta(seconds=timeout_period_in_seconds))). \
filter(Notification.status == NOTIFICATION_CREATED). \
update({'status': NOTIFICATION_TECHNICAL_FAILURE, 'updated_at': update_at}, synchronize_session=False)
db.session.query(NotificationHistory). \
filter(NotificationHistory.created_at < (datetime.utcnow() - timedelta(seconds=timeout_period_in_seconds))). \
filter(NotificationHistory.status == NOTIFICATION_CREATED). \
update({'status': NOTIFICATION_TECHNICAL_FAILURE, 'updated_at': update_at}, synchronize_session=False)
# Notifications still in sending or pending status are marked with a temporary-failure: # Notifications still in sending or pending status are marked with a temporary-failure:
# the notification was sent to the provider but there was not a delivery receipt, try to send again. updated += timeout([NOTIFICATION_SENDING, NOTIFICATION_PENDING], NOTIFICATION_TEMPORARY_FAILURE)
updated += db.session.query(Notification). \
filter(Notification.created_at < (datetime.utcnow() - timedelta(seconds=timeout_period_in_seconds))). \
filter(Notification.status.in_([NOTIFICATION_SENDING, NOTIFICATION_PENDING])). \
update({'status': NOTIFICATION_TEMPORARY_FAILURE, 'updated_at': update_at}, synchronize_session=False)
db.session.query(NotificationHistory). \
filter(NotificationHistory.created_at < (datetime.utcnow() - timedelta(seconds=timeout_period_in_seconds))). \
filter(NotificationHistory.status.in_([NOTIFICATION_SENDING, NOTIFICATION_PENDING])). \
update({'status': NOTIFICATION_TEMPORARY_FAILURE, 'updated_at': update_at}, synchronize_session=False)
db.session.commit() db.session.commit()
return updated return updated
@@ -447,10 +460,10 @@ def dao_update_notifications_sent_to_dvla(job_id, provider):
now = datetime.utcnow() now = datetime.utcnow()
updated_count = db.session.query( updated_count = db.session.query(
Notification).filter(Notification.job_id == job_id).update( Notification).filter(Notification.job_id == job_id).update(
{'status': 'sending', "sent_by": provider, "sent_at": now}) {'status': NOTIFICATION_SENDING, "sent_by": provider, "sent_at": now})
db.session.query( db.session.query(
NotificationHistory).filter(NotificationHistory.job_id == job_id).update( NotificationHistory).filter(NotificationHistory.job_id == job_id).update(
{'status': 'sending', "sent_by": provider, "sent_at": now, "updated_at": now}) {'status': NOTIFICATION_SENDING, "sent_by": provider, "sent_at": now, "updated_at": now})
return updated_count return updated_count