2017-03-22 10:09:14 +00:00
|
|
|
from flask import jsonify, request
|
|
|
|
|
|
2017-05-05 15:23:06 +01:00
|
|
|
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
|
2019-11-21 15:21:18 +00:00
|
|
|
from app.v2.template.template_schemas import (
|
2021-03-10 13:55:06 +00:00
|
|
|
create_post_template_preview_response,
|
2019-11-21 15:21:18 +00:00
|
|
|
post_template_preview_request,
|
|
|
|
|
)
|
|
|
|
|
from app.v2.utils import get_valid_json
|
2017-03-22 10:09:14 +00:00
|
|
|
|
|
|
|
|
|
2017-03-22 10:54:15 +00: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.
|
2019-11-21 15:21:18 +00:00
|
|
|
_data = request.get_data(as_text=True)
|
|
|
|
|
if not _data:
|
2017-04-06 12:10:06 +01:00
|
|
|
_data = {}
|
2019-11-21 15:21:18 +00:00
|
|
|
else:
|
|
|
|
|
_data = get_valid_json()
|
2017-04-06 12:10:06 +01:00
|
|
|
|
2017-03-22 14:01:04 +00: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(
|
2017-05-05 15:23:06 +01:00
|
|
|
template_id, authenticated_service.id)
|
2017-03-22 10:09:14 +00:00
|
|
|
|
2020-04-06 14:25:43 +01:00
|
|
|
template_object = template._as_utils_template_with_personalisation(
|
|
|
|
|
data.get('personalisation')
|
|
|
|
|
)
|
2017-03-22 10:09:14 +00:00
|
|
|
|
|
|
|
|
check_placeholders(template_object)
|
|
|
|
|
|
|
|
|
|
resp = create_post_template_preview_response(template=template,
|
2017-04-11 16:37:30 +01:00
|
|
|
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:
|
|
|
|
|
message = 'Missing personalisation: {}'.format(", ".join(template_object.missing_data))
|
|
|
|
|
raise BadRequestError(message=message, fields=[{'template': message}])
|