2016-04-04 14:28:52 +01:00
|
|
|
|
import itertools
|
2016-05-31 14:18:35 +01:00
|
|
|
|
from string import ascii_uppercase
|
|
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
from contextlib import suppress
|
2016-05-13 21:25:59 +01:00
|
|
|
|
from zipfile import BadZipFile
|
|
|
|
|
|
from xlrd.biffh import XLRDError
|
2017-01-19 14:55:22 +00:00
|
|
|
|
from werkzeug.routing import RequestRedirect
|
2016-01-11 15:00:51 +00:00
|
|
|
|
|
|
|
|
|
|
from flask import (
|
|
|
|
|
|
request,
|
|
|
|
|
|
render_template,
|
|
|
|
|
|
redirect,
|
|
|
|
|
|
url_for,
|
|
|
|
|
|
flash,
|
2016-02-01 11:28:36 +00:00
|
|
|
|
abort,
|
2016-02-02 22:26:49 +00:00
|
|
|
|
session,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
current_app,
|
2016-01-11 15:00:51 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
2016-02-17 14:20:55 +00:00
|
|
|
|
from flask_login import login_required, current_user
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
2016-11-10 13:39:05 +00:00
|
|
|
|
from notifications_utils.columns import Columns
|
2017-05-04 09:30:55 +01:00
|
|
|
|
from notifications_utils.recipients import (
|
|
|
|
|
|
RecipientCSV,
|
|
|
|
|
|
first_column_headings,
|
|
|
|
|
|
optional_address_columns,
|
|
|
|
|
|
)
|
2015-12-10 21:15:20 +00:00
|
|
|
|
|
|
|
|
|
|
from app.main import main
|
2017-05-04 09:30:55 +01:00
|
|
|
|
from app.main.forms import (
|
|
|
|
|
|
CsvUploadForm,
|
|
|
|
|
|
ChooseTimeForm,
|
|
|
|
|
|
get_placeholder_form_instance
|
|
|
|
|
|
)
|
2016-01-14 16:00:13 +00:00
|
|
|
|
from app.main.uploader import (
|
|
|
|
|
|
s3upload,
|
|
|
|
|
|
s3download
|
|
|
|
|
|
)
|
2017-06-22 16:00:14 +01:00
|
|
|
|
from app import job_api_client, service_api_client, current_service, user_api_client, notification_api_client
|
2016-12-28 11:06:11 +00:00
|
|
|
|
from app.utils import (
|
|
|
|
|
|
user_has_permissions,
|
|
|
|
|
|
get_errors_for_csv,
|
|
|
|
|
|
Spreadsheet,
|
|
|
|
|
|
get_help_argument,
|
2017-04-10 17:25:08 +01:00
|
|
|
|
get_template
|
2016-12-28 11:06:11 +00:00
|
|
|
|
)
|
2017-05-11 12:01:51 +01:00
|
|
|
|
from app.template_previews import TemplatePreview, get_page_count_for_letter
|
2016-02-22 17:17:18 +00:00
|
|
|
|
|
2016-03-01 15:53:58 +00:00
|
|
|
|
|
|
|
|
|
|
def get_page_headings(template_type):
|
2016-04-01 10:42:23 +01:00
|
|
|
|
return {
|
|
|
|
|
|
'email': 'Email templates',
|
2016-11-08 13:12:07 +00:00
|
|
|
|
'sms': 'Text message templates',
|
|
|
|
|
|
'letter': 'Letter templates'
|
2016-04-01 10:42:23 +01:00
|
|
|
|
}[template_type]
|
2016-03-01 15:53:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-05-05 08:39:36 +01:00
|
|
|
|
def get_example_csv_fields(column_headers, use_example_as_example, submitted_fields):
|
|
|
|
|
|
if use_example_as_example:
|
|
|
|
|
|
return ["example" for header in column_headers]
|
|
|
|
|
|
elif submitted_fields:
|
|
|
|
|
|
return [submitted_fields.get(header) for header in column_headers]
|
|
|
|
|
|
else:
|
|
|
|
|
|
return list(column_headers)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_example_csv_rows(template, use_example_as_example=True, submitted_fields=False):
|
2016-11-10 13:39:05 +00:00
|
|
|
|
return {
|
|
|
|
|
|
'email': ['test@example.com'] if use_example_as_example else [current_user.email_address],
|
2017-04-26 16:19:34 +01:00
|
|
|
|
'sms': ['07700 900321'] if use_example_as_example else [current_user.mobile_number],
|
2016-11-11 09:51:20 +00:00
|
|
|
|
'letter': [
|
|
|
|
|
|
(submitted_fields or {}).get(
|
|
|
|
|
|
key, get_example_letter_address(key) if use_example_as_example else key
|
|
|
|
|
|
)
|
|
|
|
|
|
for key in first_column_headings['letter']
|
2016-11-10 13:39:05 +00:00
|
|
|
|
]
|
|
|
|
|
|
}[template.template_type] + get_example_csv_fields(template.placeholders, use_example_as_example, submitted_fields)
|
2016-04-01 14:31:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
2016-11-11 09:51:20 +00:00
|
|
|
|
def get_example_letter_address(key):
|
|
|
|
|
|
return {
|
|
|
|
|
|
'address line 1': 'A. Name',
|
|
|
|
|
|
'address line 2': '123 Example Street',
|
|
|
|
|
|
'postcode': 'XM4 5HQ'
|
|
|
|
|
|
}.get(key, '')
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-12 14:19:51 +01:00
|
|
|
|
@main.route("/services/<service_id>/send/<template_id>/csv", methods=['GET', 'POST'])
|
2016-01-11 15:00:51 +00:00
|
|
|
|
@login_required
|
2016-03-03 12:15:24 +00:00
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
2016-02-22 17:17:18 +00:00
|
|
|
|
def send_messages(service_id, template_id):
|
2016-12-08 11:50:59 +00:00
|
|
|
|
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template = service_api_client.get_service_template(service_id, template_id)['data']
|
2017-05-11 12:01:51 +01:00
|
|
|
|
|
2016-12-08 11:50:59 +00:00
|
|
|
|
template = get_template(
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template,
|
2016-12-08 11:50:59 +00:00
|
|
|
|
current_service,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
show_recipient=True,
|
2017-05-11 12:01:51 +01:00
|
|
|
|
expand_emails=True,
|
2017-04-28 16:04:52 +01:00
|
|
|
|
letter_preview_url=url_for(
|
|
|
|
|
|
'.view_letter_template_preview',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
filetype='png',
|
2017-06-22 16:00:14 +01:00
|
|
|
|
page_count=get_page_count_for_letter(db_template),
|
2017-04-28 16:04:52 +01:00
|
|
|
|
),
|
2016-03-29 15:59:53 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
2016-01-11 15:00:51 +00:00
|
|
|
|
form = CsvUploadForm()
|
2016-01-13 17:32:40 +00:00
|
|
|
|
if form.validate_on_submit():
|
2016-01-11 15:00:51 +00:00
|
|
|
|
try:
|
2016-05-15 07:47:50 +01:00
|
|
|
|
upload_id = s3upload(
|
2016-03-07 18:47:05 +00:00
|
|
|
|
service_id,
|
2016-05-15 10:47:52 +01:00
|
|
|
|
Spreadsheet.from_file(form.file.data, filename=form.file.data.filename).as_dict,
|
2016-03-07 18:47:05 +00:00
|
|
|
|
current_app.config['AWS_REGION']
|
|
|
|
|
|
)
|
|
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
"template_id": template_id,
|
|
|
|
|
|
"original_file_name": form.file.data.filename
|
|
|
|
|
|
}
|
2016-02-22 17:17:18 +00:00
|
|
|
|
return redirect(url_for('.check_messages',
|
2016-01-13 17:32:40 +00:00
|
|
|
|
service_id=service_id,
|
2016-03-29 15:59:53 +01:00
|
|
|
|
upload_id=upload_id,
|
|
|
|
|
|
template_type=template.template_type))
|
2016-05-13 21:25:59 +01:00
|
|
|
|
except (UnicodeDecodeError, BadZipFile, XLRDError):
|
|
|
|
|
|
flash('Couldn’t read {}. Try using a different file format.'.format(
|
|
|
|
|
|
form.file.data.filename
|
|
|
|
|
|
))
|
2016-01-11 15:00:51 +00:00
|
|
|
|
|
2016-11-10 13:39:05 +00:00
|
|
|
|
column_headings = first_column_headings[template.template_type] + list(template.placeholders)
|
|
|
|
|
|
|
2016-02-08 16:36:53 +00:00
|
|
|
|
return render_template(
|
2016-02-22 17:17:18 +00:00
|
|
|
|
'views/send.html',
|
2016-02-08 16:36:53 +00:00
|
|
|
|
template=template,
|
2016-11-10 13:39:05 +00:00
|
|
|
|
column_headings=list(ascii_uppercase[:len(column_headings)]),
|
|
|
|
|
|
example=[column_headings, get_example_csv_rows(template)],
|
2016-04-04 16:53:52 +01:00
|
|
|
|
form=form
|
2016-02-08 16:36:53 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-22 14:45:13 +00:00
|
|
|
|
@main.route("/services/<service_id>/send/<template_id>.csv", methods=['GET'])
|
2016-02-08 16:36:53 +00:00
|
|
|
|
@login_required
|
2016-03-30 11:30:18 +01:00
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters', 'manage_templates', any_=True)
|
2016-05-05 08:39:36 +01:00
|
|
|
|
def get_example_csv(service_id, template_id):
|
2016-12-08 11:50:59 +00:00
|
|
|
|
template = get_template(
|
|
|
|
|
|
service_api_client.get_service_template(service_id, template_id)['data'], current_service
|
|
|
|
|
|
)
|
2016-05-15 10:47:52 +01:00
|
|
|
|
return Spreadsheet.from_rows([
|
2016-11-10 13:39:05 +00:00
|
|
|
|
first_column_headings[template.template_type] + list(template.placeholders),
|
2016-05-15 10:47:52 +01:00
|
|
|
|
get_example_csv_rows(template)
|
|
|
|
|
|
]).as_csv_data, 200, {
|
|
|
|
|
|
'Content-Type': 'text/csv; charset=utf-8',
|
|
|
|
|
|
'Content-Disposition': 'inline; filename="{}.csv"'.format(template.name)
|
|
|
|
|
|
}
|
2015-12-10 21:15:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 08:55:05 +01:00
|
|
|
|
@main.route("/services/<service_id>/send/<template_id>/test", endpoint='send_test')
|
|
|
|
|
|
@main.route("/services/<service_id>/send/<template_id>/one-off", endpoint='send_one_off')
|
2016-02-12 10:55:21 +00:00
|
|
|
|
@login_required
|
2016-03-03 12:15:24 +00:00
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
2016-05-05 08:39:36 +01:00
|
|
|
|
def send_test(service_id, template_id):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
session['recipient'] = None
|
|
|
|
|
|
session['placeholders'] = {}
|
2017-05-16 17:52:19 +01:00
|
|
|
|
session['send_test_letter_page_count'] = None
|
2017-05-04 09:30:55 +01:00
|
|
|
|
return redirect(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
'main.send_test': '.send_test_step',
|
|
|
|
|
|
'main.send_one_off': '.send_one_off_step',
|
|
|
|
|
|
}[request.endpoint],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
step_index=0,
|
|
|
|
|
|
help=get_help_argument(),
|
|
|
|
|
|
))
|
|
|
|
|
|
|
2016-04-03 11:30:23 +01:00
|
|
|
|
|
2017-06-23 17:30:34 +01:00
|
|
|
|
def get_notification_check_endpoint(service_id, template):
|
|
|
|
|
|
if template.template_type == 'letter':
|
|
|
|
|
|
return make_and_upload_csv_file(service_id, template)
|
|
|
|
|
|
else:
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'main.check_notification',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template.id,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 08:55:05 +01:00
|
|
|
|
@main.route(
|
|
|
|
|
|
"/services/<service_id>/send/<template_id>/test/step-<int:step_index>",
|
|
|
|
|
|
methods=['GET', 'POST'],
|
|
|
|
|
|
endpoint='send_test_step',
|
|
|
|
|
|
)
|
|
|
|
|
|
@main.route(
|
|
|
|
|
|
"/services/<service_id>/send/<template_id>/one-off/step-<int:step_index>",
|
|
|
|
|
|
methods=['GET', 'POST'],
|
|
|
|
|
|
endpoint='send_one_off_step',
|
|
|
|
|
|
)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
|
|
|
|
|
def send_test_step(service_id, template_id, step_index):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
if {'recipient', 'placeholders'} - set(session.keys()):
|
2017-05-22 11:49:15 +01:00
|
|
|
|
return redirect(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
'main.send_test_step': '.send_test',
|
|
|
|
|
|
'main.send_one_off_step': '.send_one_off',
|
|
|
|
|
|
}[request.endpoint],
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
))
|
|
|
|
|
|
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template = service_api_client.get_service_template(service_id, template_id)['data']
|
2017-05-11 12:01:51 +01:00
|
|
|
|
|
2017-05-16 17:52:19 +01:00
|
|
|
|
if not session.get('send_test_letter_page_count'):
|
2017-06-22 16:00:14 +01:00
|
|
|
|
session['send_test_letter_page_count'] = get_page_count_for_letter(db_template)
|
2017-05-16 17:52:19 +01:00
|
|
|
|
|
2016-12-08 11:50:59 +00:00
|
|
|
|
template = get_template(
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template,
|
2016-12-08 11:50:59 +00:00
|
|
|
|
current_service,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
show_recipient=True,
|
2017-05-11 12:01:51 +01:00
|
|
|
|
expand_emails=True,
|
2017-04-28 16:04:52 +01:00
|
|
|
|
letter_preview_url=url_for(
|
2017-05-04 09:30:55 +01:00
|
|
|
|
'.send_test_preview',
|
2017-04-28 16:04:52 +01:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
filetype='png',
|
|
|
|
|
|
),
|
2017-05-16 17:52:19 +01:00
|
|
|
|
page_count=session['send_test_letter_page_count']
|
2016-05-05 08:39:36 +01:00
|
|
|
|
)
|
2016-03-29 15:59:53 +01:00
|
|
|
|
|
2017-05-25 09:18:26 +01:00
|
|
|
|
placeholders = fields_to_fill_in(
|
|
|
|
|
|
template,
|
|
|
|
|
|
prefill_current_user=(request.endpoint == 'main.send_test_step'),
|
|
|
|
|
|
)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-05-22 11:49:15 +01:00
|
|
|
|
try:
|
|
|
|
|
|
current_placeholder = placeholders[step_index]
|
|
|
|
|
|
except IndexError:
|
2017-05-25 09:18:26 +01:00
|
|
|
|
if all_placeholders_in_session(placeholders):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
return get_notification_check_endpoint(service_id, template)
|
2017-05-22 11:49:15 +01:00
|
|
|
|
return redirect(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
'main.send_test_step': '.send_test',
|
|
|
|
|
|
'main.send_one_off_step': '.send_one_off',
|
|
|
|
|
|
}[request.endpoint],
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
))
|
2017-06-22 16:00:14 +01:00
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
optional_placeholder = (current_placeholder in optional_address_columns)
|
|
|
|
|
|
form = get_placeholder_form_instance(
|
|
|
|
|
|
current_placeholder,
|
2017-06-23 17:30:34 +01:00
|
|
|
|
dict_to_populate_from=get_normalised_placeholders_from_session(),
|
2017-05-04 09:30:55 +01:00
|
|
|
|
optional_placeholder=optional_placeholder,
|
2017-06-23 13:35:08 +01:00
|
|
|
|
allow_international_phone_numbers='international_sms' in current_service['permissions'],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2017-06-26 10:58:43 +01:00
|
|
|
|
# if it's the first input (phone/email), we store against `recipient` as well, for easier extraction.
|
|
|
|
|
|
# Only if it's not a letter.
|
|
|
|
|
|
# And only if we're not on the test route, since that will already have the user's own number set
|
|
|
|
|
|
if (
|
|
|
|
|
|
step_index == 0 and
|
|
|
|
|
|
template.template_type != 'letter' and
|
|
|
|
|
|
request.endpoint != 'main.send_test_step'
|
|
|
|
|
|
):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
session['recipient'] = form.placeholder_value.data
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-06-23 17:30:34 +01:00
|
|
|
|
session['placeholders'][current_placeholder] = form.placeholder_value.data
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-05-25 09:18:26 +01:00
|
|
|
|
if all_placeholders_in_session(placeholders):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
return get_notification_check_endpoint(service_id, template)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2016-05-15 10:47:52 +01:00
|
|
|
|
return redirect(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
request.endpoint,
|
2016-05-15 10:47:52 +01:00
|
|
|
|
service_id=service_id,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
step_index=step_index + 1,
|
|
|
|
|
|
help=get_help_argument(),
|
2016-05-15 10:47:52 +01:00
|
|
|
|
))
|
2016-02-12 10:55:21 +00:00
|
|
|
|
|
2017-06-22 16:00:14 +01:00
|
|
|
|
back_link = get_back_link(service_id, template_id, step_index)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
template.values = get_receipient_and_placeholders_from_session(template.template_type)
|
2017-05-16 17:17:11 +01:00
|
|
|
|
template.values[current_placeholder] = None
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-05-25 13:31:51 +01:00
|
|
|
|
if (
|
|
|
|
|
|
request.endpoint == 'main.send_one_off_step' and
|
|
|
|
|
|
step_index == 0 and
|
|
|
|
|
|
template.template_type != 'letter'
|
|
|
|
|
|
):
|
|
|
|
|
|
skip_link = (
|
|
|
|
|
|
'Use my {}'.format(first_column_headings[template.template_type][0]),
|
|
|
|
|
|
url_for('.send_test', service_id=service_id, template_id=template.id),
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
skip_link = None
|
|
|
|
|
|
|
2016-05-05 08:39:36 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/send-test.html',
|
2017-05-25 13:31:51 +01:00
|
|
|
|
page_title=get_send_test_page_title(template.template_type, get_help_argument()),
|
2016-05-05 08:39:36 +01:00
|
|
|
|
template=template,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
form=form,
|
2017-05-25 13:31:51 +01:00
|
|
|
|
skip_link=skip_link,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
optional_placeholder=optional_placeholder,
|
|
|
|
|
|
back_link=back_link,
|
2017-06-01 13:29:30 +01:00
|
|
|
|
help=get_help_argument(),
|
2016-05-05 08:39:36 +01:00
|
|
|
|
)
|
2016-02-12 10:55:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
@main.route("/services/<service_id>/send/<template_id>/test.<filetype>", methods=['GET'])
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
|
|
|
|
|
def send_test_preview(service_id, template_id, filetype):
|
|
|
|
|
|
|
|
|
|
|
|
if filetype not in ('pdf', 'png'):
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template = service_api_client.get_service_template(service_id, template_id)['data']
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
template = get_template(
|
2017-06-22 16:00:14 +01:00
|
|
|
|
db_template,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
current_service,
|
|
|
|
|
|
letter_preview_url=url_for(
|
|
|
|
|
|
'.send_test_preview',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
filetype='png',
|
|
|
|
|
|
),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2017-06-23 17:30:34 +01:00
|
|
|
|
template.values = get_normalised_placeholders_from_session()
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
return TemplatePreview.from_utils_template(template, filetype, page=request.args.get('page'))
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-12-20 11:56:22 +00:00
|
|
|
|
def _check_messages(service_id, template_type, upload_id, letters_as_pdf=False):
|
2016-06-17 11:54:01 +01:00
|
|
|
|
|
2016-03-29 15:59:53 +01:00
|
|
|
|
if not session.get('upload_data'):
|
2017-01-19 14:55:22 +00:00
|
|
|
|
# if we just return a `redirect` (302) object here, we'll get errors when we try and unpack in the
|
|
|
|
|
|
# check_messages route - so raise a werkzeug.routing redirect to ensure that doesn't happen.
|
|
|
|
|
|
|
|
|
|
|
|
# NOTE: this is a 301 MOVED PERMANENTLY (httpstatus.es/301), so the browser will cache this redirect, and it'll
|
|
|
|
|
|
# *always* happen for that browser. _check_messages is only used by endpoints that contain `upload_id`, which
|
|
|
|
|
|
# is a one-time-use id (that ties to a given file in S3 that is already deleted if it's not in the session)
|
2017-01-19 18:15:33 +00:00
|
|
|
|
raise RequestRedirect(get_check_messages_back_url(service_id, template_type))
|
2016-02-22 17:17:18 +00:00
|
|
|
|
|
2016-04-04 14:28:52 +01:00
|
|
|
|
users = user_api_client.get_users_for_service(service_id=service_id)
|
2016-06-17 11:54:01 +01:00
|
|
|
|
|
2016-07-25 14:16:34 +01:00
|
|
|
|
statistics = service_api_client.get_detailed_service_for_today(service_id)['data']['statistics']
|
|
|
|
|
|
remaining_messages = (current_service['message_limit'] - sum(stat['requested'] for stat in statistics.values()))
|
2016-04-04 14:28:52 +01:00
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
contents = s3download(service_id, upload_id)
|
2016-01-14 16:00:13 +00:00
|
|
|
|
|
2016-12-08 11:50:59 +00:00
|
|
|
|
template = get_template(
|
2016-08-23 12:00:26 +01:00
|
|
|
|
service_api_client.get_service_template(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
session['upload_data'].get('template_id')
|
2016-12-08 11:50:59 +00:00
|
|
|
|
)['data'],
|
|
|
|
|
|
current_service,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
show_recipient=True,
|
|
|
|
|
|
letter_preview_url=url_for(
|
2017-04-28 16:04:52 +01:00
|
|
|
|
'.check_messages_preview',
|
2016-12-20 14:38:34 +00:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_type=template_type,
|
2017-04-28 16:04:52 +01:00
|
|
|
|
upload_id=upload_id,
|
|
|
|
|
|
filetype='png',
|
2016-12-20 14:38:34 +00:00
|
|
|
|
) if not letters_as_pdf else None
|
2016-03-07 18:47:05 +00:00
|
|
|
|
)
|
|
|
|
|
|
recipients = RecipientCSV(
|
|
|
|
|
|
contents,
|
|
|
|
|
|
template_type=template.template_type,
|
|
|
|
|
|
placeholders=template.placeholders,
|
2016-04-07 14:30:51 +01:00
|
|
|
|
max_initial_rows_shown=50,
|
|
|
|
|
|
max_errors_shown=50,
|
2016-04-04 14:28:52 +01:00
|
|
|
|
whitelist=itertools.chain.from_iterable(
|
2016-11-08 13:12:07 +00:00
|
|
|
|
[user.name, user.mobile_number, user.email_address] for user in users
|
2016-07-25 14:16:34 +01:00
|
|
|
|
) if current_service['restricted'] else None,
|
2017-04-26 16:19:49 +01:00
|
|
|
|
remaining_messages=remaining_messages,
|
2017-06-23 13:35:08 +01:00
|
|
|
|
international_sms='international_sms' in current_service['permissions'],
|
2016-02-26 10:54:06 +00:00
|
|
|
|
)
|
2016-03-07 18:47:05 +00:00
|
|
|
|
|
2016-07-01 07:04:55 +01:00
|
|
|
|
if request.args.get('from_test'):
|
2016-06-24 10:15:20 +01:00
|
|
|
|
extra_args = {'help': 1} if request.args.get('help', '0') != '0' else {}
|
2017-04-07 09:18:00 +01:00
|
|
|
|
if len(template.placeholders) or template.template_type == 'letter':
|
2016-07-01 07:04:55 +01:00
|
|
|
|
back_link = url_for(
|
|
|
|
|
|
'.send_test', service_id=service_id, template_id=template.id, **extra_args
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
back_link = url_for(
|
2017-04-07 09:18:00 +01:00
|
|
|
|
'.view_template', service_id=service_id, template_id=template.id, **extra_args
|
2016-07-01 07:04:55 +01:00
|
|
|
|
)
|
2016-08-30 09:27:24 +01:00
|
|
|
|
choose_time_form = None
|
2016-05-05 08:39:36 +01:00
|
|
|
|
else:
|
|
|
|
|
|
back_link = url_for('.send_messages', service_id=service_id, template_id=template.id)
|
2016-08-30 09:27:24 +01:00
|
|
|
|
choose_time_form = ChooseTimeForm()
|
2016-05-05 08:39:36 +01:00
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
with suppress(StopIteration):
|
2017-02-27 14:46:01 +00:00
|
|
|
|
first_recipient = None
|
2016-03-07 18:47:05 +00:00
|
|
|
|
template.values = next(recipients.rows)
|
2016-11-10 13:39:05 +00:00
|
|
|
|
first_recipient = template.values.get(
|
|
|
|
|
|
Columns.make_key(recipients.recipient_column_headers[0]),
|
|
|
|
|
|
''
|
|
|
|
|
|
)
|
2016-03-07 18:47:05 +00:00
|
|
|
|
|
|
|
|
|
|
session['upload_data']['notification_count'] = len(list(recipients.rows))
|
|
|
|
|
|
session['upload_data']['valid'] = not recipients.has_errors
|
2016-12-20 11:56:22 +00:00
|
|
|
|
return dict(
|
2016-03-07 18:47:05 +00:00
|
|
|
|
recipients=recipients,
|
2016-05-05 08:38:55 +01:00
|
|
|
|
first_recipient=first_recipient,
|
2016-03-07 18:47:05 +00:00
|
|
|
|
template=template,
|
2016-06-03 13:52:15 +01:00
|
|
|
|
errors=recipients.has_errors,
|
|
|
|
|
|
row_errors=get_errors_for_csv(recipients, template.template_type),
|
2016-03-07 18:47:05 +00:00
|
|
|
|
count_of_recipients=session['upload_data']['notification_count'],
|
2016-03-10 20:03:53 +00:00
|
|
|
|
count_of_displayed_recipients=(
|
|
|
|
|
|
len(list(recipients.initial_annotated_rows_with_errors))
|
2016-06-03 14:38:10 +01:00
|
|
|
|
if any(recipients.rows_with_errors) and not recipients.missing_column_headers else
|
2016-03-10 20:03:53 +00:00
|
|
|
|
len(list(recipients.initial_annotated_rows))
|
|
|
|
|
|
),
|
2016-03-07 18:47:05 +00:00
|
|
|
|
original_file_name=session['upload_data'].get('original_file_name'),
|
2016-03-29 15:59:53 +01:00
|
|
|
|
upload_id=upload_id,
|
2016-04-22 09:36:42 +01:00
|
|
|
|
form=CsvUploadForm(),
|
2016-07-25 14:16:34 +01:00
|
|
|
|
remaining_messages=remaining_messages,
|
2016-08-30 09:27:24 +01:00
|
|
|
|
choose_time_form=choose_time_form,
|
2016-07-05 11:39:07 +01:00
|
|
|
|
back_link=back_link,
|
|
|
|
|
|
help=get_help_argument()
|
2016-03-07 18:47:05 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-12-20 11:56:22 +00:00
|
|
|
|
@main.route("/services/<service_id>/<template_type>/check/<upload_id>", methods=['GET'])
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
|
|
|
|
|
def check_messages(service_id, template_type, upload_id):
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/check.html',
|
|
|
|
|
|
**_check_messages(service_id, template_type, upload_id)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-10 17:25:08 +01:00
|
|
|
|
@main.route("/services/<service_id>/<template_type>/check/<upload_id>.<filetype>", methods=['GET'])
|
2016-12-20 14:38:34 +00:00
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
2017-04-10 17:25:08 +01:00
|
|
|
|
def check_messages_preview(service_id, template_type, upload_id, filetype):
|
2017-04-12 12:12:11 +01:00
|
|
|
|
if filetype not in ('pdf', 'png'):
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
2016-12-20 14:38:34 +00:00
|
|
|
|
template = _check_messages(
|
|
|
|
|
|
service_id, template_type, upload_id, letters_as_pdf=True
|
|
|
|
|
|
)['template']
|
2017-04-10 17:25:08 +01:00
|
|
|
|
return TemplatePreview.from_utils_template(template, filetype)
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
2017-04-10 18:12:00 +01:00
|
|
|
|
|
2016-04-05 08:55:43 +01:00
|
|
|
|
@main.route("/services/<service_id>/<template_type>/check/<upload_id>", methods=['POST'])
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
|
|
|
|
|
def recheck_messages(service_id, template_type, upload_id):
|
|
|
|
|
|
|
|
|
|
|
|
if not session.get('upload_data'):
|
Merge email, text message + letter templates pages
Right now we have separate pages for email and text message templates.
In the future we will also have a separate page for letter templates.
This commit changes Notify to only have one page for all templates.
What is the problem?
---
The left-hand navigation is getting quite crowded, at 8 items for a
service that can send letters. Research suggests that the number of
objects an average human can hold in working memory is 7 ± 2 [1]. So
we’re at the limit of how many items the navigation should have.
In the future we will need to search/sort/filter templates by attributes
other than type, for example:
- show me the ‘confirmation’ templates
- show me the most recently used templates
- show me all templates containing the placeholder `((ref_no))`
These are hypothetical for now, but these needs (or others) may become
real in the future. At this point pre-filtering the list of templates
by type would restrict what searches a user could do. So by making this
change now we’re in a better position to iterate the design in the
future.
What’s the change?
---
This commit replaces the ‘Email templates’, ‘Text message templates’ and
‘Letter templates’ pages with one page called ‘Templates’.
This new templates page shows all the templates for the service, sorted
by most recently created first (as before).
To add a new template there is a new page with a form asking you what
kind of template you want to create. This is necessary because in the
past we knew what kind of template you wanted to create based on the
kind you were looking at.
What’s the impact of this change on new users?
---
This change alters the onboarding process slightly. We still want to
take people through the empty templates page from the call-to-action on
the dashboard because it helps them understand that to send a message
using Notify you need a template. But because we don’t have separate
pages for emails/text messages we will have to send users through the
extra step of choosing what kind of template to create. This is a bit
clunkier on first use but:
- it still gets the point across
- it takes them through the actual flow they will be using to create new
templates in the future (ie they’re learning how to use Notify, not
just being taken through a special onboarding route)
I’m not too worried about this change in terms of the experience for new
users. Furthermore, by making it now we get to validate whether it’s
causing any problems in the lab research booked for next week.
What’s the impact of this change on current services?
---
Looking at the top 15 services by number of templates[2], most are using
either text messages or emails. So this change would not have a
significant impact on these services because the page will not get any
longer. In other words we wouldn’t be making it worse for them.
Those services who do use both are not using as many templates. The
worst-case scenario is SSCS, who have 16 templates, evenly split between
email and text messages. So they would go from having 8 templates per
page to 16, which is still less than half the number that HMPO or
Digital Marketplace are managing.
References
---
1. https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two
2. Template usage by service
Service name | Template count | Template types
---------------------------------------|----------------|---------------
Her Majesty's Passport Office | 40 | sms
Digital Marketplace | 40 | email
GovWifi-Staging | 19 | sms
GovWifi | 18 | sms
Digital Apprenticeship Service | 16 | email
SSCS | 16 | both
Crown Commercial Service MI Collection | 15 | email
Help with Prison Visits | 12 | both
Digital Future | 12 | email
Export Licensing Service | 11 | email
Civil Money Claims | 9 | both
DVLA Drivers Medical Service | 9 | sms
GOV.UK Notify | 8 | both
Manage your benefit overpayments | 8 | both
Tax Renewals | 8 | both
2017-02-28 12:16:35 +00:00
|
|
|
|
return redirect(url_for('main.choose_template', service_id=service_id))
|
2016-04-05 08:55:43 +01:00
|
|
|
|
|
|
|
|
|
|
return send_messages(service_id, session['upload_data'].get('template_id'))
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-29 15:59:53 +01:00
|
|
|
|
@main.route("/services/<service_id>/start-job/<upload_id>", methods=['POST'])
|
2016-03-07 18:47:05 +00:00
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('send_texts', 'send_emails', 'send_letters')
|
|
|
|
|
|
def start_job(service_id, upload_id):
|
|
|
|
|
|
upload_data = session['upload_data']
|
|
|
|
|
|
|
2016-03-08 17:50:18 +00:00
|
|
|
|
if request.files or not upload_data.get('valid'):
|
2016-03-07 18:47:05 +00:00
|
|
|
|
# The csv was invalid, validate the csv again
|
|
|
|
|
|
return send_messages(service_id, upload_data.get('template_id'))
|
|
|
|
|
|
|
|
|
|
|
|
session.pop('upload_data')
|
|
|
|
|
|
|
2016-03-08 17:50:18 +00:00
|
|
|
|
job_api_client.create_job(
|
|
|
|
|
|
upload_id,
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
upload_data.get('template_id'),
|
|
|
|
|
|
upload_data.get('original_file_name'),
|
2016-08-07 09:17:49 +01:00
|
|
|
|
upload_data.get('notification_count'),
|
|
|
|
|
|
scheduled_for=request.form.get('scheduled_for', '')
|
2016-03-08 17:50:18 +00:00
|
|
|
|
)
|
2016-03-07 18:47:05 +00:00
|
|
|
|
|
|
|
|
|
|
return redirect(
|
2016-05-26 09:57:16 +01:00
|
|
|
|
url_for('main.view_job', job_id=upload_id, service_id=service_id, help=request.form.get('help'))
|
2016-02-17 15:49:07 +00:00
|
|
|
|
)
|
2016-07-01 10:49:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<service_id>/end-tour/<example_template_id>")
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('manage_templates')
|
|
|
|
|
|
def go_to_dashboard_after_tour(service_id, example_template_id):
|
|
|
|
|
|
|
|
|
|
|
|
service_api_client.delete_service_template(service_id, example_template_id)
|
|
|
|
|
|
|
|
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for('main.service_dashboard', service_id=service_id)
|
|
|
|
|
|
)
|
2017-01-19 18:15:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_check_messages_back_url(service_id, template_type):
|
|
|
|
|
|
if get_help_argument():
|
|
|
|
|
|
# if the user is on the introductory tour, then they should be redirected back to the beginning of the tour -
|
|
|
|
|
|
# but to do that we need to find the template_id of the example template. That template *should* be the only
|
|
|
|
|
|
# template for that service, but it's possible they've opened another tab and deleted it for example. In that
|
|
|
|
|
|
# case we should just redirect back to the main page as they clearly know what they're doing.
|
|
|
|
|
|
templates = service_api_client.get_service_templates(service_id)['data']
|
|
|
|
|
|
if len(templates) == 1:
|
|
|
|
|
|
return url_for('.send_test', service_id=service_id, template_id=templates[0]['id'], help=1)
|
|
|
|
|
|
|
Merge email, text message + letter templates pages
Right now we have separate pages for email and text message templates.
In the future we will also have a separate page for letter templates.
This commit changes Notify to only have one page for all templates.
What is the problem?
---
The left-hand navigation is getting quite crowded, at 8 items for a
service that can send letters. Research suggests that the number of
objects an average human can hold in working memory is 7 ± 2 [1]. So
we’re at the limit of how many items the navigation should have.
In the future we will need to search/sort/filter templates by attributes
other than type, for example:
- show me the ‘confirmation’ templates
- show me the most recently used templates
- show me all templates containing the placeholder `((ref_no))`
These are hypothetical for now, but these needs (or others) may become
real in the future. At this point pre-filtering the list of templates
by type would restrict what searches a user could do. So by making this
change now we’re in a better position to iterate the design in the
future.
What’s the change?
---
This commit replaces the ‘Email templates’, ‘Text message templates’ and
‘Letter templates’ pages with one page called ‘Templates’.
This new templates page shows all the templates for the service, sorted
by most recently created first (as before).
To add a new template there is a new page with a form asking you what
kind of template you want to create. This is necessary because in the
past we knew what kind of template you wanted to create based on the
kind you were looking at.
What’s the impact of this change on new users?
---
This change alters the onboarding process slightly. We still want to
take people through the empty templates page from the call-to-action on
the dashboard because it helps them understand that to send a message
using Notify you need a template. But because we don’t have separate
pages for emails/text messages we will have to send users through the
extra step of choosing what kind of template to create. This is a bit
clunkier on first use but:
- it still gets the point across
- it takes them through the actual flow they will be using to create new
templates in the future (ie they’re learning how to use Notify, not
just being taken through a special onboarding route)
I’m not too worried about this change in terms of the experience for new
users. Furthermore, by making it now we get to validate whether it’s
causing any problems in the lab research booked for next week.
What’s the impact of this change on current services?
---
Looking at the top 15 services by number of templates[2], most are using
either text messages or emails. So this change would not have a
significant impact on these services because the page will not get any
longer. In other words we wouldn’t be making it worse for them.
Those services who do use both are not using as many templates. The
worst-case scenario is SSCS, who have 16 templates, evenly split between
email and text messages. So they would go from having 8 templates per
page to 16, which is still less than half the number that HMPO or
Digital Marketplace are managing.
References
---
1. https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two
2. Template usage by service
Service name | Template count | Template types
---------------------------------------|----------------|---------------
Her Majesty's Passport Office | 40 | sms
Digital Marketplace | 40 | email
GovWifi-Staging | 19 | sms
GovWifi | 18 | sms
Digital Apprenticeship Service | 16 | email
SSCS | 16 | both
Crown Commercial Service MI Collection | 15 | email
Help with Prison Visits | 12 | both
Digital Future | 12 | email
Export Licensing Service | 11 | email
Civil Money Claims | 9 | both
DVLA Drivers Medical Service | 9 | sms
GOV.UK Notify | 8 | both
Manage your benefit overpayments | 8 | both
Tax Renewals | 8 | both
2017-02-28 12:16:35 +00:00
|
|
|
|
return url_for('main.choose_template', service_id=service_id)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 09:18:26 +01:00
|
|
|
|
def fields_to_fill_in(template, prefill_current_user=False):
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
recipient_columns = first_column_headings[template.template_type]
|
|
|
|
|
|
|
2017-05-25 09:18:26 +01:00
|
|
|
|
if 'letter' == template.template_type or not prefill_current_user:
|
2017-05-04 09:30:55 +01:00
|
|
|
|
return recipient_columns + list(template.placeholders)
|
|
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['recipient'] = current_user.mobile_number if template.template_type == 'sms' else current_user.email_address
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
return list(template.placeholders)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-23 17:30:34 +01:00
|
|
|
|
def get_normalised_placeholders_from_session():
|
2017-05-04 09:30:55 +01:00
|
|
|
|
return {
|
|
|
|
|
|
key: ''.join(value or [])
|
2017-06-23 17:30:34 +01:00
|
|
|
|
for key, value in session.get('placeholders', {}).items()
|
2017-05-04 09:30:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
def get_receipient_and_placeholders_from_session(template_type):
|
|
|
|
|
|
placeholders = get_normalised_placeholders_from_session()
|
|
|
|
|
|
|
|
|
|
|
|
if template_type == 'sms':
|
|
|
|
|
|
placeholders['phone_number'] = session['recipient']
|
|
|
|
|
|
else:
|
|
|
|
|
|
placeholders['email_address'] = session['recipient']
|
|
|
|
|
|
|
|
|
|
|
|
return placeholders
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
def make_and_upload_csv_file(service_id, template):
|
|
|
|
|
|
upload_id = s3upload(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
Spreadsheet.from_dict(
|
2017-06-23 17:30:34 +01:00
|
|
|
|
session['placeholders'],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
filename=current_app.config['TEST_MESSAGE_FILENAME']
|
|
|
|
|
|
).as_dict,
|
|
|
|
|
|
current_app.config['AWS_REGION'],
|
|
|
|
|
|
)
|
|
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
"template_id": template.id,
|
|
|
|
|
|
"original_file_name": current_app.config['TEST_MESSAGE_FILENAME']
|
|
|
|
|
|
}
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.check_messages',
|
|
|
|
|
|
upload_id=upload_id,
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_type=template.template_type,
|
|
|
|
|
|
from_test=True,
|
|
|
|
|
|
help=2 if get_help_argument() else 0
|
|
|
|
|
|
))
|
2017-05-25 09:18:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def all_placeholders_in_session(placeholders):
|
|
|
|
|
|
return all(
|
2017-06-23 17:30:34 +01:00
|
|
|
|
get_normalised_placeholders_from_session().get(placeholder, False) not in (False, None)
|
2017-05-25 09:18:26 +01:00
|
|
|
|
for placeholder in placeholders
|
|
|
|
|
|
)
|
2017-05-25 13:31:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 13:31:51 +01:00
|
|
|
|
def get_send_test_page_title(template_type, help_argument):
|
|
|
|
|
|
if help_argument:
|
2017-05-25 13:31:23 +01:00
|
|
|
|
return 'Example text message'
|
|
|
|
|
|
if template_type == 'letter':
|
|
|
|
|
|
return 'Print a test letter'
|
2017-06-01 13:03:22 +01:00
|
|
|
|
return 'Send to one recipient'
|
2017-06-22 16:00:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_back_link(service_id, template_id, step_index):
|
|
|
|
|
|
if get_help_argument():
|
|
|
|
|
|
return None
|
|
|
|
|
|
elif step_index == 0:
|
|
|
|
|
|
return url_for(
|
|
|
|
|
|
'.view_template',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
return url_for(
|
|
|
|
|
|
request.endpoint,
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
step_index=step_index - 1,
|
|
|
|
|
|
)
|
2017-06-23 15:02:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<service_id>/template/<template_id>/notification/check", methods=['GET'])
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('manage_templates')
|
|
|
|
|
|
def check_notification(service_id, template_id):
|
|
|
|
|
|
# go back to start of process
|
|
|
|
|
|
back_link = get_back_link(service_id, template_id, 0)
|
|
|
|
|
|
|
2017-06-26 10:58:43 +01:00
|
|
|
|
if {'recipient', 'placeholders'} - set(session.keys()) and back_link:
|
|
|
|
|
|
return redirect(back_link)
|
|
|
|
|
|
|
2017-06-23 15:02:20 +01:00
|
|
|
|
db_template = service_api_client.get_service_template(service_id, template_id)['data']
|
2017-06-23 17:30:34 +01:00
|
|
|
|
|
2017-06-23 15:02:20 +01:00
|
|
|
|
template = get_template(
|
|
|
|
|
|
db_template,
|
|
|
|
|
|
current_service,
|
2017-06-26 10:58:43 +01:00
|
|
|
|
show_recipient=True
|
2017-06-23 15:02:20 +01:00
|
|
|
|
)
|
2017-06-26 14:56:14 +01:00
|
|
|
|
template.values = get_receipient_and_placeholders_from_session(template.template_type)
|
2017-06-23 15:02:20 +01:00
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/notifications/check.html',
|
|
|
|
|
|
template=template,
|
|
|
|
|
|
back_link=back_link,
|
|
|
|
|
|
help=get_help_argument(),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<service_id>/template/<template_id>/notification/check", methods=['POST'])
|
|
|
|
|
|
@login_required
|
|
|
|
|
|
@user_has_permissions('manage_templates')
|
|
|
|
|
|
def send_notification(service_id, template_id):
|
2017-06-23 17:30:34 +01:00
|
|
|
|
if {'recipient', 'placeholders'} - set(session.keys()):
|
2017-06-23 15:02:20 +01:00
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.send_one_off',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
noti = notification_api_client.send_notification(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
template_id=template_id,
|
2017-06-23 17:30:34 +01:00
|
|
|
|
recipient=session['recipient'],
|
|
|
|
|
|
personalisation=session['placeholders']
|
2017-06-23 15:02:20 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
2017-06-23 17:30:34 +01:00
|
|
|
|
session.pop('placeholders')
|
|
|
|
|
|
session.pop('recipient')
|
2017-06-23 15:02:20 +01:00
|
|
|
|
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.view_notification',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
notification_id=noti['id']
|
|
|
|
|
|
))
|