-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunciones.js
270 lines (246 loc) · 7.78 KB
/
funciones.js
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
function validar_alta() {
// Valido el nombre de usuario
var username = document.getElementById("user").value;
if(username == null || username.length == 0) {
alert("ERROR: Nombre de usuario no introducido");
return false;
}
if(username.length > 15) {
alert("ERROR: Nombre de usuario demasiado largo");
return false;
}
// Evito ataques de inyección de código SQL al introducir el nombre de usuario
// comprobando que no se introducen sentencias SQL
var exp1 = new RegExp(";");
var exp2 = new RegExp("=");
var exp3 = new RegExp("'");
if(exp1.test(username) || exp2.test(username) || exp3.test(username)) {
alert("ERROR: Nombre de usuario no válido");
return false;
}
// Valido el nombre
var name = document.getElementById("nombre").value;
if(name == null || name.length == 0) {
alert("ERROR: Nombre no introducido");
return false;
}
if(name.length > 20) {
alert("ERROR: Nombre demasiado largo");
return false;
}
// Valido los apellidos
var surname = document.getElementById("apellidos").value;
if(surname == null || surname.length == 0) {
alert("ERROR: Apellidos no introducidos");
return false;
}
if(surname.length > 25) {
alert("ERROR: Apellidos demasiados largos");
return false;
}
// Valido el email
var email = document.getElementById("correo").value;
if(email == null || email.length == 0) {
alert("ERROR: Email no introducido");
return false;
}
if(email.length > 35) {
alert("ERROR: Email demasiado largo");
return false;
}
if(!(/\w+@+\w+\.+[a-z]/.test(email))) {
alert("ERROR: Formato de email no válido");
return false;
}
// Valido la contraseña
var password = document.getElementById("pass").value;
if(password == null || password.length == 0) {
alert("ERROR: Contraseña no introducida");
return false;
}
if(password.length > 15) {
alert("ERROR: Contraseña demasiado larga");
return false;
}
// Compruebo que la contraseña repetida es igual a la original
var password1 = document.getElementById("contra1").value;
if(password1 != password) {
alert("ERROR: Las contraseñas no coinciden");
return false;
}
// Valido la fecha de nacimiento
var fecha_nac = document.getElementById("fechanac").value;
if(fecha_nac == null || fecha_nac.length == 0) {
alert("ERROR: Fecha de nacimiento no introducida");
return false;
}
else {
var datos = fecha_nac.split("-");
var anio = parseInt(datos[0]);
if(anio < 1900 || anio > 2000) {
alert("ERROR: No se pueden registrar en el centro deportivo personas nacidas antes de 1900 o después del año 2000");
return false;
}
}
// Valido la foto
var photo = document.getElementById("foto").value;
if(photo == null || photo.length == 0) {
alert("ERROR: Foto no introducida");
return false;
}
var expr1 = new RegExp(".gif","i");
var expr2 = new RegExp(".jpeg","i");
var expr3 = new RegExp(".jpg","i");
var expr4 = new RegExp(".png","i");
var expr5 = new RegExp(".bmp","i");
if(!(expr1.test(photo)) && !(expr2.test(photo)) && !(expr3.test(photo)) && !(expr4.test(photo)) && !(expr5.test(photo)) ) {
alert("ERROR: Foto no válida");
return false;
}
return true;
}
function validar_perfil() {
// Valido el nombre
var name = document.getElementById("nombre").value;
if(name == null || name.length == 0) {
alert("ERROR: Nombre no introducido");
return false;
}
if(name.length > 20) {
alert("ERROR: Nombre demasiado largo");
return false;
}
// Valido los apellidos
var surname = document.getElementById("apellidos").value;
if(surname == null || surname.length == 0) {
alert("ERROR: Apellidos no introducidos");
return false;
}
if(surname.length > 25) {
alert("ERROR: Apellidos demasiados largos");
return false;
}
// Valido el email
var email = document.getElementById("correo").value;
if(email == null || email.length == 0) {
alert("ERROR: Email no introducido");
return false;
}
if(email.length > 35) {
alert("ERROR: Email demasiado largo");
return false;
}
if(!(/\w+@+\w+\.+[a-z]/.test(email))) {
alert("ERROR: Formato de email no válido");
return false;
}
// Valido la contraseña
var password = document.getElementById("contra").value;
if(password.length > 15) {
alert("ERROR: Contraseña demasiado larga");
return false;
}
// Compruebo que la contraseña repetida es igual a la original
var password1 = document.getElementById("contra1").value;
if(password1 != password) {
alert("ERROR: Las contraseñas no coinciden");
return false;
}
// Valido la fecha de nacimiento
var fecha_nac = document.getElementById("fechanac").value;
if(fecha_nac == null || fecha_nac.length == 0) {
alert("ERROR: Fecha de nacimiento no introducida");
return false;
}
else {
var datos = fecha_nac.split("-");
var anio = parseInt(datos[0]);
if(anio < 1900 || anio > 2000) {
alert("ERROR: No se pueden registrar en el centro deportivo personas nacidas antes de 1900 o después del año 2000");
return false;
}
}
// Valido la foto
var photo = document.getElementById("photo").value;
if(photo != null && photo.length != 0) {
var expr1 = new RegExp(".gif","i");
var expr2 = new RegExp(".jpeg","i");
var expr3 = new RegExp(".jpg","i");
var expr4 = new RegExp(".png","i");
var expr5 = new RegExp(".bmp","i");
if(!(expr1.test(photo)) && !(expr2.test(photo)) && !(expr3.test(photo)) && !(expr4.test(photo)) && !(expr5.test(photo)) ) {
alert("ERROR: Foto no válida");
return false;
}
}
return true;
}
function validar_sesion() {
// Valido el username
var username = document.getElementById("username").value;
if(username == null || username.length == 0) {
alert("ERROR: Nombre de usuario no introducido");
return false;
}
if(username.length > 15) {
alert("ERROR: Nombre de usuario demasiado largo");
return false;
}
// Evito ataques de inyección de código SQL al introducir el nombre de usuario
// comprobando que no se introducen sentencias SQL
var exp1 = new RegExp(";");
var exp2 = new RegExp("=");
var exp3 = new RegExp("'");
if(exp1.test(username) || exp2.test(username) || exp3.test(username)) {
alert("ERROR: Nombre de usuario no válido");
return false;
}
// Valido la contraseña
var password = document.getElementById("contra").value;
if(password == null || password.length == 0) {
alert("ERROR: Contraseña no introducida");
return false;
}
if(password.length > 15) {
alert("ERROR: Contraseña demasiado larga");
return false;
}
return true;
}
function validar_hilo() {
// Validar el título
var title = document.getElementById("titulo").value;
if(title == null || title.length == 0) {
alert("ERROR: Título no introducido");
return false;
}
if(title.length > 50) {
alert("ERROR: Título demasiado largo");
return false;
}
// Validar la descripción
var descripcion = document.getElementById("description").value;
if(descripcion == null || descripcion.length == 0 || !/[a-z]|[0-9]/i.test(descripcion)) {
alert("ERROR: Descripción no introducida");
return false;
}
if(descripcion.length > 100) {
alert("ERROR: Descripción demasiado larga");
return false;
}
return true;
}
function validar_entrada(n){
// Valido la descripción
var elem = "respuesta" + n;
var descripcion = document.getElementById(elem).value;
if(descripcion == null || descripcion.length == 0 || !/[a-z]|[0-9]/i.test(descripcion)) {
alert("ERROR: Descripción no introducida");
return false;
}
if(descripcion.length > 100) {
alert("ERROR: Descripción demasiado larga");
return false;
}
return true;
}