2019-02-18 16:56:43 +00:00
|
|
|
|
from collections import OrderedDict
|
2019-05-16 17:05:55 +01:00
|
|
|
|
from datetime import datetime
|
2018-08-30 10:46:13 +01:00
|
|
|
|
|
2016-01-18 17:35:28 +00:00
|
|
|
|
from flask import (
|
2018-02-20 11:22:17 +00:00
|
|
|
|
abort,
|
2018-03-02 10:48:59 +00:00
|
|
|
|
current_app,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
flash,
|
2019-05-14 17:53:00 +01:00
|
|
|
|
jsonify,
|
2016-03-09 14:30:50 +00:00
|
|
|
|
redirect,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
render_template,
|
2016-03-09 14:30:50 +00:00
|
|
|
|
request,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
url_for,
|
2016-03-09 14:30:50 +00:00
|
|
|
|
)
|
2019-07-01 15:22:08 +01:00
|
|
|
|
from flask_login import current_user
|
2016-04-15 11:04:35 +01:00
|
|
|
|
from notifications_python_client.errors import HTTPError
|
2021-09-16 11:17:45 +01:00
|
|
|
|
from notifications_utils.clients.zendesk.zendesk_client import (
|
|
|
|
|
|
NotifySupportTicket,
|
|
|
|
|
|
)
|
2020-01-21 12:23:30 +00:00
|
|
|
|
from notifications_utils.timezones import utc_string_to_aware_gmt_datetime
|
2016-03-09 14:30:50 +00:00
|
|
|
|
|
2018-02-20 11:22:17 +00:00
|
|
|
|
from app import (
|
|
|
|
|
|
billing_api_client,
|
|
|
|
|
|
current_service,
|
|
|
|
|
|
email_branding_client,
|
|
|
|
|
|
inbound_number_client,
|
2019-01-23 12:27:14 +00:00
|
|
|
|
letter_branding_client,
|
2019-05-09 17:55:10 +01:00
|
|
|
|
notification_api_client,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
organisations_client,
|
|
|
|
|
|
service_api_client,
|
|
|
|
|
|
)
|
2021-07-08 15:20:24 +01:00
|
|
|
|
from app.event_handlers import (
|
2021-07-08 15:30:31 +01:00
|
|
|
|
create_archive_service_event,
|
2021-07-08 15:20:24 +01:00
|
|
|
|
create_broadcast_account_type_change_event,
|
2021-07-12 16:00:16 +01:00
|
|
|
|
create_resume_service_event,
|
2021-07-08 15:20:24 +01:00
|
|
|
|
create_suspend_service_event,
|
|
|
|
|
|
)
|
2019-02-14 14:25:31 +00:00
|
|
|
|
from app.extensions import zendesk_client
|
2021-01-06 12:12:01 +00:00
|
|
|
|
from app.formatters import email_safe
|
2016-01-07 12:29:56 +00:00
|
|
|
|
from app.main import main
|
2016-05-16 13:09:58 +01:00
|
|
|
|
from app.main.forms import (
|
2022-03-15 10:50:18 +00:00
|
|
|
|
AdminBillingDetailsForm,
|
|
|
|
|
|
AdminNotesForm,
|
2022-03-03 11:40:03 +00:00
|
|
|
|
AdminPreviewBrandingForm,
|
2022-03-15 10:50:18 +00:00
|
|
|
|
AdminServiceAddDataRetentionForm,
|
|
|
|
|
|
AdminServiceEditDataRetentionForm,
|
|
|
|
|
|
AdminServiceInboundNumberForm,
|
|
|
|
|
|
AdminServiceMessageLimitForm,
|
|
|
|
|
|
AdminServiceRateLimitForm,
|
|
|
|
|
|
AdminServiceSMSAllowanceForm,
|
2022-03-03 11:40:03 +00:00
|
|
|
|
AdminSetEmailBrandingForm,
|
|
|
|
|
|
AdminSetLetterBrandingForm,
|
2022-03-15 10:50:18 +00:00
|
|
|
|
AdminSetOrganisationForm,
|
2022-03-03 12:05:44 +00:00
|
|
|
|
ChooseEmailBrandingForm,
|
|
|
|
|
|
ChooseLetterBrandingForm,
|
2019-02-15 11:03:19 +00:00
|
|
|
|
EstimateUsageForm,
|
2017-10-04 11:49:32 +01:00
|
|
|
|
RenameServiceForm,
|
2019-02-06 17:32:13 +00:00
|
|
|
|
SearchByNameForm,
|
2021-02-15 21:02:37 +00:00
|
|
|
|
ServiceBroadcastAccountTypeForm,
|
2021-05-11 11:07:30 +01:00
|
|
|
|
ServiceBroadcastChannelForm,
|
|
|
|
|
|
ServiceBroadcastNetworkForm,
|
2018-08-09 11:59:05 +01:00
|
|
|
|
ServiceContactDetailsForm,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
ServiceEditInboundNumberForm,
|
2017-10-05 15:47:12 +01:00
|
|
|
|
ServiceLetterContactBlockForm,
|
2019-02-18 16:56:43 +00:00
|
|
|
|
ServiceOnOffSettingForm,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
ServiceReplyToEmailForm,
|
|
|
|
|
|
ServiceSmsSenderForm,
|
2019-01-29 14:51:31 +00:00
|
|
|
|
ServiceSwitchChannelForm,
|
2018-02-20 11:22:17 +00:00
|
|
|
|
SMSPrefixForm,
|
2022-01-28 09:45:59 +00:00
|
|
|
|
SomethingElseBrandingForm,
|
2017-09-26 14:05:02 +01:00
|
|
|
|
)
|
2021-06-09 13:19:05 +01:00
|
|
|
|
from app.utils import DELIVERED_STATUSES, FAILURE_STATUSES, SENDING_STATUSES
|
2022-03-22 17:20:02 +00:00
|
|
|
|
from app.utils.branding import NHS_EMAIL_BRANDING_ID
|
2022-03-23 15:22:54 +00:00
|
|
|
|
from app.utils.branding import get_email_choices as get_email_branding_choices
|
2021-06-09 13:19:05 +01:00
|
|
|
|
from app.utils.user import (
|
2018-02-27 16:45:20 +00:00
|
|
|
|
user_has_permissions,
|
2018-12-12 13:10:46 +00:00
|
|
|
|
user_is_gov_user,
|
2018-02-27 16:45:20 +00:00
|
|
|
|
user_is_platform_admin,
|
|
|
|
|
|
)
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
2019-02-18 16:56:43 +00:00
|
|
|
|
PLATFORM_ADMIN_SERVICE_PERMISSIONS = OrderedDict([
|
|
|
|
|
|
('inbound_sms', {'title': 'Receive inbound SMS', 'requires': 'sms', 'endpoint': '.service_set_inbound_number'}),
|
2019-08-06 16:57:40 +01:00
|
|
|
|
('email_auth', {'title': 'Email authentication'}),
|
2020-03-09 14:17:20 +00:00
|
|
|
|
('international_letters', {'title': 'Send international letters', 'requires': 'letter'}),
|
2019-02-18 16:56:43 +00:00
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings")
|
2018-03-01 10:37:55 +00:00
|
|
|
|
@user_has_permissions('manage_service', 'manage_api_keys')
|
2016-01-13 12:10:29 +00:00
|
|
|
|
def service_settings(service_id):
|
2019-02-18 16:56:43 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings.html',
|
2022-03-02 15:36:28 +00:00
|
|
|
|
service_permissions=PLATFORM_ADMIN_SERVICE_PERMISSIONS,
|
2022-03-22 16:38:51 +00:00
|
|
|
|
email_branding_options=ChooseEmailBrandingForm(current_service)
|
2019-02-18 16:56:43 +00:00
|
|
|
|
)
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/name", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2016-01-18 16:01:04 +00:00
|
|
|
|
def service_name_change(service_id):
|
2021-12-01 12:07:00 +00:00
|
|
|
|
form = RenameServiceForm(name=current_service.name)
|
2016-06-20 13:33:29 +01:00
|
|
|
|
|
2016-01-18 16:01:04 +00:00
|
|
|
|
if form.validate_on_submit():
|
2018-07-02 11:00:02 +01:00
|
|
|
|
|
2021-12-01 12:07:00 +00:00
|
|
|
|
try:
|
|
|
|
|
|
current_service.update(
|
|
|
|
|
|
name=form.name.data,
|
|
|
|
|
|
email_from=email_safe(form.name.data),
|
|
|
|
|
|
)
|
|
|
|
|
|
except HTTPError as http_error:
|
|
|
|
|
|
if http_error.status_code == 400 and any(
|
|
|
|
|
|
name_error_message.startswith('Duplicate service name')
|
|
|
|
|
|
for name_error_message in http_error.message['name']
|
|
|
|
|
|
):
|
|
|
|
|
|
form.name.errors.append('This service name is already in use')
|
|
|
|
|
|
else:
|
|
|
|
|
|
raise http_error
|
|
|
|
|
|
else:
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2016-01-18 16:01:04 +00:00
|
|
|
|
|
2020-07-01 14:24:27 +01:00
|
|
|
|
if current_service.organisation_type == 'local':
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/name-local.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2016-01-18 16:01:04 +00:00
|
|
|
|
return render_template(
|
2016-01-18 17:35:28 +00:00
|
|
|
|
'views/service-settings/name.html',
|
2018-07-02 11:00:02 +01:00
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
2016-01-07 16:24:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live/estimate-usage", methods=['GET', 'POST'])
|
2019-02-15 11:03:19 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def estimate_usage(service_id):
|
|
|
|
|
|
|
|
|
|
|
|
form = EstimateUsageForm(
|
|
|
|
|
|
volume_email=current_service.volume_email,
|
|
|
|
|
|
volume_sms=current_service.volume_sms,
|
|
|
|
|
|
volume_letter=current_service.volume_letter,
|
2019-03-01 12:22:57 +00:00
|
|
|
|
consent_to_research={
|
|
|
|
|
|
True: 'yes',
|
|
|
|
|
|
False: 'no',
|
|
|
|
|
|
}.get(current_service.consent_to_research),
|
2019-02-15 11:03:19 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.update(
|
|
|
|
|
|
volume_email=form.volume_email.data,
|
|
|
|
|
|
volume_sms=form.volume_sms.data,
|
|
|
|
|
|
volume_letter=form.volume_letter.data,
|
|
|
|
|
|
consent_to_research=(form.consent_to_research.data == 'yes'),
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'main.request_to_go_live',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/estimate-usage.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live", methods=['GET'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2018-02-20 11:06:08 +00:00
|
|
|
|
def request_to_go_live(service_id):
|
2020-11-05 16:45:54 +00:00
|
|
|
|
if current_service.live:
|
|
|
|
|
|
return render_template('views/service-settings/service-already-live.html')
|
|
|
|
|
|
|
2018-02-27 11:33:26 +00:00
|
|
|
|
return render_template(
|
2019-09-04 15:55:09 +01:00
|
|
|
|
'views/service-settings/request-to-go-live.html'
|
2018-02-27 11:33:26 +00:00
|
|
|
|
)
|
2018-02-20 12:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live", methods=['POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2018-12-12 13:10:46 +00:00
|
|
|
|
@user_is_gov_user
|
2018-02-20 12:15:35 +00:00
|
|
|
|
def submit_request_to_go_live(service_id):
|
2021-10-15 09:18:53 +01:00
|
|
|
|
ticket_message = render_template('support-tickets/go-live-request.txt') + '\n'
|
2021-09-16 11:17:45 +01:00
|
|
|
|
|
|
|
|
|
|
ticket = NotifySupportTicket(
|
|
|
|
|
|
subject=f'Request to go live - {current_service.name}',
|
|
|
|
|
|
message=ticket_message,
|
|
|
|
|
|
ticket_type=NotifySupportTicket.TYPE_QUESTION,
|
2019-02-15 11:03:19 +00:00
|
|
|
|
user_name=current_user.name,
|
2021-09-16 11:17:45 +01:00
|
|
|
|
user_email=current_user.email_address,
|
2021-07-05 11:49:22 +01:00
|
|
|
|
requester_sees_message_content=False,
|
2021-09-16 11:17:45 +01:00
|
|
|
|
org_id=current_service.organisation_id,
|
|
|
|
|
|
org_type=current_service.organisation_type,
|
|
|
|
|
|
service_id=current_service.id,
|
2019-02-15 11:03:19 +00:00
|
|
|
|
)
|
2021-09-16 11:17:45 +01:00
|
|
|
|
zendesk_client.send_ticket_to_zendesk(ticket)
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
2019-04-16 15:01:54 +01:00
|
|
|
|
current_service.update(go_live_user=current_user.id)
|
|
|
|
|
|
|
2019-02-15 11:03:19 +00:00
|
|
|
|
flash('Thanks for your request to go live. We’ll get back to you within one working day.', 'default')
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2016-04-26 13:31:57 +01:00
|
|
|
|
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/switch-live", methods=["GET", "POST"])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2016-04-14 15:38:27 +01:00
|
|
|
|
def service_switch_live(service_id):
|
2019-02-18 16:56:43 +00:00
|
|
|
|
form = ServiceOnOffSettingForm(
|
|
|
|
|
|
name="Make service live",
|
|
|
|
|
|
enabled=not current_service.trial_mode
|
2016-08-11 12:32:38 +01:00
|
|
|
|
)
|
2016-04-14 15:38:27 +01:00
|
|
|
|
|
2019-02-18 16:56:43 +00:00
|
|
|
|
if form.validate_on_submit():
|
2019-04-10 17:20:51 +01:00
|
|
|
|
current_service.update_status(live=form.enabled.data)
|
2019-02-18 16:56:43 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2016-04-14 15:38:27 +01:00
|
|
|
|
|
2019-02-18 16:56:43 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-service-setting.html',
|
|
|
|
|
|
title="Make service live",
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
2016-10-26 16:56:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/switch-count-as-live", methods=["GET", "POST"])
|
2019-03-25 14:46:42 +00:00
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def service_switch_count_as_live(service_id):
|
|
|
|
|
|
|
|
|
|
|
|
form = ServiceOnOffSettingForm(
|
|
|
|
|
|
name="Count in list of live services",
|
|
|
|
|
|
enabled=current_service.count_as_live,
|
|
|
|
|
|
truthy='Yes',
|
|
|
|
|
|
falsey='No',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2019-07-08 14:32:18 +01:00
|
|
|
|
current_service.update_count_as_live(form.enabled.data)
|
2019-03-25 14:46:42 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-service-setting.html',
|
|
|
|
|
|
title="Count in list of live services",
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/permissions/<permission>", methods=["GET", "POST"])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2019-02-18 16:56:43 +00:00
|
|
|
|
def service_set_permission(service_id, permission):
|
|
|
|
|
|
if permission not in PLATFORM_ADMIN_SERVICE_PERMISSIONS:
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
|
|
|
|
title = PLATFORM_ADMIN_SERVICE_PERMISSIONS[permission]['title']
|
|
|
|
|
|
form = ServiceOnOffSettingForm(
|
|
|
|
|
|
name=title,
|
|
|
|
|
|
enabled=current_service.has_permission(permission)
|
|
|
|
|
|
)
|
2017-10-27 11:44:40 +01:00
|
|
|
|
|
2019-02-18 16:56:43 +00:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.force_permission(permission, on=form.enabled.data)
|
2017-10-27 11:44:40 +01:00
|
|
|
|
|
2019-02-18 16:56:43 +00:00
|
|
|
|
return redirect(url_for(".service_settings", service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-service-setting.html',
|
|
|
|
|
|
title=title,
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
2018-02-21 17:41:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
2021-02-15 21:02:37 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/broadcasts", methods=["GET", "POST"])
|
|
|
|
|
|
@user_is_platform_admin
|
2021-05-11 11:07:30 +01:00
|
|
|
|
def service_set_broadcast_channel(service_id):
|
2021-06-07 17:23:48 +01:00
|
|
|
|
if current_service.has_permission('broadcast'):
|
|
|
|
|
|
if current_service.live:
|
|
|
|
|
|
channel = current_service.broadcast_channel
|
|
|
|
|
|
else:
|
|
|
|
|
|
channel = 'training'
|
|
|
|
|
|
else:
|
|
|
|
|
|
channel = None
|
|
|
|
|
|
|
|
|
|
|
|
form = ServiceBroadcastChannelForm(channel=channel)
|
2021-05-11 11:07:30 +01:00
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2021-06-07 17:23:48 +01:00
|
|
|
|
if form.channel.data == 'training':
|
2021-05-11 11:07:30 +01:00
|
|
|
|
return redirect(url_for(
|
2021-05-20 13:27:22 +01:00
|
|
|
|
'.service_confirm_broadcast_account_type',
|
2021-05-11 11:07:30 +01:00
|
|
|
|
service_id=current_service.id,
|
2021-06-07 17:23:48 +01:00
|
|
|
|
account_type='training-test-all'
|
2021-05-11 11:07:30 +01:00
|
|
|
|
))
|
|
|
|
|
|
return redirect(url_for(
|
2021-05-20 13:27:22 +01:00
|
|
|
|
'.service_set_broadcast_network',
|
2021-05-11 11:07:30 +01:00
|
|
|
|
service_id=current_service.id,
|
2021-06-07 17:23:48 +01:00
|
|
|
|
broadcast_channel=form.channel.data,
|
2021-05-11 11:07:30 +01:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/service-set-broadcast-channel.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-20 13:27:22 +01:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/broadcasts/<broadcast_channel>", methods=["GET", "POST"])
|
2021-05-11 11:07:30 +01:00
|
|
|
|
@user_is_platform_admin
|
2021-05-20 13:27:22 +01:00
|
|
|
|
def service_set_broadcast_network(service_id, broadcast_channel):
|
|
|
|
|
|
# only populate old settings when the channel is unchanged
|
|
|
|
|
|
if current_service.broadcast_channel == broadcast_channel:
|
2021-06-07 16:52:36 +01:00
|
|
|
|
provider = current_service.allowed_broadcast_provider
|
|
|
|
|
|
|
2021-06-07 17:06:15 +01:00
|
|
|
|
form = ServiceBroadcastNetworkForm(
|
|
|
|
|
|
broadcast_channel=broadcast_channel,
|
|
|
|
|
|
all_networks=provider == 'all',
|
|
|
|
|
|
network=provider if provider != 'all' else None,
|
|
|
|
|
|
)
|
2021-05-11 12:39:52 +01:00
|
|
|
|
else:
|
|
|
|
|
|
form = ServiceBroadcastNetworkForm(
|
2021-05-20 13:27:22 +01:00
|
|
|
|
broadcast_channel=broadcast_channel
|
2021-02-15 21:02:37 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
2021-05-10 22:00:09 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.service_confirm_broadcast_account_type',
|
|
|
|
|
|
service_id=current_service.id,
|
2021-06-07 16:38:58 +01:00
|
|
|
|
account_type=form.account_type,
|
2021-05-10 22:00:09 +01:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
2021-05-11 11:07:30 +01:00
|
|
|
|
'views/service-settings/service-set-broadcast-network.html',
|
2021-05-10 22:00:09 +01:00
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route(
|
2021-05-20 13:27:22 +01:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/broadcasts/<account_type>/confirm",
|
2021-05-10 22:00:09 +01:00
|
|
|
|
methods=["GET", "POST"]
|
|
|
|
|
|
)
|
|
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def service_confirm_broadcast_account_type(service_id, account_type):
|
|
|
|
|
|
form = ServiceBroadcastAccountTypeForm(account_type=account_type)
|
|
|
|
|
|
form.validate()
|
|
|
|
|
|
|
|
|
|
|
|
if form.account_type.errors:
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
2021-02-15 21:02:37 +00:00
|
|
|
|
if form.validate_on_submit():
|
2021-07-13 17:06:35 +01:00
|
|
|
|
cached_service_user_ids = [user.id for user in current_service.active_users]
|
|
|
|
|
|
|
2021-02-15 21:02:37 +00:00
|
|
|
|
service_api_client.set_service_broadcast_settings(
|
|
|
|
|
|
current_service.id,
|
|
|
|
|
|
service_mode=form.account_type.service_mode,
|
|
|
|
|
|
broadcast_channel=form.account_type.broadcast_channel,
|
2021-07-13 17:06:35 +01:00
|
|
|
|
provider_restriction=form.account_type.provider_restriction,
|
|
|
|
|
|
cached_service_user_ids=cached_service_user_ids
|
2021-02-15 21:02:37 +00:00
|
|
|
|
)
|
2021-03-04 12:09:28 +00:00
|
|
|
|
create_broadcast_account_type_change_event(
|
|
|
|
|
|
service_id=current_service.id,
|
|
|
|
|
|
changed_by_id=current_user.id,
|
|
|
|
|
|
service_mode=form.account_type.service_mode,
|
|
|
|
|
|
broadcast_channel=form.account_type.broadcast_channel,
|
|
|
|
|
|
provider_restriction=form.account_type.provider_restriction,
|
|
|
|
|
|
)
|
2021-02-15 21:02:37 +00:00
|
|
|
|
return redirect(url_for(".service_settings", service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
2021-05-10 22:00:09 +01:00
|
|
|
|
'views/service-settings/service-confirm-broadcast-account-type.html',
|
2021-02-15 21:02:37 +00:00
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/archive", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-01-31 09:54:51 +00:00
|
|
|
|
def archive_service(service_id):
|
2021-07-14 14:43:04 +01:00
|
|
|
|
if not current_service.active or not (
|
2019-05-29 16:51:25 +01:00
|
|
|
|
current_service.trial_mode or current_user.platform_admin
|
|
|
|
|
|
):
|
|
|
|
|
|
abort(403)
|
2016-11-08 14:33:53 +00:00
|
|
|
|
if request.method == 'POST':
|
2020-05-22 17:12:00 +01:00
|
|
|
|
# We need to purge the cache for the services users as otherwise, although they will have had their permissions
|
|
|
|
|
|
# removed in the DB, they would still have permissions in the cache to view/edit/manage this service
|
|
|
|
|
|
cached_service_user_ids = [user.id for user in current_service.active_users]
|
|
|
|
|
|
|
|
|
|
|
|
service_api_client.archive_service(service_id, cached_service_user_ids)
|
2021-07-12 15:29:53 +01:00
|
|
|
|
create_archive_service_event(service_id=service_id, archived_by_id=current_user.id)
|
2021-07-08 15:30:31 +01:00
|
|
|
|
|
2019-05-29 16:51:25 +01:00
|
|
|
|
flash(
|
|
|
|
|
|
'‘{}’ was deleted'.format(current_service.name),
|
|
|
|
|
|
'default_with_tick',
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.choose_account'))
|
2016-11-08 14:33:53 +00:00
|
|
|
|
else:
|
2019-05-29 16:51:25 +01:00
|
|
|
|
flash(
|
|
|
|
|
|
'Are you sure you want to delete ‘{}’? There’s no way to undo this.'.format(current_service.name),
|
|
|
|
|
|
'delete',
|
|
|
|
|
|
)
|
2016-11-08 14:33:53 +00:00
|
|
|
|
return service_settings(service_id)
|
2016-05-16 13:09:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/suspend", methods=["GET", "POST"])
|
2021-07-14 14:29:09 +01:00
|
|
|
|
@user_is_platform_admin
|
2017-01-31 15:56:06 +00:00
|
|
|
|
def suspend_service(service_id):
|
|
|
|
|
|
if request.method == 'POST':
|
|
|
|
|
|
service_api_client.suspend_service(service_id)
|
2021-07-12 15:29:53 +01:00
|
|
|
|
create_suspend_service_event(service_id=service_id, suspended_by_id=current_user.id)
|
2017-01-31 15:56:06 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
else:
|
|
|
|
|
|
flash("This will suspend the service and revoke all api keys. Are you sure you want to suspend this service?",
|
|
|
|
|
|
'suspend')
|
|
|
|
|
|
return service_settings(service_id)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/resume", methods=["GET", "POST"])
|
2021-07-14 14:29:09 +01:00
|
|
|
|
@user_is_platform_admin
|
2017-01-31 15:56:06 +00:00
|
|
|
|
def resume_service(service_id):
|
|
|
|
|
|
if request.method == 'POST':
|
|
|
|
|
|
service_api_client.resume_service(service_id)
|
2021-07-12 16:00:16 +01:00
|
|
|
|
create_resume_service_event(service_id=service_id, resumed_by_id=current_user.id)
|
2017-01-31 15:56:06 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
else:
|
|
|
|
|
|
flash("This will resume the service. New api key are required for this service to use the API.", 'resume')
|
|
|
|
|
|
return service_settings(service_id)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-02-25 11:27:43 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/send-files-by-email", methods=['GET', 'POST'])
|
2018-06-05 10:37:41 +01:00
|
|
|
|
@user_has_permissions('manage_service')
|
2020-02-25 11:27:43 +00:00
|
|
|
|
def send_files_by_email_contact_details(service_id):
|
2018-08-09 11:59:05 +01:00
|
|
|
|
form = ServiceContactDetailsForm()
|
2020-02-25 11:27:43 +00:00
|
|
|
|
contact_details = None
|
2018-06-05 10:37:41 +01:00
|
|
|
|
|
|
|
|
|
|
if request.method == 'GET':
|
2018-10-26 12:13:04 +01:00
|
|
|
|
contact_details = current_service.contact_link
|
2020-02-25 11:27:43 +00:00
|
|
|
|
if contact_details:
|
|
|
|
|
|
contact_type = check_contact_details_type(contact_details)
|
|
|
|
|
|
field_to_update = getattr(form, contact_type)
|
2018-08-09 11:59:05 +01:00
|
|
|
|
|
2020-02-25 11:27:43 +00:00
|
|
|
|
form.contact_details_type.data = contact_type
|
|
|
|
|
|
field_to_update.data = contact_details
|
2018-06-05 10:37:41 +01:00
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2018-08-09 11:59:05 +01:00
|
|
|
|
contact_type = form.contact_details_type.data
|
|
|
|
|
|
|
2018-11-05 16:03:11 +00:00
|
|
|
|
current_service.update(
|
2018-08-09 11:59:05 +01:00
|
|
|
|
contact_link=form.data[contact_type]
|
2018-06-05 10:37:41 +01:00
|
|
|
|
)
|
2018-07-20 08:42:01 +01:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
2018-06-05 10:37:41 +01:00
|
|
|
|
|
2020-02-25 11:27:43 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/send-files-by-email.html', form=form, contact_details=contact_details
|
|
|
|
|
|
)
|
2018-06-05 10:37:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-reply-to-email", methods=['GET'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2016-05-16 13:09:58 +01:00
|
|
|
|
def service_set_reply_to_email(service_id):
|
2017-09-25 15:14:13 +01:00
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-reply-to", methods=['GET'])
|
2018-03-01 10:37:55 +00:00
|
|
|
|
@user_has_permissions('manage_service', 'manage_api_keys')
|
2017-09-25 15:14:13 +01:00
|
|
|
|
def service_email_reply_to(service_id):
|
2018-10-26 17:31:49 +01:00
|
|
|
|
return render_template('views/service-settings/email_reply_to.html')
|
2017-09-25 15:14:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-reply-to/add", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-09-25 15:14:13 +01:00
|
|
|
|
def service_add_email_reply_to(service_id):
|
|
|
|
|
|
form = ServiceReplyToEmailForm()
|
2018-10-26 17:31:49 +01:00
|
|
|
|
first_email_address = current_service.count_email_reply_to_addresses == 0
|
2019-05-14 13:37:16 +01:00
|
|
|
|
is_default = first_email_address if first_email_address else form.is_default.data
|
2016-05-16 13:09:58 +01:00
|
|
|
|
if form.validate_on_submit():
|
2021-05-28 15:06:31 +01:00
|
|
|
|
if current_user.platform_admin:
|
|
|
|
|
|
service_api_client.add_reply_to_email_address(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
email_address=form.email_address.data,
|
|
|
|
|
|
is_default=is_default
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
|
|
|
|
|
else:
|
|
|
|
|
|
try:
|
|
|
|
|
|
notification_id = service_api_client.verify_reply_to_email_address(
|
|
|
|
|
|
service_id, form.email_address.data
|
|
|
|
|
|
)["data"]["id"]
|
|
|
|
|
|
except HTTPError as e:
|
|
|
|
|
|
if e.status_code == 409:
|
|
|
|
|
|
flash(e.message, 'error')
|
|
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
|
|
|
|
|
else:
|
|
|
|
|
|
raise e
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.service_verify_reply_to_address',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
notification_id=notification_id,
|
|
|
|
|
|
is_default=is_default
|
|
|
|
|
|
))
|
2019-05-14 13:37:16 +01:00
|
|
|
|
|
2017-09-25 15:14:13 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/email-reply-to/add.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
first_email_address=first_email_address)
|
2017-03-02 15:56:28 +00:00
|
|
|
|
|
2017-09-25 15:14:13 +01:00
|
|
|
|
|
2019-11-29 13:03:23 +00:00
|
|
|
|
@main.route(
|
|
|
|
|
|
"/services/<uuid:service_id>/service-settings/email-reply-to/<uuid:notification_id>/verify",
|
|
|
|
|
|
methods=['GET', 'POST']
|
|
|
|
|
|
)
|
2019-05-09 17:55:10 +01:00
|
|
|
|
@user_has_permissions('manage_service')
|
2019-05-16 17:05:55 +01:00
|
|
|
|
def service_verify_reply_to_address(service_id, notification_id):
|
2019-05-20 18:05:55 +01:00
|
|
|
|
replace = request.args.get('replace', False)
|
2019-05-21 16:08:50 +01:00
|
|
|
|
is_default = request.args.get('is_default', False)
|
2019-05-14 17:53:00 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/email-reply-to/verify.html',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
notification_id=notification_id,
|
2019-05-20 14:21:57 +01:00
|
|
|
|
partials=get_service_verify_reply_to_address_partials(service_id, notification_id),
|
2019-05-20 18:05:55 +01:00
|
|
|
|
verb=("Change" if replace else "Add"),
|
2019-05-21 13:10:17 +01:00
|
|
|
|
replace=replace,
|
2019-05-21 16:08:50 +01:00
|
|
|
|
is_default=is_default
|
2019-05-14 17:53:00 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-reply-to/<uuid:notification_id>/verify.json")
|
2019-05-14 17:53:00 +01:00
|
|
|
|
@user_has_permissions('manage_service')
|
2019-05-16 17:05:55 +01:00
|
|
|
|
def service_verify_reply_to_address_updates(service_id, notification_id):
|
|
|
|
|
|
return jsonify(**get_service_verify_reply_to_address_partials(service_id, notification_id))
|
2019-05-14 17:53:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-05-16 17:05:55 +01:00
|
|
|
|
def get_service_verify_reply_to_address_partials(service_id, notification_id):
|
2019-05-20 17:32:40 +01:00
|
|
|
|
form = ServiceReplyToEmailForm()
|
|
|
|
|
|
first_email_address = current_service.count_email_reply_to_addresses == 0
|
2019-05-13 10:17:20 +01:00
|
|
|
|
notification = notification_api_client.get_notification(current_app.config["NOTIFY_SERVICE_ID"], notification_id)
|
2019-05-21 13:10:17 +01:00
|
|
|
|
replace = request.args.get('replace', False)
|
2019-06-05 16:32:08 +01:00
|
|
|
|
replace = False if replace == "False" else replace
|
|
|
|
|
|
existing_is_default = False
|
|
|
|
|
|
if replace:
|
|
|
|
|
|
existing = current_service.get_email_reply_to_address(replace)
|
|
|
|
|
|
existing_is_default = existing['is_default']
|
2019-05-13 10:17:20 +01:00
|
|
|
|
verification_status = "pending"
|
2019-05-20 17:32:40 +01:00
|
|
|
|
is_default = True if (request.args.get('is_default', False) == "True") else False
|
2019-05-21 16:08:50 +01:00
|
|
|
|
if notification["status"] in DELIVERED_STATUSES:
|
2019-05-13 10:17:20 +01:00
|
|
|
|
verification_status = "success"
|
2019-05-15 15:21:56 +01:00
|
|
|
|
if notification["to"] not in [i["email_address"] for i in current_service.email_reply_to_addresses]:
|
2019-06-05 16:32:08 +01:00
|
|
|
|
if replace:
|
2019-05-20 18:05:55 +01:00
|
|
|
|
service_api_client.update_reply_to_email_address(
|
|
|
|
|
|
current_service.id, replace, email_address=notification["to"], is_default=is_default
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
service_api_client.add_reply_to_email_address(
|
|
|
|
|
|
current_service.id,
|
|
|
|
|
|
email_address=notification["to"],
|
|
|
|
|
|
is_default=is_default
|
|
|
|
|
|
)
|
2020-01-21 12:23:30 +00:00
|
|
|
|
seconds_since_sending = (
|
|
|
|
|
|
utc_string_to_aware_gmt_datetime(datetime.utcnow().isoformat()) -
|
|
|
|
|
|
utc_string_to_aware_gmt_datetime(notification['created_at'])
|
|
|
|
|
|
).seconds
|
2019-05-21 16:08:50 +01:00
|
|
|
|
if notification["status"] in FAILURE_STATUSES or (
|
2020-01-07 11:57:38 +00:00
|
|
|
|
notification["status"] in SENDING_STATUSES and
|
|
|
|
|
|
seconds_since_sending > current_app.config['REPLY_TO_EMAIL_ADDRESS_VALIDATION_TIMEOUT']
|
2019-05-21 16:08:50 +01:00
|
|
|
|
):
|
2019-05-13 10:17:20 +01:00
|
|
|
|
verification_status = "failure"
|
2019-05-20 17:32:40 +01:00
|
|
|
|
form.email_address.data = notification['to']
|
|
|
|
|
|
form.is_default.data = is_default
|
2019-05-14 17:53:00 +01:00
|
|
|
|
return {
|
|
|
|
|
|
'status': render_template(
|
|
|
|
|
|
'views/service-settings/email-reply-to/_verify-updates.html',
|
|
|
|
|
|
reply_to_email_address=notification["to"],
|
|
|
|
|
|
service_id=current_service.id,
|
|
|
|
|
|
notification_id=notification_id,
|
|
|
|
|
|
verification_status=verification_status,
|
|
|
|
|
|
is_default=is_default,
|
2019-06-05 16:32:08 +01:00
|
|
|
|
existing_is_default=existing_is_default,
|
2019-05-20 17:32:40 +01:00
|
|
|
|
form=form,
|
2019-05-21 13:10:17 +01:00
|
|
|
|
first_email_address=first_email_address,
|
|
|
|
|
|
replace=replace
|
2019-05-14 17:53:00 +01:00
|
|
|
|
),
|
2019-05-20 17:32:40 +01:00
|
|
|
|
'stop': 0 if verification_status == "pending" else 1
|
2019-05-14 17:53:00 +01:00
|
|
|
|
}
|
2019-05-09 17:55:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-11-14 11:31:20 +00:00
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/email-reply-to/<uuid:reply_to_email_id>/edit",
|
2017-11-14 11:31:20 +00:00
|
|
|
|
methods=['GET', 'POST'],
|
|
|
|
|
|
endpoint="service_edit_email_reply_to"
|
|
|
|
|
|
)
|
|
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/email-reply-to/<uuid:reply_to_email_id>/delete",
|
2017-11-14 11:31:20 +00:00
|
|
|
|
methods=['GET'],
|
|
|
|
|
|
endpoint="service_confirm_delete_email_reply_to"
|
|
|
|
|
|
)
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-09-25 15:14:13 +01:00
|
|
|
|
def service_edit_email_reply_to(service_id, reply_to_email_id):
|
|
|
|
|
|
form = ServiceReplyToEmailForm()
|
2018-10-26 17:31:49 +01:00
|
|
|
|
reply_to_email_address = current_service.get_email_reply_to_address(reply_to_email_id)
|
2021-11-04 11:21:58 +00:00
|
|
|
|
|
2017-09-25 15:14:13 +01:00
|
|
|
|
if request.method == 'GET':
|
|
|
|
|
|
form.email_address.data = reply_to_email_address['email_address']
|
|
|
|
|
|
form.is_default.data = reply_to_email_address['is_default']
|
2021-11-04 11:21:58 +00:00
|
|
|
|
|
|
|
|
|
|
show_choice_of_default_checkbox = not reply_to_email_address['is_default']
|
|
|
|
|
|
|
2017-09-25 15:14:13 +01:00
|
|
|
|
if form.validate_on_submit():
|
2021-05-28 15:06:31 +01:00
|
|
|
|
if form.email_address.data == reply_to_email_address["email_address"] or current_user.platform_admin:
|
2019-05-23 14:40:18 +01:00
|
|
|
|
service_api_client.update_reply_to_email_address(
|
|
|
|
|
|
current_service.id,
|
|
|
|
|
|
reply_to_email_id=reply_to_email_id,
|
|
|
|
|
|
email_address=form.email_address.data,
|
|
|
|
|
|
is_default=True if reply_to_email_address['is_default'] else form.is_default.data
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
2019-05-16 17:05:55 +01:00
|
|
|
|
try:
|
|
|
|
|
|
notification_id = service_api_client.verify_reply_to_email_address(
|
|
|
|
|
|
service_id, form.email_address.data
|
|
|
|
|
|
)["data"]["id"]
|
|
|
|
|
|
except HTTPError as e:
|
2020-04-02 12:11:14 +01:00
|
|
|
|
if e.status_code == 409:
|
2020-03-30 17:11:31 +01:00
|
|
|
|
flash(e.message, 'error')
|
2019-05-16 17:05:55 +01:00
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
|
|
|
|
|
else:
|
|
|
|
|
|
raise e
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.service_verify_reply_to_address',
|
|
|
|
|
|
service_id=service_id,
|
2019-05-21 16:08:50 +01:00
|
|
|
|
notification_id=notification_id,
|
|
|
|
|
|
is_default=True if reply_to_email_address['is_default'] else form.is_default.data,
|
|
|
|
|
|
replace=reply_to_email_id
|
2019-05-20 18:05:55 +01:00
|
|
|
|
))
|
2019-05-16 17:05:55 +01:00
|
|
|
|
|
2018-11-16 17:05:59 +00:00
|
|
|
|
if (request.endpoint == "main.service_confirm_delete_email_reply_to"):
|
2019-07-09 16:42:38 +01:00
|
|
|
|
flash("Are you sure you want to delete this reply-to email address?", 'delete')
|
2016-05-16 13:09:58 +01:00
|
|
|
|
return render_template(
|
2017-09-25 15:14:13 +01:00
|
|
|
|
'views/service-settings/email-reply-to/edit.html',
|
|
|
|
|
|
form=form,
|
2017-11-14 11:31:20 +00:00
|
|
|
|
reply_to_email_address_id=reply_to_email_id,
|
2021-11-04 11:21:58 +00:00
|
|
|
|
show_choice_of_default_checkbox=show_choice_of_default_checkbox
|
2017-11-14 11:31:20 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route(
|
|
|
|
|
|
"/services/<uuid:service_id>/service-settings/email-reply-to/<uuid:reply_to_email_id>/delete",
|
|
|
|
|
|
methods=['POST']
|
|
|
|
|
|
)
|
2017-11-14 11:31:20 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_delete_email_reply_to(service_id, reply_to_email_id):
|
2018-04-26 15:09:37 +01:00
|
|
|
|
service_api_client.delete_reply_to_email_address(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
service_id=current_service.id,
|
2017-11-14 11:31:20 +00:00
|
|
|
|
reply_to_email_id=reply_to_email_id,
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_email_reply_to', service_id=service_id))
|
2016-07-01 13:47:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-inbound-number", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-08-10 10:29:31 +01:00
|
|
|
|
def service_set_inbound_number(service_id):
|
2017-10-24 15:37:44 +01:00
|
|
|
|
available_inbound_numbers = inbound_number_client.get_available_inbound_sms_numbers()
|
|
|
|
|
|
inbound_numbers_value_and_label = [
|
|
|
|
|
|
(number['id'], number['number']) for number in available_inbound_numbers['data']
|
|
|
|
|
|
]
|
|
|
|
|
|
no_available_numbers = available_inbound_numbers['data'] == []
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceInboundNumberForm(
|
2017-10-24 15:37:44 +01:00
|
|
|
|
inbound_number_choices=inbound_numbers_value_and_label
|
|
|
|
|
|
)
|
2019-02-18 16:56:43 +00:00
|
|
|
|
|
2017-10-24 15:37:44 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
service_api_client.add_sms_sender(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
current_service.id,
|
2017-10-24 15:37:44 +01:00
|
|
|
|
sms_sender=form.inbound_number.data,
|
|
|
|
|
|
is_default=True,
|
|
|
|
|
|
inbound_number_id=form.inbound_number.data
|
|
|
|
|
|
)
|
2018-11-05 16:53:03 +00:00
|
|
|
|
current_service.force_permission('inbound_sms', on=True)
|
2017-10-24 15:37:44 +01:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2019-02-18 16:56:43 +00:00
|
|
|
|
|
2017-10-24 15:37:44 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-inbound-number.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
no_available_numbers=no_available_numbers,
|
|
|
|
|
|
)
|
2017-08-10 10:29:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/sms-prefix", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-11-03 15:01:41 +00:00
|
|
|
|
def service_set_sms_prefix(service_id):
|
|
|
|
|
|
|
2020-07-03 11:48:17 +01:00
|
|
|
|
form = SMSPrefixForm(enabled=current_service.prefix_sms)
|
2017-11-03 15:01:41 +00:00
|
|
|
|
|
2018-07-20 08:42:01 +01:00
|
|
|
|
form.enabled.label.text = 'Start all text messages with ‘{}:’'.format(current_service.name)
|
2017-11-06 14:12:25 +00:00
|
|
|
|
|
2017-11-03 15:01:41 +00:00
|
|
|
|
if form.validate_on_submit():
|
2018-11-05 16:03:11 +00:00
|
|
|
|
current_service.update(
|
2020-07-03 11:48:17 +01:00
|
|
|
|
prefix_sms=form.enabled.data
|
2017-11-03 15:01:41 +00:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/sms-prefix.html',
|
|
|
|
|
|
form=form
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-international-sms", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-04-27 14:26:25 +01:00
|
|
|
|
def service_set_international_sms(service_id):
|
2020-05-29 09:55:34 +01:00
|
|
|
|
form = ServiceOnOffSettingForm(
|
|
|
|
|
|
'Send text messages to international phone numbers',
|
|
|
|
|
|
enabled=current_service.has_permission('international_sms'),
|
2017-09-26 14:05:02 +01:00
|
|
|
|
)
|
|
|
|
|
|
if form.validate_on_submit():
|
2018-11-05 16:53:03 +00:00
|
|
|
|
current_service.force_permission(
|
2017-09-26 14:05:02 +01:00
|
|
|
|
'international_sms',
|
2020-05-29 09:55:34 +01:00
|
|
|
|
on=form.enabled.data,
|
2017-09-26 14:05:02 +01:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for(".service_settings", service_id=service_id)
|
|
|
|
|
|
)
|
2017-04-27 14:26:25 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-international-sms.html',
|
2017-09-26 14:05:02 +01:00
|
|
|
|
form=form,
|
2017-04-27 14:26:25 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-29 10:47:52 +01:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-international-letters", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_set_international_letters(service_id):
|
|
|
|
|
|
form = ServiceOnOffSettingForm(
|
|
|
|
|
|
'Send letters to international addresses',
|
|
|
|
|
|
enabled=current_service.has_permission('international_letters'),
|
|
|
|
|
|
)
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.force_permission(
|
|
|
|
|
|
'international_letters',
|
|
|
|
|
|
on=form.enabled.data,
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for(".service_settings", service_id=service_id)
|
|
|
|
|
|
)
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-international-letters.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-inbound-sms", methods=['GET'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-06-07 14:14:53 +01:00
|
|
|
|
def service_set_inbound_sms(service_id):
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-inbound-sms.html',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-letters", methods=['GET'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-05-02 11:03:10 +01:00
|
|
|
|
def service_set_letters(service_id):
|
2019-01-30 13:36:01 +00:00
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'.service_set_channel',
|
|
|
|
|
|
service_id=current_service.id,
|
|
|
|
|
|
channel='letter',
|
|
|
|
|
|
),
|
|
|
|
|
|
code=301,
|
|
|
|
|
|
)
|
2019-01-29 14:51:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-<channel>", methods=['GET', 'POST'])
|
2019-01-29 14:51:31 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_set_channel(service_id, channel):
|
|
|
|
|
|
|
|
|
|
|
|
if channel not in {'email', 'sms', 'letter'}:
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
2020-07-13 09:04:53 +01:00
|
|
|
|
if current_service.has_permission('broadcast'):
|
|
|
|
|
|
abort(403)
|
|
|
|
|
|
|
2019-01-29 14:51:31 +00:00
|
|
|
|
form = ServiceSwitchChannelForm(
|
|
|
|
|
|
channel=channel,
|
2019-02-18 16:27:53 +00:00
|
|
|
|
enabled=current_service.has_permission(channel)
|
2018-01-19 13:45:54 +00:00
|
|
|
|
)
|
2019-01-29 14:51:31 +00:00
|
|
|
|
|
2018-01-19 13:45:54 +00:00
|
|
|
|
if form.validate_on_submit():
|
2018-11-05 16:53:03 +00:00
|
|
|
|
current_service.force_permission(
|
2019-01-29 14:51:31 +00:00
|
|
|
|
channel,
|
2019-02-18 16:27:53 +00:00
|
|
|
|
on=form.enabled.data,
|
2018-01-19 13:45:54 +00:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for(".service_settings", service_id=service_id)
|
|
|
|
|
|
)
|
2019-01-29 14:51:31 +00:00
|
|
|
|
|
2017-05-02 11:03:10 +01:00
|
|
|
|
return render_template(
|
2019-01-29 14:51:31 +00:00
|
|
|
|
'views/service-settings/set-{}.html'.format(channel),
|
2018-01-19 13:45:54 +00:00
|
|
|
|
form=form,
|
2017-05-02 11:03:10 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-auth-type", methods=['GET'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-11-23 09:59:34 +00:00
|
|
|
|
def service_set_auth_type(service_id):
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-auth-type.html',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/letter-contacts", methods=['GET'])
|
2018-03-01 10:37:55 +00:00
|
|
|
|
@user_has_permissions('manage_service', 'manage_api_keys')
|
2017-10-05 15:47:12 +01:00
|
|
|
|
def service_letter_contact_details(service_id):
|
|
|
|
|
|
letter_contact_details = service_api_client.get_letter_contacts(service_id)
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/letter-contact-details.html',
|
|
|
|
|
|
letter_contact_details=letter_contact_details)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/letter-contact/add", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-10-05 15:47:12 +01:00
|
|
|
|
def service_add_letter_contact(service_id):
|
|
|
|
|
|
form = ServiceLetterContactBlockForm()
|
2018-10-26 17:31:49 +01:00
|
|
|
|
first_contact_block = current_service.count_letter_contact_details == 0
|
2019-07-08 11:31:55 +01:00
|
|
|
|
from_template = request.args.get('from_template')
|
2017-10-05 15:47:12 +01:00
|
|
|
|
if form.validate_on_submit():
|
2019-07-08 11:20:28 +01:00
|
|
|
|
new_letter_contact = service_api_client.add_letter_contact(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
current_service.id,
|
2017-10-05 15:47:12 +01:00
|
|
|
|
contact_block=form.letter_contact_block.data.replace('\r', '') or None,
|
|
|
|
|
|
is_default=first_contact_block if first_contact_block else form.is_default.data
|
|
|
|
|
|
)
|
2019-07-08 11:20:28 +01:00
|
|
|
|
if from_template:
|
|
|
|
|
|
service_api_client.update_service_template_sender(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
from_template,
|
|
|
|
|
|
new_letter_contact['data']['id'],
|
|
|
|
|
|
)
|
2018-01-03 10:44:36 +00:00
|
|
|
|
return redirect(
|
2019-07-08 11:20:28 +01:00
|
|
|
|
url_for('.view_template', service_id=service_id, template_id=from_template)
|
2018-01-03 10:44:36 +00:00
|
|
|
|
)
|
2017-10-05 15:47:12 +01:00
|
|
|
|
return redirect(url_for('.service_letter_contact_details', service_id=service_id))
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/letter-contact/add.html',
|
|
|
|
|
|
form=form,
|
2018-10-26 17:31:49 +01:00
|
|
|
|
first_contact_block=first_contact_block,
|
2019-07-08 11:31:55 +01:00
|
|
|
|
back_link=(
|
|
|
|
|
|
url_for('main.view_template', template_id=from_template, service_id=current_service.id)
|
|
|
|
|
|
if from_template
|
|
|
|
|
|
else url_for('.service_letter_contact_details', service_id=current_service.id)
|
|
|
|
|
|
),
|
2018-10-26 17:31:49 +01:00
|
|
|
|
)
|
2017-10-05 15:47:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-07-04 16:11:19 +01:00
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/letter-contact/<uuid:letter_contact_id>/edit",
|
2019-07-04 16:11:19 +01:00
|
|
|
|
methods=['GET', 'POST'],
|
|
|
|
|
|
endpoint="service_edit_letter_contact",
|
|
|
|
|
|
)
|
|
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/letter-contact/<uuid:letter_contact_id>/delete",
|
2019-07-04 16:11:19 +01:00
|
|
|
|
methods=['GET'],
|
|
|
|
|
|
endpoint="service_confirm_delete_letter_contact",
|
|
|
|
|
|
)
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-10-05 15:47:12 +01:00
|
|
|
|
def service_edit_letter_contact(service_id, letter_contact_id):
|
2018-10-26 17:31:49 +01:00
|
|
|
|
letter_contact_block = current_service.get_letter_contact_block(letter_contact_id)
|
|
|
|
|
|
form = ServiceLetterContactBlockForm(
|
|
|
|
|
|
letter_contact_block=letter_contact_block['contact_block']
|
|
|
|
|
|
)
|
2017-10-05 15:47:12 +01:00
|
|
|
|
if request.method == 'GET':
|
|
|
|
|
|
form.is_default.data = letter_contact_block['is_default']
|
|
|
|
|
|
if form.validate_on_submit():
|
2019-07-05 13:17:48 +01:00
|
|
|
|
current_service.edit_letter_contact_block(
|
|
|
|
|
|
id=letter_contact_id,
|
2017-10-05 15:47:12 +01:00
|
|
|
|
contact_block=form.letter_contact_block.data.replace('\r', '') or None,
|
2019-07-05 13:17:48 +01:00
|
|
|
|
is_default=letter_contact_block['is_default'] or form.is_default.data
|
2017-10-05 15:47:12 +01:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_letter_contact_details', service_id=service_id))
|
2019-07-04 16:11:19 +01:00
|
|
|
|
|
|
|
|
|
|
if (request.endpoint == "main.service_confirm_delete_letter_contact"):
|
|
|
|
|
|
flash("Are you sure you want to delete this contact block?", 'delete')
|
2017-10-05 15:47:12 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/letter-contact/edit.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
letter_contact_id=letter_contact_block['id'])
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/letter-contact/make-blank-default")
|
2019-07-05 13:17:48 +01:00
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_make_blank_default_letter_contact(service_id):
|
|
|
|
|
|
current_service.remove_default_letter_contact_block()
|
|
|
|
|
|
return redirect(url_for('.service_letter_contact_details', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-07-04 16:11:19 +01:00
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/letter-contact/<uuid:letter_contact_id>/delete",
|
2019-07-04 16:11:19 +01:00
|
|
|
|
methods=['POST'],
|
|
|
|
|
|
)
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_delete_letter_contact(service_id, letter_contact_id):
|
|
|
|
|
|
service_api_client.delete_letter_contact(
|
|
|
|
|
|
service_id=current_service.id,
|
|
|
|
|
|
letter_contact_id=letter_contact_id,
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_letter_contact_details', service_id=current_service.id))
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/sms-sender", methods=['GET'])
|
2018-03-01 10:37:55 +00:00
|
|
|
|
@user_has_permissions('manage_service', 'manage_api_keys')
|
2017-10-24 15:37:44 +01:00
|
|
|
|
def service_sms_senders(service_id):
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/sms-senders.html',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/sms-sender/add", methods=['GET', 'POST'])
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-10-24 15:37:44 +01:00
|
|
|
|
def service_add_sms_sender(service_id):
|
2017-10-30 14:30:43 +00:00
|
|
|
|
form = ServiceSmsSenderForm()
|
2018-10-26 17:31:49 +01:00
|
|
|
|
first_sms_sender = current_service.count_sms_senders == 0
|
2017-10-24 15:37:44 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
service_api_client.add_sms_sender(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
current_service.id,
|
2017-10-24 15:37:44 +01:00
|
|
|
|
sms_sender=form.sms_sender.data.replace('\r', '') or None,
|
|
|
|
|
|
is_default=first_sms_sender if first_sms_sender else form.is_default.data
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_sms_senders', service_id=service_id))
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/sms-sender/add.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
first_sms_sender=first_sms_sender)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-11-14 11:31:20 +00:00
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/sms-sender/<uuid:sms_sender_id>/edit",
|
2017-11-14 11:31:20 +00:00
|
|
|
|
methods=['GET', 'POST'],
|
|
|
|
|
|
endpoint="service_edit_sms_sender"
|
|
|
|
|
|
)
|
|
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/sms-sender/<uuid:sms_sender_id>/delete",
|
2017-11-14 11:31:20 +00:00
|
|
|
|
methods=['GET'],
|
|
|
|
|
|
endpoint="service_confirm_delete_sms_sender"
|
|
|
|
|
|
)
|
2018-03-01 10:30:17 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
2017-10-24 15:37:44 +01:00
|
|
|
|
def service_edit_sms_sender(service_id, sms_sender_id):
|
2018-10-26 17:31:49 +01:00
|
|
|
|
sms_sender = current_service.get_sms_sender(sms_sender_id)
|
2017-10-30 14:30:43 +00:00
|
|
|
|
is_inbound_number = sms_sender['inbound_number_id']
|
|
|
|
|
|
if is_inbound_number:
|
|
|
|
|
|
form = ServiceEditInboundNumberForm(is_default=sms_sender['is_default'])
|
|
|
|
|
|
else:
|
|
|
|
|
|
form = ServiceSmsSenderForm(**sms_sender)
|
|
|
|
|
|
|
2017-10-24 15:37:44 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
service_api_client.update_sms_sender(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
current_service.id,
|
2017-10-24 15:37:44 +01:00
|
|
|
|
sms_sender_id=sms_sender_id,
|
2017-10-30 14:30:43 +00:00
|
|
|
|
sms_sender=sms_sender['sms_sender'] if is_inbound_number else form.sms_sender.data.replace('\r', ''),
|
2017-10-24 15:37:44 +01:00
|
|
|
|
is_default=True if sms_sender['is_default'] else form.is_default.data
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_sms_senders', service_id=service_id))
|
2017-10-30 14:30:43 +00:00
|
|
|
|
|
|
|
|
|
|
form.is_default.data = sms_sender['is_default']
|
2018-11-16 17:05:59 +00:00
|
|
|
|
if (request.endpoint == "main.service_confirm_delete_sms_sender"):
|
|
|
|
|
|
flash("Are you sure you want to delete this text message sender?", 'delete')
|
2017-10-24 15:37:44 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/sms-sender/edit.html',
|
|
|
|
|
|
form=form,
|
2017-10-30 14:30:43 +00:00
|
|
|
|
sms_sender=sms_sender,
|
2017-11-14 11:31:20 +00:00
|
|
|
|
inbound_number=is_inbound_number,
|
2018-11-16 17:05:59 +00:00
|
|
|
|
sms_sender_id=sms_sender_id
|
2017-11-14 11:31:20 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route(
|
2019-11-04 11:07:55 +00:00
|
|
|
|
"/services/<uuid:service_id>/service-settings/sms-sender/<uuid:sms_sender_id>/delete",
|
2017-11-14 11:31:20 +00:00
|
|
|
|
methods=['POST'],
|
|
|
|
|
|
)
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def service_delete_sms_sender(service_id, sms_sender_id):
|
2018-04-26 15:09:37 +01:00
|
|
|
|
service_api_client.delete_sms_sender(
|
2018-07-20 08:42:01 +01:00
|
|
|
|
service_id=current_service.id,
|
2017-11-14 11:31:20 +00:00
|
|
|
|
sms_sender_id=sms_sender_id,
|
2017-10-30 14:30:43 +00:00
|
|
|
|
)
|
2017-11-14 11:31:20 +00:00
|
|
|
|
return redirect(url_for('.service_sms_senders', service_id=service_id))
|
2017-10-24 15:37:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-free-sms-allowance", methods=['GET', 'POST'])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2017-10-05 13:49:43 +01:00
|
|
|
|
def set_free_sms_allowance(service_id):
|
|
|
|
|
|
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceSMSAllowanceForm(free_sms_allowance=current_service.free_sms_fragment_limit)
|
2017-11-09 13:18:09 +00:00
|
|
|
|
|
2017-10-05 13:49:43 +01:00
|
|
|
|
if form.validate_on_submit():
|
2017-12-04 16:03:11 +00:00
|
|
|
|
billing_api_client.create_or_update_free_sms_fragment_limit(service_id, form.free_sms_allowance.data)
|
2017-11-09 13:18:09 +00:00
|
|
|
|
|
2017-10-05 13:49:43 +01:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-free-sms-allowance.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-19 17:19:32 +01:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-message-limit", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def set_message_limit(service_id):
|
|
|
|
|
|
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceMessageLimitForm(message_limit=current_service.message_limit)
|
2020-10-19 17:19:32 +01:00
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.update(message_limit=form.message_limit.data)
|
|
|
|
|
|
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-message-limit.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-21 14:30:35 +01:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-rate-limit", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def set_rate_limit(service_id):
|
|
|
|
|
|
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceRateLimitForm(rate_limit=current_service.rate_limit)
|
2020-10-21 14:30:35 +01:00
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.update(rate_limit=form.rate_limit.data)
|
|
|
|
|
|
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-rate-limit.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-email-branding", methods=['GET', 'POST'])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2018-02-07 10:30:49 +00:00
|
|
|
|
def service_set_email_branding(service_id):
|
|
|
|
|
|
email_branding = email_branding_client.get_all_email_branding()
|
2016-08-08 10:28:40 +01:00
|
|
|
|
|
2022-03-03 11:40:03 +00:00
|
|
|
|
form = AdminSetEmailBrandingForm(
|
2019-02-01 16:31:34 +00:00
|
|
|
|
all_branding_options=get_branding_as_value_and_label(email_branding),
|
|
|
|
|
|
current_branding=current_service.email_branding_id,
|
2018-08-31 17:21:12 +01:00
|
|
|
|
)
|
2016-08-08 10:28:40 +01:00
|
|
|
|
|
2018-08-02 14:46:01 +01:00
|
|
|
|
if form.validate_on_submit():
|
2018-08-31 17:31:26 +01:00
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.service_preview_email_branding',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
branding_style=form.branding_style.data,
|
|
|
|
|
|
))
|
2018-08-02 14:46:01 +01:00
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-email-branding.html',
|
|
|
|
|
|
form=form,
|
2019-02-06 17:32:13 +00:00
|
|
|
|
search_form=SearchByNameForm()
|
2018-08-02 14:46:01 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/preview-email-branding", methods=['GET', 'POST'])
|
2018-08-02 14:46:01 +01:00
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def service_preview_email_branding(service_id):
|
|
|
|
|
|
branding_style = request.args.get('branding_style', None)
|
|
|
|
|
|
|
2022-03-03 11:40:03 +00:00
|
|
|
|
form = AdminPreviewBrandingForm(branding_style=branding_style)
|
2018-08-02 14:46:01 +01:00
|
|
|
|
|
2016-08-08 10:28:40 +01:00
|
|
|
|
if form.validate_on_submit():
|
2018-11-05 16:03:11 +00:00
|
|
|
|
current_service.update(
|
2018-11-12 09:04:39 +00:00
|
|
|
|
email_branding=form.branding_style.data
|
2016-08-08 10:28:40 +01:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2016-08-12 12:37:18 +01:00
|
|
|
|
|
2016-08-08 10:28:40 +01:00
|
|
|
|
return render_template(
|
2018-08-02 14:46:01 +01:00
|
|
|
|
'views/service-settings/preview-email-branding.html',
|
2016-08-08 10:28:40 +01:00
|
|
|
|
form=form,
|
2018-08-02 14:46:01 +01:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
action=url_for('main.service_preview_email_branding', service_id=service_id),
|
2016-08-08 10:28:40 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/set-letter-branding", methods=['GET', 'POST'])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2019-02-01 16:34:54 +00:00
|
|
|
|
def service_set_letter_branding(service_id):
|
|
|
|
|
|
letter_branding = letter_branding_client.get_all_letter_branding()
|
2017-04-19 16:11:28 +01:00
|
|
|
|
|
2022-03-03 11:40:03 +00:00
|
|
|
|
form = AdminSetLetterBrandingForm(
|
2019-02-01 16:34:54 +00:00
|
|
|
|
all_branding_options=get_branding_as_value_and_label(letter_branding),
|
|
|
|
|
|
current_branding=current_service.letter_branding_id,
|
2018-11-05 12:16:38 +00:00
|
|
|
|
)
|
2017-04-19 16:11:28 +01:00
|
|
|
|
|
2019-02-15 14:47:39 +00:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.service_preview_letter_branding',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
branding_style=form.branding_style.data,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/set-letter-branding.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
search_form=SearchByNameForm()
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/preview-letter-branding", methods=['GET', 'POST'])
|
2019-02-15 14:47:39 +00:00
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def service_preview_letter_branding(service_id):
|
|
|
|
|
|
branding_style = request.args.get('branding_style')
|
|
|
|
|
|
|
2022-03-03 11:40:03 +00:00
|
|
|
|
form = AdminPreviewBrandingForm(branding_style=branding_style)
|
2019-02-15 14:47:39 +00:00
|
|
|
|
|
2017-04-19 16:11:28 +01:00
|
|
|
|
if form.validate_on_submit():
|
2018-11-05 16:03:11 +00:00
|
|
|
|
current_service.update(
|
2019-02-01 16:34:54 +00:00
|
|
|
|
letter_branding=form.branding_style.data
|
2017-04-19 16:11:28 +01:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
2019-02-15 14:47:39 +00:00
|
|
|
|
'views/service-settings/preview-letter-branding.html',
|
2017-04-19 16:11:28 +01:00
|
|
|
|
form=form,
|
2019-02-15 14:47:39 +00:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
action=url_for('main.service_preview_letter_branding', service_id=service_id),
|
2017-04-19 16:11:28 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/link-service-to-organisation", methods=['GET', 'POST'])
|
2018-02-27 16:45:20 +00:00
|
|
|
|
@user_is_platform_admin
|
2018-02-12 09:26:13 +00:00
|
|
|
|
def link_service_to_organisation(service_id):
|
|
|
|
|
|
|
2019-05-23 17:17:26 +01:00
|
|
|
|
all_organisations = organisations_client.get_organisations()
|
2018-02-12 09:26:13 +00:00
|
|
|
|
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminSetOrganisationForm(
|
2019-05-23 17:17:26 +01:00
|
|
|
|
choices=convert_dictionary_to_wtforms_choices_format(all_organisations, 'id', 'name'),
|
2020-03-20 08:42:33 +00:00
|
|
|
|
organisations=current_service.organisation_id
|
2018-02-12 09:26:13 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2020-03-20 08:42:33 +00:00
|
|
|
|
if form.organisations.data != current_service.organisation_id:
|
2018-02-12 09:26:13 +00:00
|
|
|
|
organisations_client.update_service_organisation(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
form.organisations.data
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/link-service-to-organisation.html',
|
2019-05-23 17:17:26 +01:00
|
|
|
|
has_organisations=all_organisations,
|
2018-02-12 09:26:13 +00:00
|
|
|
|
form=form,
|
2019-07-16 16:52:19 +01:00
|
|
|
|
search_form=SearchByNameForm(),
|
2018-02-12 09:26:13 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-28 09:45:59 +00:00
|
|
|
|
def create_email_branding_zendesk_ticket(form_option_selected, detail=None):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
form = ChooseEmailBrandingForm(current_service)
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
|
|
|
|
|
ticket_message = render_template(
|
|
|
|
|
|
'support-tickets/branding-request.txt',
|
|
|
|
|
|
current_branding=current_service.email_branding_name,
|
|
|
|
|
|
branding_requested=dict(form.options.choices)[form_option_selected],
|
|
|
|
|
|
detail=detail,
|
|
|
|
|
|
)
|
|
|
|
|
|
ticket = NotifySupportTicket(
|
|
|
|
|
|
subject=f'Email branding request - {current_service.name}',
|
|
|
|
|
|
message=ticket_message,
|
|
|
|
|
|
ticket_type=NotifySupportTicket.TYPE_QUESTION,
|
|
|
|
|
|
user_name=current_user.name,
|
|
|
|
|
|
user_email=current_user.email_address,
|
|
|
|
|
|
org_id=current_service.organisation_id,
|
|
|
|
|
|
org_type=current_service.organisation_type,
|
|
|
|
|
|
service_id=current_service.id
|
|
|
|
|
|
)
|
|
|
|
|
|
zendesk_client.send_ticket_to_zendesk(ticket)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-02 16:44:32 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding", methods=['GET', 'POST'])
|
2018-05-18 14:05:48 +01:00
|
|
|
|
@user_has_permissions('manage_service')
|
2022-01-19 15:39:05 +00:00
|
|
|
|
def email_branding_request(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
form = ChooseEmailBrandingForm(current_service)
|
2022-01-19 15:39:05 +00:00
|
|
|
|
branding_name = current_service.email_branding_name
|
|
|
|
|
|
if form.validate_on_submit():
|
2022-03-02 15:36:28 +00:00
|
|
|
|
return redirect(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
f'.email_branding_{form.options.data}',
|
|
|
|
|
|
service_id=current_service.id,
|
2022-01-28 09:45:59 +00:00
|
|
|
|
)
|
2022-03-02 15:36:28 +00:00
|
|
|
|
)
|
2022-01-19 15:39:05 +00:00
|
|
|
|
|
|
|
|
|
|
return render_template(
|
2022-01-19 16:26:57 +00:00
|
|
|
|
'views/service-settings/branding/email-branding-options.html',
|
2022-01-19 15:39:05 +00:00
|
|
|
|
form=form,
|
|
|
|
|
|
branding_name=branding_name,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-03-03 12:05:44 +00:00
|
|
|
|
def check_email_branding_allowed_for_service(branding):
|
2022-02-02 16:21:36 +00:00
|
|
|
|
allowed_branding_for_service = dict(
|
2022-03-23 15:22:54 +00:00
|
|
|
|
get_email_branding_choices(current_service)
|
2022-02-02 16:21:36 +00:00
|
|
|
|
)
|
2022-03-23 15:22:54 +00:00
|
|
|
|
|
2022-02-02 16:21:36 +00:00
|
|
|
|
if branding not in allowed_branding_for_service:
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-28 09:45:59 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding/govuk", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def email_branding_govuk(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
check_email_branding_allowed_for_service('govuk')
|
2022-02-03 11:31:25 +00:00
|
|
|
|
|
|
|
|
|
|
if request.method == 'POST':
|
2022-02-22 11:37:40 +00:00
|
|
|
|
current_service.update(email_branding=None)
|
2022-02-03 11:31:25 +00:00
|
|
|
|
|
2022-02-22 11:37:40 +00:00
|
|
|
|
flash('You’ve updated your email branding', 'default')
|
2022-02-03 11:31:25 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template('views/service-settings/branding/email-branding-govuk.html')
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
2022-02-03 11:31:25 +00:00
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding/govuk-and-org", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def email_branding_govuk_and_org(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
check_email_branding_allowed_for_service('govuk_and_org')
|
2022-02-02 16:21:36 +00:00
|
|
|
|
|
2022-01-28 09:45:59 +00:00
|
|
|
|
if request.method == 'POST':
|
2022-02-17 14:52:24 +00:00
|
|
|
|
create_email_branding_zendesk_ticket('govuk_and_org')
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
|
|
|
|
|
flash('Thanks for your branding request. We’ll get back to you within one working day.', 'default')
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
|
|
|
|
|
|
2022-02-17 14:52:24 +00:00
|
|
|
|
return render_template('views/service-settings/branding/email-branding-govuk-org.html')
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding/nhs", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def email_branding_nhs(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
check_email_branding_allowed_for_service('nhs')
|
2022-02-02 16:21:36 +00:00
|
|
|
|
|
2022-01-28 09:45:59 +00:00
|
|
|
|
if request.method == 'POST':
|
2022-03-22 17:20:02 +00:00
|
|
|
|
current_service.update(email_branding=NHS_EMAIL_BRANDING_ID)
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
2022-02-22 11:37:40 +00:00
|
|
|
|
flash('You’ve updated your email branding', 'default')
|
2022-01-28 09:45:59 +00:00
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
|
|
|
|
|
|
2022-03-22 17:20:02 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/branding/email-branding-nhs.html',
|
|
|
|
|
|
nhs_branding_id=NHS_EMAIL_BRANDING_ID
|
|
|
|
|
|
)
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding/organisation", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def email_branding_organisation(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
check_email_branding_allowed_for_service('organisation')
|
2022-02-02 16:21:36 +00:00
|
|
|
|
|
2022-01-28 09:45:59 +00:00
|
|
|
|
if request.method == 'POST':
|
|
|
|
|
|
create_email_branding_zendesk_ticket('organisation')
|
|
|
|
|
|
|
|
|
|
|
|
flash('Thanks for your branding request. We’ll get back to you within one working day.', 'default')
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template('views/service-settings/branding/email-branding-organisation.html')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/email-branding/something-else", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def email_branding_something_else(service_id):
|
|
|
|
|
|
form = SomethingElseBrandingForm()
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
create_email_branding_zendesk_ticket('something_else', detail=form.something_else.data)
|
|
|
|
|
|
|
|
|
|
|
|
flash('Thanks for your branding request. We’ll get back to you within one working day.', 'default')
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=current_service.id))
|
|
|
|
|
|
|
2022-03-02 15:36:28 +00:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/branding/email-branding-something-else.html',
|
|
|
|
|
|
form=form,
|
2022-03-22 16:38:51 +00:00
|
|
|
|
branding_options=ChooseEmailBrandingForm(current_service)
|
2022-03-02 15:36:28 +00:00
|
|
|
|
)
|
2022-01-28 09:45:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
2022-02-02 16:44:32 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/service-settings/letter-branding", methods=['GET', 'POST'])
|
2022-01-19 15:39:05 +00:00
|
|
|
|
@user_has_permissions('manage_service')
|
|
|
|
|
|
def letter_branding_request(service_id):
|
2022-03-03 12:05:44 +00:00
|
|
|
|
form = ChooseLetterBrandingForm(current_service)
|
2020-01-23 15:54:13 +00:00
|
|
|
|
from_template = request.args.get('from_template')
|
2022-01-19 15:39:05 +00:00
|
|
|
|
branding_name = current_service.letter_branding_name
|
2018-05-18 14:05:48 +01:00
|
|
|
|
if form.validate_on_submit():
|
2021-10-26 18:06:26 +01:00
|
|
|
|
ticket_message = render_template(
|
|
|
|
|
|
'support-tickets/branding-request.txt',
|
|
|
|
|
|
current_branding=branding_name,
|
|
|
|
|
|
branding_requested=dict(form.options.choices)[form.options.data],
|
|
|
|
|
|
detail=form.something_else.data,
|
|
|
|
|
|
)
|
2021-09-24 09:24:13 +01:00
|
|
|
|
ticket = NotifySupportTicket(
|
2022-01-19 15:39:05 +00:00
|
|
|
|
subject=f'Letter branding request - {current_service.name}',
|
2021-10-26 18:06:26 +01:00
|
|
|
|
message=ticket_message,
|
2021-09-24 09:24:13 +01:00
|
|
|
|
ticket_type=NotifySupportTicket.TYPE_QUESTION,
|
2018-05-18 14:05:48 +01:00
|
|
|
|
user_name=current_user.name,
|
2021-09-24 09:24:13 +01:00
|
|
|
|
user_email=current_user.email_address,
|
|
|
|
|
|
org_id=current_service.organisation_id,
|
|
|
|
|
|
org_type=current_service.organisation_type,
|
|
|
|
|
|
service_id=current_service.id
|
2018-05-18 14:05:48 +01:00
|
|
|
|
)
|
2021-09-24 09:24:13 +01:00
|
|
|
|
zendesk_client.send_ticket_to_zendesk(ticket)
|
2018-05-18 14:05:48 +01:00
|
|
|
|
flash((
|
|
|
|
|
|
'Thanks for your branding request. We’ll get back to you '
|
|
|
|
|
|
'within one working day.'
|
|
|
|
|
|
), 'default')
|
2020-01-23 15:54:13 +00:00
|
|
|
|
return redirect(url_for(
|
|
|
|
|
|
'.view_template', service_id=current_service.id, template_id=from_template
|
|
|
|
|
|
) if from_template else url_for('.service_settings', service_id=current_service.id))
|
2018-05-18 14:05:48 +01:00
|
|
|
|
|
|
|
|
|
|
return render_template(
|
2022-01-19 16:26:57 +00:00
|
|
|
|
'views/service-settings/branding/letter-branding-options.html',
|
2018-05-18 14:05:48 +01:00
|
|
|
|
form=form,
|
2020-01-21 16:02:41 +00:00
|
|
|
|
branding_name=branding_name,
|
2020-01-23 15:54:13 +00:00
|
|
|
|
from_template=from_template
|
2018-05-18 14:05:48 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/data-retention", methods=['GET'])
|
2018-07-13 16:47:26 +01:00
|
|
|
|
@user_is_platform_admin
|
2018-07-17 14:39:04 +01:00
|
|
|
|
def data_retention(service_id):
|
2018-10-26 17:31:49 +01:00
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/data-retention.html',
|
|
|
|
|
|
)
|
2018-07-17 14:39:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/data-retention/add", methods=['GET', 'POST'])
|
2018-07-17 14:39:04 +01:00
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def add_data_retention(service_id):
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceAddDataRetentionForm()
|
2018-07-17 14:39:04 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
service_api_client.create_service_data_retention(service_id,
|
|
|
|
|
|
form.notification_type.data,
|
|
|
|
|
|
form.days_of_retention.data)
|
|
|
|
|
|
return redirect(url_for('.data_retention', service_id=service_id))
|
2018-07-13 16:47:26 +01:00
|
|
|
|
return render_template(
|
2018-07-17 14:39:04 +01:00
|
|
|
|
'views/service-settings/data-retention/add.html',
|
|
|
|
|
|
form=form
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-11-04 11:07:55 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/data-retention/<uuid:data_retention_id>/edit", methods=['GET', 'POST'])
|
2018-07-17 14:39:04 +01:00
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def edit_data_retention(service_id, data_retention_id):
|
2018-10-26 17:31:49 +01:00
|
|
|
|
data_retention_item = current_service.get_data_retention_item(data_retention_id)
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminServiceEditDataRetentionForm(days_of_retention=data_retention_item['days_of_retention'])
|
2018-07-17 14:39:04 +01:00
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
service_api_client.update_service_data_retention(service_id, data_retention_id, form.days_of_retention.data)
|
|
|
|
|
|
return redirect(url_for('.data_retention', service_id=service_id))
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/data-retention/edit.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
data_retention_id=data_retention_id,
|
2018-07-18 15:31:34 +01:00
|
|
|
|
notification_type=data_retention_item['notification_type']
|
2018-07-13 16:47:26 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-14 18:00:44 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/notes", methods=['GET', 'POST'])
|
2021-01-25 14:50:49 +00:00
|
|
|
|
@user_is_platform_admin
|
2021-01-14 18:00:44 +00:00
|
|
|
|
def edit_service_notes(service_id):
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminNotesForm(notes=current_service.notes)
|
2021-01-14 18:00:44 +00:00
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
|
|
|
|
|
|
if form.notes.data == current_service.notes:
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
2021-01-19 18:13:03 +00:00
|
|
|
|
current_service.update(
|
|
|
|
|
|
notes=form.notes.data
|
|
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
2021-01-14 18:00:44 +00:00
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/edit-service-notes.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-25 14:52:07 +00:00
|
|
|
|
@main.route("/services/<uuid:service_id>/edit-billing-details", methods=['GET', 'POST'])
|
|
|
|
|
|
@user_is_platform_admin
|
|
|
|
|
|
def edit_service_billing_details(service_id):
|
2022-03-15 10:50:18 +00:00
|
|
|
|
form = AdminBillingDetailsForm(
|
2021-01-26 10:41:22 +00:00
|
|
|
|
billing_contact_email_addresses=current_service.billing_contact_email_addresses,
|
|
|
|
|
|
billing_contact_names=current_service.billing_contact_names,
|
2021-01-25 15:40:49 +00:00
|
|
|
|
billing_reference=current_service.billing_reference,
|
2021-01-27 18:20:25 +00:00
|
|
|
|
purchase_order_number=current_service.purchase_order_number,
|
|
|
|
|
|
notes=current_service.notes,
|
2021-01-25 15:40:49 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
|
|
|
|
|
current_service.update(
|
2021-01-26 10:41:22 +00:00
|
|
|
|
billing_contact_email_addresses=form.billing_contact_email_addresses.data,
|
|
|
|
|
|
billing_contact_names=form.billing_contact_names.data,
|
2021-01-25 15:40:49 +00:00
|
|
|
|
billing_reference=form.billing_reference.data,
|
2021-01-27 18:20:25 +00:00
|
|
|
|
purchase_order_number=form.purchase_order_number.data,
|
|
|
|
|
|
notes=form.notes.data,
|
2021-01-25 15:40:49 +00:00
|
|
|
|
)
|
|
|
|
|
|
return redirect(url_for('.service_settings', service_id=service_id))
|
|
|
|
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
|
|
'views/service-settings/edit-service-billing-details.html',
|
|
|
|
|
|
form=form,
|
|
|
|
|
|
)
|
2021-01-25 14:52:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
2018-02-07 10:30:49 +00:00
|
|
|
|
def get_branding_as_value_and_label(email_branding):
|
2016-08-08 10:28:40 +01:00
|
|
|
|
return [
|
2018-02-07 10:30:49 +00:00
|
|
|
|
(branding['id'], branding['name'])
|
|
|
|
|
|
for branding in email_branding
|
2016-08-08 10:28:40 +01:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-12 09:26:13 +00:00
|
|
|
|
def convert_dictionary_to_wtforms_choices_format(dictionary, value, label):
|
|
|
|
|
|
return [
|
|
|
|
|
|
(item[value], item[label]) for item in dictionary
|
|
|
|
|
|
]
|
2018-08-09 11:59:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def check_contact_details_type(contact_details):
|
|
|
|
|
|
if contact_details.startswith('http'):
|
|
|
|
|
|
return 'url'
|
|
|
|
|
|
elif '@' in contact_details:
|
|
|
|
|
|
return 'email_address'
|
|
|
|
|
|
else:
|
|
|
|
|
|
return 'phone_number'
|