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
|
#!/usr/bin/env python3
import os
import argparse
import requests
from flask import Flask, render_template, send_from_directory, request, \
url_for, abort, g, redirect, jsonify
app = Flask(__name__)
app.config.from_object(__name__)
### Views ###################################################################
@app.route('/health', methods=['GET'])
def health():
return jsonify({'ok': True})
@app.route('/work/create', methods=['GET'])
def work_create():
return render_template('work_add.html')
@app.route('/work/random', methods=['GET'])
def work_random():
work = {
"title": "Structure and Interpretation",
"work_type": "book",
"date": None,
"contributors": [
{"name": "Alyssa P. Hacker"},
],
"primary": {
"title": "Structure and Interpretation",
"release_type": "online",
"date": "2000-01-01",
"doi": "10.491/599.sdo14",
},
"releases": [
]
}
return render_template('work_view.html', work=work, primary=work['primary'])
@app.route('/work/<work_id>/random', methods=['GET'])
def work_view(work_id):
return render_template('work_view.html')
### Static Routes ###########################################################
@app.route('/', methods=['GET'])
def homepage():
return render_template('home.html')
@app.route('/about', methods=['GET'])
def aboutpage():
return render_template('about.html')
@app.route('/robots.txt', methods=['GET'])
def robots():
return send_from_directory(os.path.join(app.root_path, 'static'),
'robots.txt',
mimetype='text/plain')
### Entry Point #############################################################
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--debug',
action='store_true',
help="enable debugging interface")
parser.add_argument('--host',
default="127.0.0.1",
help="listen on this host/IP")
parser.add_argument('--port',
type=int,
default=5050,
help="listen on this port")
parser.add_argument('--backend-api',
default="localhost:6060",
help="backend API to connect to")
args = parser.parse_args()
app.run(debug=args.debug, host=args.host, port=args.port)
if __name__ == '__main__':
main()
|