-
Notifications
You must be signed in to change notification settings - Fork 0
/
mirep.py
263 lines (221 loc) · 7.77 KB
/
mirep.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
# #
# Made by Naizajar #
# #
from flask.helpers import url_for
from werkzeug.security import check_password_hash, generate_password_hash
from werkzeug.utils import redirect
from basico import db, app, login_manager
from modelos import users, subjects, reports, userForm, loginForm, subjectForm, reportForm
from flask import Flask, render_template, flash
from flask_login import UserMixin, login_user, LoginManager, login_required, logout_user, current_user
from sqlalchemy.orm import relationship
from wtforms.ext.sqlalchemy.fields import QuerySelectField
#
#ROOT
#
@app.route('/') #PRINCIPAL
def index(): #de la 'def' se piden los datos de la forma {{ url_for('nombreVar')}} en las templates(html)
flash("Aplicación en desarrollo - Version 1.1")
return render_template('index.html')
#
#SINGUP
#
@app.route('/singup', methods = ['GET', 'POST'])
def singUp():
forma = userForm()
usuario = None
nombre = None
apellidos = None
email = None
#Validación para la forma
if forma.validate_on_submit():
usuario = users.query.filter_by(email=forma.email.data).first() #variable 'email' proveniente de "class registerForm(): en registro.py"
if usuario is None:
clave_hashed = generate_password_hash(forma.clave_hash.data, "sha256")
usuario = users(nombre = forma.nombre.data,
apellidos = forma.apellidos.data,
email = forma.email.data,
clave_hash = clave_hashed)
db.session.add(usuario) #se añaden los datos asignados a la var 'usuarios'
db.session.commit()
nombre = forma.nombre.data
apellidos = forma.apellidos.data
email = forma.email.data
forma.nombre.data = ''
forma.apellidos.data = ''
forma.email.data = ''
forma.clave_hash.data = ''
flash("¡Tu cuenta ha sido creada exitosamente!")
lista_usuarios = users.query.order_by(users.fecha_creacion)
return render_template('singup.html', nombre = nombre,
apellidos = apellidos,
email = email,
forma = forma,
lista_usuarios = lista_usuarios)
@login_manager.user_loader
def loadUser(usuario_id):
return users.query.get(int(usuario_id))
#
#LOGOUT
#
@app.route('/logout', methods=['GET', 'POST'])
@login_required
def logOut():
logout_user()
flash("¡Cerraste Sesión Correctamente!")
return redirect(url_for ('index'))
#
#LOGIN FUNCIONAL
#
@app.route('/login', methods = ['GET', 'POST'])
def logIn():
forma = loginForm()
if forma.validate_on_submit():
usuario = users.query.filter_by(email=forma.email.data).first() #Obtiene el dato desde la tabladb users
if usuario:
#checkear el hash
if check_password_hash(usuario.clave_hash, forma.clave_hash.data):
login_user(usuario)
flash("Has iniciado Sesión correctamente!")
return redirect(url_for('dashboard'))
else:
flash("Contraseña Incorrecta - Intenta Nuevamente!")
else:
flash("Usuario no Existe - Intenta Nuevamente!")
return render_template('login.html', forma = forma)
'''
@DEPRECATED LOGIN
@app.route('/login', methods = ['GET', 'POST'])
def logIn():
forma = loginForm()
email = None
clave = None
clave_check = None
valido = None
if forma.validate_on_submit():
email = forma.email.data
clave = forma.clave_hash.data
#Limpiar forma
forma.email.data = ''
forma.clave_hash.data = ''
#Lookup por Email
clave_check = users.query.filter_by(email=email).first()
#Check hashed password
valido = check_password_hash(clave_check.clave_hash, clave)
return render_template('login.html',
email = email,
clave = clave,
clave_check = clave_check,
valido = valido,
forma = forma)
'''
#
#DASHBOARD
#
@app.route('/dashboard', methods = ['GET', 'POST'])
@login_required
def dashboard():
flash("¡Debes iniciar sesión primero!")
return render_template('dashboard.html')
#
#REPORTES NEW REPORT
#
@app.route('/reportes/newreport', methods=['GET', 'POST'])
@login_required
def newReport():
forma_s = subjectForm()
forma_r = reportForm()
return render_template('newreport.html',
forma_s=forma_s, forma_r=forma_r)
#
#ADD SUBJECT
#
@app.route('/reportes/addsubject', methods=['GET', 'POST'])
@login_required
def addSubject():
forma_s = subjectForm()
forma_r = reportForm()
nombre = None
apellidos = None
rut = None
if forma_s.validate_on_submit():
sujeto = subjects(nombre = forma_s.nombre.data,
apellidos = forma_s.apellidos.data,
rut = forma_s.rut.data)
#Limpiar forma
forma_s.nombre.data = ''
forma_s.apellidos.data = ''
forma_s.rut.data = ''
#enviar a database
db.session.add(sujeto)
db.session.commit()
flash("¡Sujeto creado exitosamente!")
return render_template('newreport.html',
nombre=nombre,
apellidos=apellidos,
rut=rut,
forma_s=forma_s, forma_r=forma_r)
#
#ADD REPORT
#
@app.route('/reportes/addreport', methods=['GET', 'POST'])
@login_required
def addReport():
forma_r = reportForm()
forma_s = subjectForm()
local = None
fecha_ingreso = None
fecha_salida = None
motivo_salida = None
satisfaccion = None
recomendacion = None
comentarios = None
#Validación para la forma
if forma_r.validate_on_submit():
reporte = reports(local = forma_r.local.data,
fecha_ingreso = forma_r.fecha_ingreso.data,
fecha_salida = forma_r.fecha_salida.data,
motivo_salida = forma_r.motivo_salida.data,
satisfaccion = forma_r.satisfaccion.data,
recomendacion = forma_r.recomendacion.data,
comentarios = forma_r.recomendacion.data)
#Limpiar forma
forma_r.local.data = ''
forma_r.fecha_ingreso.data = ''
forma_r.fecha_salida.data = ''
forma_r.motivo_salida.data = ''
forma_r.satisfaccion.data = ''
forma_r.recomendacion.data = ''
forma_r.comentarios.data = ''
#enviar a database
db.session.add(reporte)
db.session.commit()
flash("¡Reporte creado exitosamente!")
return render_template('newreport.html', local=local,
fecha_ingreso=fecha_ingreso,
fecha_salida=fecha_salida,
motivo_salida=motivo_salida,
satisfaccion=satisfaccion,
recomendacion=recomendacion,
comentarios=comentarios,
forma_s=forma_s, forma_r=forma_r)
#
#LISTA REPORTES
#
@app.route('/reportes/reportsall', methods=['GET', 'POST'])
@login_required
def reportsAll():
lista_reportes = reports.query.order_by(reports.fecha_creacion)
return render_template('reportsall.html',
lista_reportes = lista_reportes)
#
#ERRORES CUSTOM DE PÁGINAS
#
#URL Inválido
@app.errorhandler(404)
def page_not_found(e):
return render_template('404.html'), 404
#Error Interno Servidor
@app.errorhandler(500)
def page_not_found(e):
return render_template('500.html'), 500