mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-10 23:32:27 -05:00
109 lines
3.5 KiB
Python
109 lines
3.5 KiB
Python
from sqlalchemy.orm.exc import NoResultFound
|
||
|
||
from app.dao.service_email_reply_to_dao import dao_get_reply_to_by_id
|
||
from app.dao.service_sms_sender_dao import dao_get_service_sms_senders_by_id
|
||
from app.dao.services_dao import dao_fetch_service_by_id
|
||
from app.dao.templates_dao import dao_get_template_by_id_and_service_id
|
||
from app.dao.users_dao import get_user_by_id
|
||
from app.enums import KeyType, NotificationType
|
||
from app.errors import BadRequestError
|
||
from app.notifications.process_notifications import (
|
||
persist_notification,
|
||
send_notification_to_queue,
|
||
)
|
||
from app.notifications.validators import (
|
||
check_service_over_total_message_limit,
|
||
validate_and_format_recipient,
|
||
validate_template,
|
||
)
|
||
|
||
|
||
def validate_created_by(service, created_by_id):
|
||
user = get_user_by_id(created_by_id)
|
||
if service not in user.services:
|
||
message = (
|
||
'Can’t create notification - {} is not part of the "{}" service'.format(
|
||
user.name, service.name
|
||
)
|
||
)
|
||
raise BadRequestError(message=message)
|
||
|
||
|
||
# TODO: possibly unnecessary after removing letters
|
||
def create_one_off_reference(template_type):
|
||
return None
|
||
|
||
|
||
def send_one_off_notification(service_id, post_data):
|
||
service = dao_fetch_service_by_id(service_id)
|
||
template = dao_get_template_by_id_and_service_id(
|
||
template_id=post_data["template_id"], service_id=service_id
|
||
)
|
||
|
||
personalisation = post_data.get("personalisation", None)
|
||
|
||
validate_template(template.id, personalisation, service, template.template_type)
|
||
|
||
check_service_over_total_message_limit(KeyType.NORMAL, service)
|
||
|
||
validate_and_format_recipient(
|
||
send_to=post_data["to"],
|
||
key_type=KeyType.NORMAL,
|
||
service=service,
|
||
notification_type=template.template_type,
|
||
allow_guest_list_recipients=False,
|
||
)
|
||
client_reference = None
|
||
|
||
validate_created_by(service, post_data["created_by"])
|
||
|
||
sender_id = post_data.get("sender_id", None)
|
||
reply_to = get_reply_to_text(
|
||
notification_type=template.template_type,
|
||
sender_id=sender_id,
|
||
service=service,
|
||
template=template,
|
||
)
|
||
notification = persist_notification(
|
||
template_id=template.id,
|
||
template_version=template.version,
|
||
recipient=post_data["to"],
|
||
service=service,
|
||
personalisation=personalisation,
|
||
notification_type=template.template_type,
|
||
api_key_id=None,
|
||
key_type=KeyType.NORMAL,
|
||
created_by_id=post_data["created_by"],
|
||
reply_to_text=reply_to,
|
||
reference=create_one_off_reference(template.template_type),
|
||
client_reference=client_reference,
|
||
)
|
||
|
||
queue_name = None
|
||
|
||
send_notification_to_queue(
|
||
notification=notification,
|
||
queue=queue_name,
|
||
)
|
||
|
||
return {"id": str(notification.id)}
|
||
|
||
|
||
def get_reply_to_text(notification_type, sender_id, service, template):
|
||
reply_to = None
|
||
if sender_id:
|
||
try:
|
||
if notification_type == NotificationType.EMAIL:
|
||
message = "Reply to email address not found"
|
||
reply_to = dao_get_reply_to_by_id(service.id, sender_id).email_address
|
||
elif notification_type == NotificationType.SMS:
|
||
message = "SMS sender not found"
|
||
reply_to = dao_get_service_sms_senders_by_id(
|
||
service.id, sender_id
|
||
).get_reply_to_text()
|
||
except NoResultFound:
|
||
raise BadRequestError(message=message)
|
||
else:
|
||
reply_to = template.get_reply_to_text()
|
||
return reply_to
|