-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideSoluciones.php.validarTipo.php
226 lines (205 loc) · 5.45 KB
/
ideSoluciones.php.validarTipo.php
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
<?php
/* Pendientes por validar
vector
ip 6
*/
class ValorRequeridoNulo extends Exception{
// Redefine the exception so message isn't optional
public function __construct($message, $code = 0) {
// some code
// make sure everything is assigned properly
parent::__construct($message, $code);
}
// custom string representation of object */
public function __toString() {
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
}
}
class TipoValorInvalido extends Exception{
// Redefine the exception so message isn't optional
public function __construct($message, $code = 0) {
// some code
// make sure everything is assigned properly
parent::__construct($message, $code);
}
// custom string representation of object */
public function __toString() {
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
}
}
class ValidarTipo{
function tipo($tipo,$dato,$requerido=false){
if($GLOBALS["debug"]>3){ registrarlog("->ValidarTipo::tipo() = Se desactivo toda la validación de tipos.<br>"); return true; }
//new mensajes("Solicito revizar ".$tipo."(".$dato.")");
if($requerido && (is_null($dato) || strcmp($dato,"")==0)){
throw new ValorRequeridoNulo("no puede estar vacio.");
}
switch($tipo){
case "entero": case "llavePrimariaAutonumerica": case "autonumerico":
if(!$this->entero($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos.");
}else{
return true;
}
break;
case "cadena": case "clave":
if(!$this->cadena($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos.");
}else{
return true;
}
break;
case "decimal":
//new mensajes("Revisando decimal ".$dato.($this->decimal($dato)?"OK":"ERR"));
//if(!$this->decimal($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos.");
//}else{
return true;
//}
break;
case "correo":
if(!$this->email($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos o el formato es incorrecto.");
}else{
return true;
}
break;
case "boleano":
if(!$this->booleano($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos o el formato es incorrecto.");
}else{
return true;
}
break;
case "xml":
if(!$this->xml($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos o el formato es incorrecto.");
}else{
return true;
}
break;
case "fecha":
if(!$this->fechaEstandar($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos o el formato es incorrecto.");
}else{
return true;
}
break;
case "ip":
if(!$this->ip($dato)){
throw new TipoValorInvalido("contiene caracteres invalidos o el formato es incorrecto.");
}else{
return true;
}
break;
default:
/*
llavePrimaria
llavePrimariaForanea
llaveForanea
vector
*/
return true;
}
}
function entero($int,$min=null,$max=null){
$int=intval($int);
if(is_numeric($int)){
if(!is_null($min)){
if($int<$min){
return false;
}
}
if(!is_null($max)){
if($int>$max){
return false;
}
}
return true;
}else{
return false;
}
}
function email($email){
if(filter_var($email, FILTER_VALIDATE_EMAIL)){
return true;
}else{
return false;
}
}
function booleano($bool){
if(is_bool($bool)){
return true;
}
if(strcmp(strtoupper($bool),"TRUE")==0){
return true;
}
if(strcmp(strtoupper($bool),"FALSE")==0){
return true;
}
return false;
}
function decimal($float){
$float=floatval($float);
if(is_numeric($float)){
return true;
}else{
return false;
}
}
function cadena($match){
//echo ("analizando [".$match."]");
preg_match_all('/[\\\'\"]+/',$match, $matches);
//echo ("analizando [".revisarArreglo($matches, "matches")."]");
if(count($matches[0])>0){
return false;
}else{
return true;
}
}
function xml($xml){
try{
$obj=@new SimpleXMLElement(stripslashes($xml));
}catch(Exception $e){
return false;
}
return true;
}
//AAAA-MM-DD
function fechaEstandar($fecha){
$fecha=str_replace(array(":", " "), "-", $fecha);
$std=explode("-","$fecha");
//@todo: Falta analizar la hora si esta
//if(count($std)!=3) return false;
if(strlen($std[0])>4 || strlen($std[0])==0) return false;
if(strlen($std[1])>2 || strlen($std[1])==0) return false;
if(strlen($std[2])>2 || strlen($std[2])==0) return false;
if (isset($std[3]))
if(strlen($std[3])>2 || strlen($std[3])==0) return false;
if (isset($std[4]))
if(strlen($std[4])>2 || strlen($std[4])==0) return false;
if (isset($std[5]))
if(strlen($std[5])>2 || strlen($std[5])==0) return false;
if (isset($std[3]))
if($std[3]<0 || $std[3]>=24) return false;
if (isset($std[4]))
if($std[4]<0 || $std[4]>=60) return false;
if (isset($std[5]))
if($std[5]<0 || $std[5]>=60) return false;
return checkdate($std[1], $std[2], $std[0]);
}
function ip($ip) {
$partes=explode(".","$ip");
if (count($partes)!=4) {
return false;
}
for($i=0;$i<4;$i++){
$tmp=(int)$partes[$i];
if($tmp>255){
return false;
}
}
return true;
}
}
?>