2019-10-15 15:55:17 +01:00
|
|
|
import json
|
|
|
|
|
|
2019-09-09 10:59:32 +01:00
|
|
|
from boto3 import resource
|
2019-09-06 17:10:48 +01:00
|
|
|
from flask import current_app
|
|
|
|
|
from notifications_utils.s3 import s3upload as utils_s3upload
|
2019-11-08 09:56:59 +00:00
|
|
|
from notifications_utils.sanitise_text import SanitiseASCII
|
2019-09-06 17:10:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_transient_letter_file_location(service_id, upload_id):
|
|
|
|
|
return 'service-{}/{}.pdf'.format(service_id, upload_id)
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 09:56:59 +00:00
|
|
|
def upload_letter_to_s3(
|
|
|
|
|
data,
|
|
|
|
|
*,
|
|
|
|
|
file_location,
|
|
|
|
|
status,
|
|
|
|
|
page_count,
|
|
|
|
|
filename,
|
|
|
|
|
message=None,
|
|
|
|
|
invalid_pages=None,
|
|
|
|
|
recipient=None
|
|
|
|
|
):
|
2019-10-15 15:55:17 +01:00
|
|
|
metadata = {
|
|
|
|
|
'status': status,
|
|
|
|
|
'page_count': str(page_count),
|
|
|
|
|
'filename': filename,
|
|
|
|
|
}
|
|
|
|
|
if message:
|
|
|
|
|
metadata['message'] = message
|
|
|
|
|
if invalid_pages:
|
|
|
|
|
metadata['invalid_pages'] = json.dumps(invalid_pages)
|
2019-11-08 09:56:59 +00:00
|
|
|
if recipient:
|
|
|
|
|
metadata['recipient'] = format_recipient(recipient)
|
2019-10-15 15:55:17 +01:00
|
|
|
|
2019-09-06 17:10:48 +01:00
|
|
|
utils_s3upload(
|
|
|
|
|
filedata=data,
|
|
|
|
|
region=current_app.config['AWS_REGION'],
|
|
|
|
|
bucket_name=current_app.config['TRANSIENT_UPLOADED_LETTERS'],
|
|
|
|
|
file_location=file_location,
|
2019-10-15 15:55:17 +01:00
|
|
|
metadata=metadata,
|
2019-09-06 17:10:48 +01:00
|
|
|
)
|
2019-09-09 10:59:32 +01:00
|
|
|
|
|
|
|
|
|
2019-10-07 15:22:11 +01:00
|
|
|
def get_letter_pdf_and_metadata(service_id, file_id):
|
|
|
|
|
file_location = get_transient_letter_file_location(service_id, file_id)
|
2019-09-09 10:59:32 +01:00
|
|
|
s3 = resource('s3')
|
|
|
|
|
s3_object = s3.Object(current_app.config['TRANSIENT_UPLOADED_LETTERS'], file_location).get()
|
|
|
|
|
|
|
|
|
|
pdf = s3_object['Body'].read()
|
|
|
|
|
metadata = s3_object['Metadata']
|
|
|
|
|
|
|
|
|
|
return pdf, metadata
|
2019-10-07 15:22:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_letter_metadata(service_id, file_id):
|
|
|
|
|
file_location = get_transient_letter_file_location(service_id, file_id)
|
|
|
|
|
s3 = resource('s3')
|
|
|
|
|
s3_object = s3.Object(current_app.config['TRANSIENT_UPLOADED_LETTERS'], file_location).get()
|
|
|
|
|
|
|
|
|
|
return s3_object['Metadata']
|
2019-11-08 09:56:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def format_recipient(address):
|
|
|
|
|
'''
|
|
|
|
|
To format the recipient we need to:
|
|
|
|
|
- remove new line characters
|
|
|
|
|
- remove whitespace around the lines
|
|
|
|
|
- join the address lines, separated by a comma
|
|
|
|
|
- convert the string to ASCII (S3 metadata must be stored as ASCII)
|
|
|
|
|
'''
|
|
|
|
|
stripped_address_lines_no_trailing_commas = [
|
|
|
|
|
line.lstrip().rstrip(' ,')
|
|
|
|
|
for line in address.splitlines() if line
|
|
|
|
|
]
|
|
|
|
|
one_line_address = ', '.join(stripped_address_lines_no_trailing_commas)
|
|
|
|
|
|
|
|
|
|
return SanitiseASCII.encode(one_line_address)
|