-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathapp.py
267 lines (206 loc) · 8 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
from flask import Flask, render_template
import os
import json
import app_data
app = Flask(__name__)
@app.context_processor
def inject_json_data():
home_filter_listings_file = os.path.abspath("data-sets/home_filter_listings.json")
with open(home_filter_listings_file) as json_file:
raw_home_filter_listings = json.load(json_file)
home_filter_listings = raw_home_filter_listings["data"]["filters"]
return dict(home_filter_listings=home_filter_listings)
@app.route("/screen-list/")
def screen_list():
return render_template("screen_list.html")
# homepage views
@app.route("/")
def home_splash():
return render_template("home_splash.html")
@app.route("/challenges/steps/")
def challenges_steps():
return render_template("challenges_steps.html")
@app.route("/challenges/")
def home_challenges():
challenge_listings_file = os.path.abspath("data-sets/challenge_listings.json")
with open(challenge_listings_file) as json_file:
raw_challenge_listings = json.load(json_file)
challenge_listings = raw_challenge_listings["data"]["challengelisting"]
return render_template(
"home_challenges.html", challenge_listings=challenge_listings
)
@app.route("/products/")
def home_products():
products_listings_file = os.path.abspath("data-sets/products_listings.json")
with open(products_listings_file) as json_file:
raw_products_listings = json.load(json_file)
products_listings = raw_products_listings["data"]["products"]
return render_template("home_products.html", products_listings=products_listings)
# #product pages
@app.route("/product/summary/")
def product_summary():
product_summary_listings_file = os.path.abspath(
"data-sets/product_summary_listings.json"
)
with open(product_summary_listings_file) as json_file:
raw_product_summary_listings = json.load(json_file)
product_summary_listings = raw_product_summary_listings["data"]["summary"]
return render_template(
"product_summary.html",
product_summary_listings=product_summary_listings,
current_page="summary_page",
)
@app.route("/product/initiatives/")
def product_initiatives():
product_initiatives_listings_file = os.path.abspath(
"data-sets/product_initiatives_listings.json"
)
with open(product_initiatives_listings_file) as json_file:
raw_product_initiatives_listings = json.load(json_file)
product_initiatives_listings = raw_product_initiatives_listings["data"][
"initiatives"
]
return render_template(
"product_initiatives.html",
product_initiatives_listings=product_initiatives_listings,
current_page="initiatives_page",
)
@app.route("/product/challenges/")
def product_challenges():
return render_template(
"product_challenges.html",
challenges=app_data.get_challenges()[:5],
current_page="challenges_page",
)
@app.route("/product/product-tree/")
def product_product_tree():
product_summary_listings_file = os.path.abspath(
"data-sets/product_summary_listings.json"
)
with open(product_summary_listings_file) as json_file:
raw_product_summary_listings = json.load(json_file)
product_summary_listings = raw_product_summary_listings["data"]["summary"]
return render_template(
"product_tree.html",
product_summary_listings=product_summary_listings,
current_page="tree_page",
)
@app.route("/product/product-tree-interactive/")
def product_product_tree_interactive():
product_summary_listings_file = os.path.abspath(
"data-sets/product_summary_listings.json"
)
with open(product_summary_listings_file) as json_file:
raw_product_summary_listings = json.load(json_file)
product_summary_listings = raw_product_summary_listings["data"]["summary"]
return render_template(
"product_tree_interactive.html",
product_summary_listings=product_summary_listings,
current_page="tree_page_interactive",
)
@app.route("/product/product-area-detail/")
def product_product_area_detail():
challenge_listings_file = os.path.abspath("data-sets/challenge_listings.json")
with open(challenge_listings_file) as json_file:
raw_challenge_listings = json.load(json_file)
challenge_listings = raw_challenge_listings["data"]["challengelisting"]
return render_template(
"product_area_detail.html", challenge_listings=challenge_listings
)
@app.route("/product/ideas-and-bugs/")
def product_ideas_bugs():
product_ideas_listings_file = os.path.abspath(
"data-sets/product_ideas_listings.json"
)
person_info_file = os.path.abspath("data-sets/person_info.json")
with open(product_ideas_listings_file) as json_file:
raw_product_ideas_listings = json.load(json_file)
product_ideas_listings = raw_product_ideas_listings["data"]["ideas"]
with open(person_info_file) as json_file:
raw_person_info = json.load(json_file)
person_info_listings = raw_person_info["data"]["personInfo"]
return render_template(
"product_ideas.html",
product_ideas_listings=product_ideas_listings,
person_info_listings=person_info_listings,
current_page="ideas_page",
)
@app.route("/product/people/")
def product_people():
product_people_listings_file = os.path.abspath(
"data-sets/product_people_listings.json"
)
with open(product_people_listings_file) as json_file:
raw_product_people_listings = json.load(json_file)
product_people_listings = raw_product_people_listings["data"]["people"]
return render_template(
"product_people.html",
product_people_listings=product_people_listings,
current_page="people_page",
)
@app.route("/profile/empty/")
def profile_empty():
return render_template("profile_empty.html")
@app.route("/profile/")
def profile():
return render_template("profile.html")
@app.route("/users/sign-up/")
def user_sign_up():
return render_template("user_sign_up.html")
@app.route("/users/sign-in/")
def user_sign_in():
return render_template("user_sign_in.html")
@app.route("/users/password-reset/")
def user_password_reset():
return render_template("user_reset_password.html")
@app.route("/portfolio/")
def portfolio():
return render_template("portfolio.html")
@app.route("/portfolio-figma/")
def portfolio_figma():
return render_template("portfolio_figma.html")
@app.route("/portfolio-clients/")
def portfolio_clients():
return render_template("portfolio_clients.html")
@app.route("/status-and-points/")
def status_and_points():
return render_template("status_and_points.html")
@app.route("/bounty_claim_requests_table/")
def bounty_claim_requests_table():
return render_template("bounty_claim_requests_table.html")
@app.route("/challenge-detail-page/")
def challenge_detail_page():
return render_template(
"challenge_detail.html",
challenge=app_data.get_challenges()[0],
bounties=app_data.get_bounties()[:4],
created_by=app_data.get_users()[0],
product=app_data.get_products()[0],
)
@app.route("/review-submissions/")
def review_submissions():
return render_template(
"bounty_delivery_attempt_detail.html",
object=app_data.get_bounty_delivery_attempt()[0],
bounty_claim=app_data.get_bounty_claims()[0],
bounty=app_data.get_bounties()[0],
challenge=app_data.get_challenges()[0],
person=app_data.get_users()[0],
)
@app.route("/work-submissions/")
def work_submissions():
return render_template(
"bounty_claim_attempt.html",
bounty_claim=app_data.get_bounty_claims()[0],
)
@app.route("/bounty-detail/")
def bounty_detail():
return render_template(
"bounty_detail.html",
bounty_claim=app_data.get_bounty_claims()[0],
product=app_data.get_products()[0],
challenge=app_data.get_challenges()[0],
bounty=app_data.get_bounties()[0],
expertises=app_data.get_expertises()[22:24],
skill=app_data.get_skills()[0],
)