routes.py
9.02 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
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
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('/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('/periods')
@login_required
def periods():
# get capacities 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('/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()
categories = db_mgr.category_labels()
return render_template('project_form.html', project=project_struct,
categories=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