-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.py
90 lines (76 loc) · 2.76 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import json
import logging
import os
import tempfile
from executor import execute
from urllib.parse import urlparse
from werkzeug.wrappers import Request, Response
from werkzeug.wsgi import wrap_file
logger = logging.getLogger(__name__)
@Request.application
def application(request):
"""
To use this application, the user must send a POST request with
base64 or form encoded encoded HTML content and the wkhtmltopdf Options in
request data, with keys 'base64_html' and 'options'.
The application will return a response with the PDF file.
"""
parsed = urlparse(request.url)
if request.method == 'GET' and parsed.path == '/ping':
return Response(
status=200
)
if request.method != 'POST':
return Response(
status=405
)
request_is_json = request.content_type == 'application/json'
with tempfile.NamedTemporaryFile(suffix='.html') as source_file:
if request_is_json:
# If a JSON payload is there, all data is in the payload
payload = json.loads(request.data)
try:
source_file.write(payload['contents'].encode('utf-8'))
except KeyError:
logger.warn('The request content is not specified')
return Response(
status=400
)
options = payload.get('options', {})
elif request.files:
# First check if any files were uploaded
source_file.write(request.files['file'].read())
# Load any options that may have been provided in options
options = json.loads(request.form.get('options', '{}'))
else:
logging.warn('The request was neither json, not had files, cannot convert.')
return Response(
status=400
)
source_file.flush()
# Evaluate argument to run with subprocess
args = ['wkhtmltopdf']
# Add Global Options
options.update({
'quiet': '',
'disable-javascript': ''
})
for option, value in options.items():
args.append('--%s' % option)
if value:
args.append('"%s"' % value)
# Add source file name and output file name
file_name = source_file.name
args += [file_name, file_name + ".pdf"]
# Execute the command using executor
execute(' '.join(args))
result = file_name + '.pdf'
response = Response(
wrap_file(request.environ, open(result, 'rb')),
mimetype='application/pdf',
)
os.remove(result)
return response
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('127.0.0.1', 8080, application)