forked from anru/rsted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.py
executable file
·142 lines (114 loc) · 4.1 KB
/
application.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env python
# all the imports
import os, sys
reload(sys)
sys.setdefaultencoding('utf-8')
from flask import Flask, request, render_template, make_response, url_for, redirect
from rsted.html import rst2html as _rst2html
from rsted.pdf import rst2pdf as _rst2pdf
from flaskext.redis import RedisManager
from flaskext.helpers import render_html
import bz2
# handle relative path references by changing to project directory
run_from = os.path.dirname(os.path.abspath(sys.argv[0]))
if run_from != os.path.curdir:
os.chdir(run_from)
UPLOAD_FOLDER = 'uploads/'
ALLOWED_EXTENSIONS = set(['rst'])
# create our little application :)
app = Flask(__name__)
app.config.from_pyfile(os.environ.get('RSTED_CONF', 'settings.py'))
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
redis = RedisManager(app).get_instance()
REDIS_EXPIRE = app.config.setdefault('REDIS_EXPIRE', 60*60*24*30*6) # Default 6 months
REDIS_PREFIX = app.config.setdefault('REDIS_PREFIX', 'rst_')
def view_is_active(view_name):
if request.path == url_for(view_name):
return 'active'
return ''
@app.context_processor
def ctx_pro():
return {
'MEDIA_URL': '/static/',
'is_active': view_is_active
}
@app.route("/")
@render_html('index.html')
def index():
yield 'js_params', {'theme': request.args.get('theme', '')}
saved_doc_id = request.args.get('n')
if saved_doc_id:
rst = redis.get('%s%s' % (REDIS_PREFIX, saved_doc_id))
if rst:
yield 'rst', rst
yield 'document', saved_doc_id
@app.route('/about/')
def about():
return render_template('about.html')
@app.route('/convert/')
def convert():
return render_template('convert.html')
@app.route('/srv/rst2html/', methods=['POST', 'GET'])
def rst2html():
rst = request.form.get('rst', '')
theme = request.form.get('theme')
if theme == 'basic':
theme = None
html = _rst2html(rst, theme=theme)
return html
@app.route('/srv/rst2pdf/', methods=['POST'])
def rst2pdf():
rst = request.form.get('rst', '')
theme = request.form.get('theme')
if theme == 'basic':
theme = None
pdf = _rst2pdf(rst, theme=theme)
responce = make_response(pdf)
responce.headers['Content-Type'] = 'application/pdf'
responce.headers['Content-Disposition'] = 'attachment; filename="rst.pdf"'
responce.headers['Content-Transfer-Encoding'] = 'binary'
return responce
@app.route('/srv/save_rst/', methods=['POST'])
def save_rst():
rst = request.form.get('rst')
if not rst:
return ''
from hashlib import md5
md5sum = md5(rst).hexdigest()
redis_key = '%s%s' % (REDIS_PREFIX, md5sum)
if redis.setnx(redis_key, rst) and REDIS_EXPIRE:
redis.expire(redis_key, REDIS_EXPIRE)
response = make_response(md5sum)
response.headers['Content-Type'] = 'text/plain'
return response
@app.route('/srv/del_rst/', methods=['GET'])
def del_rst():
saved_id = request.args.get('n')
if saved_id:
redis_key = '%s%s' % (REDIS_PREFIX, saved_id)
redis.delete(redis_key)
response = make_response()
response.headers['Content-Type'] = 'text/plain'
return response
def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
@app.route('/srv/convert/', methods=['POST'])
def convert_file():
if request.method == 'POST':
file = request.files['rstFile']
rst = ''
convert_to = request.form.get('convert_to')
if file and allowed_file(file.filename):
rst = file.read()
if convert_to == 'html':
html = _rst2html(rst, theme="nature");
html_bz = bz2.compress(html)
response = make_response(html_bz)
response.headers["Content-Disposition"] = "attachment; filename=" + file.filename + ".html.bz2"
return response
else if convert_to == 'pdf':
return redirect(url_for('convert', reason='unsupported format'))
return redirect(url_for('convert'))
if __name__ == '__main__':
app.run(host=app.config.get('HOST', '0.0.0.0'),
port=app.config.get('PORT', 5000))