Files
notifications-api/app/v2/template/post_template.py

51 lines
1.5 KiB
Python
Raw Normal View History

2017-03-22 10:09:14 +00:00
from flask import jsonify, request
from app import authenticated_service
2017-03-22 10:09:14 +00:00
from app.dao import templates_dao
from app.schema_validation import validate
from app.v2.errors import BadRequestError
2017-03-22 10:54:15 +00:00
from app.v2.template import v2_template_blueprint
from app.v2.template.template_schemas import (
2021-03-10 13:55:06 +00:00
create_post_template_preview_response,
post_template_preview_request,
)
from app.v2.utils import get_valid_json
2017-03-22 10:09:14 +00:00
2023-08-29 14:54:30 -07:00
@v2_template_blueprint.route("/<template_id>/preview", methods=["POST"])
2017-03-22 10:09:14 +00:00
def post_template_preview(template_id):
2019-11-22 11:02:22 +00:00
# The payload is empty when there are no place holders in the template.
_data = request.get_data(as_text=True)
if not _data:
2017-04-06 12:10:06 +01:00
_data = {}
else:
_data = get_valid_json()
2017-04-06 12:10:06 +01:00
2023-08-29 14:54:30 -07:00
_data["id"] = template_id
2017-03-22 10:09:14 +00:00
2017-03-22 14:01:04 +00:00
data = validate(_data, post_template_preview_request)
2017-03-22 10:09:14 +00:00
template = templates_dao.dao_get_template_by_id_and_service_id(
2023-08-29 14:54:30 -07:00
template_id, authenticated_service.id
)
2017-03-22 10:09:14 +00:00
template_object = template._as_utils_template_with_personalisation(
2023-08-29 14:54:30 -07:00
data.get("personalisation")
)
2017-03-22 10:09:14 +00:00
check_placeholders(template_object)
2023-08-29 14:54:30 -07:00
resp = create_post_template_preview_response(
template=template, template_object=template_object
)
2017-03-22 10:09:14 +00:00
return jsonify(resp), 200
def check_placeholders(template_object):
if template_object.missing_data:
2023-08-29 14:54:30 -07:00
message = "Missing personalisation: {}".format(
", ".join(template_object.missing_data)
)
raise BadRequestError(message=message, fields=[{"template": message}])