routes.py
13.5 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
from pprint import pprint
from flask import render_template, make_response, current_app, redirect, url_for, request, flash
from flask_login import login_required, current_user
from . import bp
from app.models import Agent, Project, Service, Capacity, Period, db, Company, AgentGrade, AgentStatus, AgentBap, \
Charge, Category, Label
from app import db_mgr
from app.auth.routes import role_required
@bp.before_request
def site_login():
try:
if current_app.config['SITE_LOGIN'] \
and not current_user.is_authenticated:
return redirect(url_for('auth.login'))
except KeyError:
# no such config, juste ignore
pass
@bp.before_request
def catch_all_route():
current_app.logger.debug(f"{request.method} {request.path}")
@bp.route('/')
def index():
return render_template('index.html', subtitle="Page d'accueil")
@bp.route('/services')
@role_required('service')
def services():
# get services list
all_services = Service.query.order_by(Service.name).all()
num_services = len(all_services)
# pass to template
return render_template('services.html', subtitle="Liste des services ({})".format(num_services),
services=all_services)
@bp.route('/projects')
@role_required('project')
def projects():
# get projects list
all_projects = db_mgr.projects()
num_projects = len(all_projects)
# pass to template
return render_template('projects.html', subtitle="Liste des projets ({})".format(num_projects),
projects=all_projects)
@bp.route('/projects/stats')
@role_required('project')
def projects_stats():
num_projects = len(Project.query.all())
return render_template('projects_stats.html', subtitle="Statistiques des projets ({})".format(num_projects))
@bp.route('/agents')
@role_required('project')
def agents():
# get agents list
all_agents = db_mgr.agents()
num_agents = len(all_agents)
# pass to template
return render_template('agents.html', subtitle="Liste des agents ({})".format(num_agents),
agents=all_agents)
@bp.route('/capacities')
@login_required
def capacities():
# get capacities list
all_capacities = Capacity.query.order_by(Capacity.name).all()
num_capacities = len(all_capacities)
# pass to template
return render_template('capacities.html', subtitle="Liste des fonctions ({})".format(num_capacities),
capacities=all_capacities)
@bp.route('/labels')
@login_required
def labels():
# get labels list
all_labels = Label.query.order_by(Label.name).all()
num_labels = len(all_labels)
# pass to template
return render_template('labels.html', subtitle="Liste des labels ({})".format(num_labels),
labels=all_labels)
@bp.route('/categories')
@login_required
def categories():
# get categories list
all_categories = Category.query.order_by(Category.name).all()
num_categories = len(all_categories)
# pass to template
return render_template('categories.html', subtitle="Liste des categories ({})".format(num_categories),
categories=all_categories)
@bp.route('/periods')
@login_required
def periods():
# get categories list
all_periods = Period.query.order_by(Period.name).all()
num_periods = len(all_periods)
# pass to template
return render_template('periods.html', subtitle="Liste des périodes ({})".format(num_periods),
periods=all_periods)
@bp.route('/project/<project_id>')
@role_required('project')
def project(project_id):
# TODO: am i the project manager ?
this_project = Project.query.get(int(project_id))
charges_table = db_mgr.charges_by_project(project_id)
return render_template('project.html',
project=this_project.to_struct(),
charges=charges_table,
subtitle="{}".format(this_project.name))
@bp.route('/agent/<agent_id>')
@role_required('agent')
def agent(agent_id):
# TODO: am i the agent, the service or project manager , or the admin ?
this_agent = Agent.query.get(int(agent_id))
charges_table = db_mgr.charges_by_agent_tabled(agent_id)
return render_template('agent.html',
agent=this_agent,
charges=charges_table,
subtitle=f"{this_agent.fullname}")
# - - - - - - - - - - - - - - - - - - - - FORMS - - - - - - - - - - - - - - - - - - - - #
@bp.route('/category/<category_id>/delete', methods=('POST', 'GET'))
@role_required('admin')
def category_delete(category_id=None):
this_category = Category.query.get(int(category_id))
flash("Pas encore implémenté")
# flash(f"Category {this_category.name} effacé")
return redirect(url_for('main.categories'))
@bp.route('/label/<label_id>/delete', methods=('POST', 'GET'))
@role_required('admin')
def label_delete(label_id=None):
this_label = Label.query.get(int(label_id))
flash("Pas encore implémenté")
# flash(f"Label {this_label.name} effacé")
return redirect(url_for('main.labels'))
@bp.route('/label/create', methods=('POST', 'GET'))
@bp.route('/label/<label_id>/edit', methods=('POST', 'GET'))
@role_required('admin')
def label_edit(label_id=None):
if request.method == 'GET':
if label_id:
this_label = Label.query.get(int(label_id))
else:
this_label = Label()
label_struct = this_label.to_struct()
all_categories = Category.query.order_by(Category.name).all()
return render_template('label_form.html', label=label_struct, categories=all_categories)
elif request.method == 'POST':
try:
label_id = request.form['label_id']
except KeyError:
label_id = None
if label_id:
# then update existing
this_label = Label.query.get(int(label_id))
done_string = "mis à jour."
else:
# or create from scratch
this_label = Label()
done_string = "ajouté."
# fill orm with form and write to db
this_label.from_request(request)
db.session.add(this_label)
db.session.commit()
# we're done
flash(f"Label {this_label.name} (#{this_label.id}) " + done_string)
return redirect(url_for('main.labels'))
@bp.route('/category/create', methods=('POST', 'GET'))
@bp.route('/category/<category_id>/edit', methods=('POST', 'GET'))
@role_required('admin')
def category_edit(category_id=None):
if request.method == 'GET':
if category_id:
this_category = Category.query.get(int(category_id))
else:
this_category = Category()
category_struct = this_category.to_struct()
all_labels = Label.query.order_by(Label.name).all()
return render_template('category_form.html', category=category_struct, labels=all_labels)
elif request.method == 'POST':
try:
category_id = request.form['category_id']
except KeyError:
category_id = None
if category_id:
# then update existing
this_category = Category.query.get(int(category_id))
done_string = "mis à jour."
else:
# or create from scratch
this_category = Category()
done_string = "ajouté."
# fill orm with form and write to db
this_category.from_request(request)
db.session.add(this_category)
db.session.commit()
# we're done
flash(f"Category {this_category.name} (#{this_category.id}) " + done_string)
return redirect(url_for('main.categories'))
@bp.route('/project/create', methods=('POST', 'GET'))
@bp.route('/project/<project_id>/edit', methods=('POST', 'GET'))
@role_required('service')
def project_edit(project_id=None):
if request.method == 'GET':
if project_id:
this_project = Project.query.get(int(project_id))
else:
this_project = Project()
project_struct = this_project.to_struct()
all_categories = db_mgr.category_labels()
return render_template('project_form.html', project=project_struct,
categories=all_categories)
elif request.method == 'POST':
try:
project_id = request.form['project_id']
except KeyError:
project_id = None
if project_id:
# then update existing
this_project = Project.query.get(int(project_id))
done_string = "mis à jour."
else:
# or create from scratch
this_project = Project()
done_string = "ajouté."
# fill orm with form and write to db
this_project.from_request(request)
db.session.add(this_project)
db.session.commit()
# we're done
flash(f"Project {this_project.name} (#{this_project.id}) " + done_string)
return redirect(url_for('main.project', project_id=this_project.id))
@bp.route('/agent/create', methods=('POST', 'GET'))
@bp.route('/agent/<agent_id>/edit', methods=('POST', 'GET'))
@role_required('service')
def agent_edit(agent_id=None):
# Make the form, filled with existing agent if updating
#
if request.method == 'GET':
companies = Company.query.all()
grades = AgentGrade.query.all()
statuses = AgentStatus.query.all()
baps = AgentBap.query.all()
if agent_id:
this_agent = Agent.query.get(int(agent_id))
else:
this_agent = Agent()
# export to structure for jinja display
agent_struct = this_agent.to_struct()
return render_template('agent_form.html', agent=agent_struct,
companies=companies,
statuses=statuses,
baps=baps,
grades=grades)
# Or submit for db writing
#
elif request.method == 'POST':
try:
agent_id = request.form['agent_id']
except KeyError:
agent_id = None
if agent_id:
# then update existing
this_agent = Agent.query.get(int(agent_id))
done_string = "mis à jour."
else:
# or create from scratch
this_agent = Agent()
done_string = "ajouté."
# fill orm with form and write to db
this_agent.from_request(request)
db.session.add(this_agent)
db.session.commit()
# we're done
flash(f"Agent {this_agent.fullname} (#{this_agent.id}) " + done_string)
return redirect(url_for('main.agent', agent_id=this_agent.id))
@bp.route('/charge/add', methods=('POST', 'GET'))
@role_required('service')
def charge_add():
if request.method == 'GET':
try:
this_agent = Agent.query.get(int(request.args['agent_id']))
except KeyError:
this_agent = None
try:
this_project = Project.query.get(int(request.args['project_id']))
except KeyError:
this_project = None
this_agents = Agent.query.order_by(Agent.firstname).all()
this_projects = Project.query.order_by(Project.name).all()
this_services = Service.query.order_by(Service.name).all()
this_periods = Period.query.order_by(Period.id).all()
this_capacities = Capacity.query.order_by(Capacity.name).all()
return render_template('charge_form.html', subtitle="Affecter un agent",
agent=this_agent,
project=this_project,
projects=this_projects,
services=this_services,
periods=this_periods,
capacities=this_capacities,
agents=this_agents)
elif request.method == 'POST':
this_agent = Agent.query.get(request.form.get('agent_id'))
this_charge = Charge()
this_charge.from_request(request)
db.session.add(this_charge)
db.session.commit()
flash(f"Nouvelle charge pour l'agent {this_agent.fullname}")
return redirect(url_for('main.agent', agent_id=this_agent.id))
# - - - - - - - - - - - - - - - - - - - - REST API - - - - - - - - - - - - - - - - - - - -
@bp.route('/charge/project/<project_id>/<category>')
@role_required('project')
def charge_project_csv(project_id, category):
csv_table = []
for line in db_mgr.charges_by_project_stacked(project_id, category):
line = [cell.replace(",", "-") for cell in line]
line_string = ",".join(line)
csv_table.append(line_string)
resp = make_response("\n".join(csv_table))
resp.headers['Content-Type'] = 'text/plain;charset=utf8'
return resp
@bp.route('/charge/agent/<agent_id>')
@role_required('service')
def charge_agent_csv(agent_id):
csv_table = []
for line in db_mgr.charges_by_agent_stacked(agent_id):
line = [cell.replace(",", "-") for cell in line]
line_string = ",".join(line)
csv_table.append(line_string)
resp = make_response("\n".join(csv_table))
resp.headers['Content-Type'] = 'text/plain;charset=utf8'
return resp
@bp.route('/charge/projects')
@role_required('project')
def projects_stats_csv():
csv_table = []
for line in db_mgr.charges_for_projects_stacked():
line = [cell.replace(",", "-") for cell in line]
line_string = ",".join(line)
csv_table.append(line_string)
resp = make_response("\n".join(csv_table))
resp.headers['Content-Type'] = 'text/plain;charset=utf8'
return resp