-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.py
executable file
·77 lines (57 loc) · 1.98 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
#!/usr/bin/env python3
import hashlib
import logging
import os
import boto
import boto.s3.connection
import boto.s3.key
import flask
from flask import request
import cleanup_svg
import boto_secrets
app = flask.Flask(__name__)
app.logger.setLevel(logging.INFO)
root = os.path.realpath(os.path.dirname(__file__))
@app.route('/', methods=['GET'])
def editor():
return flask.render_template('editor.html')
@app.route('/svg', methods=['POST'])
def svg():
"""The external endpoint accessed to render a graphie
Returns a web+graphie link as the response.
"""
js = request.form['js']
svg = request.form['svg']
other_data = request.form['other_data']
hash = hashlib.sha1(js.encode('utf-8')).hexdigest()
_maybe_upload_to_s3('%s.js' % hash, js, 'application/javascript')
_maybe_upload_to_s3('%s-data.json' % hash,
_jsonp_wrap(other_data, 'svgData%s' % hash),
'application/json')
svg_url = _maybe_upload_to_s3('%s.svg' % hash, cleanup_svg.cleanup_svg(svg),
'image/svg+xml')
return (svg_url.
replace("https://", "web+graphie://").
replace(".svg", "").
replace(":443", ""))
def _jsonp_wrap(data, func_name):
return '%s(%s);' % (func_name, data)
def _maybe_upload_to_s3(key, data, mimetype):
conn = boto.s3.connection.S3Connection(
boto_secrets.aws_access_key_id,
boto_secrets.aws_secret_access_key,
)
bucket = conn.get_bucket(boto_secrets.aws_s3_bucket, validate=False)
k = boto.s3.key.Key(bucket)
k.key = key
if k.exists():
app.logger.info('File already exists, skipping upload: %s' % key)
else:
k.set_contents_from_string(
data,
headers={'Content-Type': mimetype},
policy='public-read',
)
return k.generate_url(expires_in=0, query_auth=False)
if __name__ == "__main__":
app.run(debug=True, port=5001, host='::')