-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
60 lines (46 loc) · 1.79 KB
/
app.py
File metadata and controls
60 lines (46 loc) · 1.79 KB
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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
WSGI APP to convert wkhtmltopdf As a webservice
:copyright: (c) 2013 by Openlabs Technologies & Consulting (P) Limited
:license: BSD, see LICENSE for more details.
"""
import tempfile
import zipfile
from werkzeug.wsgi import wrap_file
from werkzeug.wrappers import Request, Response
from executor import execute
@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.
"""
if request.method != 'POST':
return Response('alive')
with tempfile.NamedTemporaryFile(suffix='.zip') as source_file:
source_file.write(request.files['file'].read())
source_file.flush()
with tempfile.TemporaryDirectory() as tmpdirname:
with zipfile.ZipFile(source_file.name, 'r') as zip_ref:
zip_ref.extractall(tmpdirname)
args = ['pdfunite']
for file_name in zip_ref.namelist():
args += [tmpdirname + file_name]
output_file = tmpdirname + '/output.pdf'
args += [output_file]
cmd = ' '.join(args)
execute(cmd)
pdf_file = open(output_file)
return Response(
wrap_file(request.environ, pdf_file),
mimetype='application/pdf',
direct_passthrough=True,
)
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple(
'127.0.0.1', 5000, application, use_debugger=True, use_reloader=True
)