2019-05-22 17:30:35 +01:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
Revision ID: 0294_add_verify_reply_to
|
|
|
|
|
|
Revises: 0293_drop_complaint_fk
|
|
|
|
|
|
Create Date: 2019-05-22 16:58:52.929661
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
|
|
|
|
from alembic import op
|
|
|
|
|
|
from flask import current_app
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
revision = '0294_add_verify_reply_to'
|
|
|
|
|
|
down_revision = '0293_drop_complaint_fk'
|
|
|
|
|
|
|
|
|
|
|
|
email_template_id = "a42f1d17-9404-46d5-a647-d013bdfca3e1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
|
|
|
|
|
template_insert = """
|
|
|
|
|
|
INSERT INTO templates (id, name, template_type, created_at, content, archived, service_id, subject,
|
|
|
|
|
|
created_by_id, version, process_type, hidden)
|
|
|
|
|
|
VALUES ('{}', '{}', '{}', '{}', '{}', False, '{}', '{}', '{}', 1, '{}', false)
|
|
|
|
|
|
"""
|
|
|
|
|
|
template_history_insert = """
|
|
|
|
|
|
INSERT INTO templates_history (id, name, template_type, created_at, content, archived, service_id, subject,
|
|
|
|
|
|
created_by_id, version, process_type, hidden)
|
|
|
|
|
|
VALUES ('{}', '{}', '{}', '{}', '{}', False, '{}', '{}', '{}', 1, '{}', false)
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
email_template_content = '\n'.join([
|
|
|
|
|
|
"Hi,",
|
|
|
|
|
|
"",
|
|
|
|
|
|
"This address has been provided as a reply-to email address for a GOV.UK Notify account.",
|
|
|
|
|
|
"Any replies from users to emails they receive through GOV.UK Notify will come back to this email address.",
|
|
|
|
|
|
"",
|
|
|
|
|
|
"This is just a quick check to make sure the address is valid.",
|
|
|
|
|
|
"",
|
|
|
|
|
|
"No need to reply.",
|
|
|
|
|
|
"",
|
|
|
|
|
|
"Thanks",
|
|
|
|
|
|
"",
|
|
|
|
|
|
"GOV.UK Notify team",
|
|
|
|
|
|
"https://www.gov.uk/notify"
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
email_template_name = "Verify email reply-to address for a service"
|
|
|
|
|
|
email_template_subject = 'Your GOV.UK Notify reply-to email address'
|
|
|
|
|
|
|
|
|
|
|
|
op.execute(
|
|
|
|
|
|
template_history_insert.format(
|
|
|
|
|
|
email_template_id,
|
|
|
|
|
|
email_template_name,
|
|
|
|
|
|
'email',
|
|
|
|
|
|
datetime.utcnow(),
|
|
|
|
|
|
email_template_content,
|
|
|
|
|
|
current_app.config['NOTIFY_SERVICE_ID'],
|
|
|
|
|
|
email_template_subject,
|
|
|
|
|
|
current_app.config['NOTIFY_USER_ID'],
|
|
|
|
|
|
'normal'
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
op.execute(
|
|
|
|
|
|
template_insert.format(
|
|
|
|
|
|
email_template_id,
|
|
|
|
|
|
email_template_name,
|
|
|
|
|
|
'email',
|
|
|
|
|
|
datetime.utcnow(),
|
|
|
|
|
|
email_template_content,
|
|
|
|
|
|
current_app.config['NOTIFY_SERVICE_ID'],
|
|
|
|
|
|
email_template_subject,
|
|
|
|
|
|
current_app.config['NOTIFY_USER_ID'],
|
|
|
|
|
|
'normal'
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2019-06-26 18:33:24 +01:00
|
|
|
|
# If you are copying this migration, please remember about an insert to TemplateRedacted,
|
|
|
|
|
|
# which was not originally included here either by mistake or because it was before TemplateRedacted existed
|
|
|
|
|
|
# op.execute(
|
|
|
|
|
|
# """
|
|
|
|
|
|
# INSERT INTO template_redacted (template_id, redact_personalisation, updated_at, updated_by_id)
|
|
|
|
|
|
# VALUES ('{}', '{}', '{}', '{}')
|
|
|
|
|
|
# ;
|
|
|
|
|
|
# """.format(email_template_id, False, datetime.utcnow(), current_app.config['NOTIFY_USER_ID'])
|
|
|
|
|
|
# )
|
|
|
|
|
|
|
2019-05-22 17:30:35 +01:00
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
2019-05-28 15:25:06 +01:00
|
|
|
|
op.execute("DELETE FROM notifications WHERE template_id = '{}'".format(email_template_id))
|
|
|
|
|
|
op.execute("DELETE FROM notification_history WHERE template_id = '{}'".format(email_template_id))
|
2019-06-26 18:33:24 +01:00
|
|
|
|
op.execute("DELETE FROM template_redacted WHERE template_id = '{}'".format(email_template_id))
|
2019-06-28 11:22:12 +01:00
|
|
|
|
op.execute("DELETE FROM templates_history WHERE id = '{}'".format(email_template_id))
|
|
|
|
|
|
op.execute("DELETE FROM templates WHERE id = '{}'".format(email_template_id))
|