-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflask-app.py
111 lines (89 loc) · 3 KB
/
flask-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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import json
from flask import Flask
from flask import request
from flask import render_template
from helpers.careerbuilder import CareerBuilderHelper
from helpers.onetonline import OnetOnlineHelper
app = Flask(__name__)
app.debug = True
@app.template_filter('blank')
def blank(value):
return value == ''
@app.template_filter('islist')
def is_list(value):
return isinstance(value, list)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/onet')
def onetonline():
files = OnetOnlineHelper.read_categories()
# Limit set since the number of categories is insane... lazy load?
data = {
'categories': files,
'max': 4
}
return render_template('onetonline.html', **data)
@app.route('/onet/category/<category_id>')
def onetonline_category(category_id):
files = OnetOnlineHelper.read_categories()
# Ad-hoc way for now...
data = {
'categories': files,
'id': str(category_id),
}
return render_template('onetonline-category.html', **data)
@app.route('/onet/dataviz')
def onet_dataviz():
# TODO
return render_template('onet_dataviz.html')
@app.route('/onet/job/<job_id>/detail')
def onet_jobdata(job_id):
filedata = None
with open('fixtures/onet_jobs/{}.json'.format(job_id), 'rb') as jobs:
if 'as_json' in request.args:
return json.dumps(jobs.read())
data = json.loads(jobs.read())
jobs.close()
if 'as_json' in request.args:
return filedata
back_url = '/onet'
if 'json_nav' in request.args:
context = {
'data': data[0],
'back_url': back_url,
'heading': 'Job: ' + job_id
}
return render_template(
'json_view.html', **context)
return render_template('onetonline_job.html', job=data)
@app.route('/onet/job/<job_id>/detail/key/<value>')
def onet_jobdata_key(job_id, value):
filedata = None
with open('fixtures/onet_jobs/{}.json'.format(job_id), 'rb') as currfile:
filedata = dict(json.loads(currfile.read())[0])
data = filedata[value]
if 'as_json' in request.args:
return json.dumps(data)
context = {
'data': data,
'back_url': '/onet/job/{}/detail'.format(job_id),
'heading': 'Job: ' + job_id
}
return render_template('json_view.html', **context)
@app.route('/careerbuilder')
def careerbuilder():
files = CareerBuilderHelper.load_categories()
return render_template('careerbuilder.html', files=files)
@app.route('/json/<spider>/<jobfile>', methods=['GET'])
def getjson(spider='onet_jobs', jobfile=None):
try:
# Dangerous! Arbitrary file system access can be very dangerous.
# Proceed with caution for production setups... you've been warned.
with open('data/{}/{}'.format(spider, jobfile), 'rb') as data:
return data.read()
except IOError:
return json.dumps({
'error': 'No JSON file could be found with that name.'})
if __name__ == '__main__':
app.run()