-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideSoluciones.php.sesion.php
679 lines (620 loc) · 23.2 KB
/
ideSoluciones.php.sesion.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
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
<?php
require_once("ideSoluciones.XML.general.php");
require_once("ideSoluciones.XML.SQL.php");
/*
Ejemplo de uso
$ss= new Sesion($this->db, $idSesion);
$ss->escribirParametro("nombreParametro", "valorParametro");
$ss->escribirParametro("nombreParametro", "valorParametro1");
$ss->escribirParametro("nombreParametro", "valorParametro2");
$ss->escribirParametro("nombreParametro", "valorParametro3");
echo "Sesion2:".$ss->imprimir();
$ss->escribirParametro("nombreParametro", "");
echo "Sesion3:".$ss->imprimir();
$ss->escribirParametro("nombreParametro", "valorParametro");
echo "<div>El valor de nombreParametro es: ".$ss->leerParametro("nombreParametro")."</div>";
*/
class Sesion extends generalXML{
static private $instancia = NULL;
public $db = null;
private $id = null;
private $cadena = null;
var $xml=null;
var $idSesion=0;
var $iframe=false;
var $prefijoAnclas="";
var $prefijoFormularios="";
var $respuestaAjax=null;
var $args=array();
var $index=null;
var $configuracion=null;
static public function getInstancia($db=null, $id=null, $cadena="") {
if (self::$instancia == NULL) {
self::$instancia = new Sesion ($db, $id, $cadena);
}
return self::$instancia;
}
function getDB(){
return $this->db;
}
function Sesion($db, $id, $cadena=""){
if (is_null($db)){
asercion("ERROR la base de datos no puede ser nula en la declaración de la Sesion");
}
$this->instancia=$this;
$this->respuestaAjax=null;
$this->stackFormularios=array();
$this->db=$db;
$this->prefijoFormularios=resolverPath()."/";
$this->prefijoAnclas=resolverPath()."/";
//new mensajes ("el id es: ".$id."<br>");
$daoSesion = new DAO0Sesion($this->db);
try{
$voSesion=$daoSesion->getRegistro($id);
//msg::add("Se recupera el registro");
//msg::add($voSesion);
}catch(sinResultados $e){
//msg::add("Se crea una nueva sesion");
$voSesion=$daoSesion->crearVO();
$voSesion->setDatosSesion(base64_encode("<Sesion />"));
$voSesion->setIdUsuario("1");
$voSesion->setUltimoAcceso(date("Y-m-d H:i:s"));
/*
$tags = @get_meta_tags('http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress='.getRealIpAddr());
//$tags = get_meta_tags('http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=190.25.106.251');
if (strcmp($tags["known"], "true")==0){
foreach($tags as $id => $tag){
//echo mb_detect_encoding($tag), " ",
// iconv('UTF-8', 'ASCII//TRANSLIT', $tag), " ",
// iconv('UTF-8', 'ASCII//IGNORE', $tag), " ",
// iconv('UTF-8', 'ASCII', $tag), "<br>";
$tags[$id]=iconv('UTF-8', 'ASCII//IGNORE', $tag);
}
$datos=xml::add(null, "DatosUsuario", array(
"InformacionCliente"=>$_SERVER["HTTP_USER_AGENT"],
"IP"=>getRealIpAddr(),
"fechaConexion"=>date("Y-m-d H:i:s"),
"Pais"=>$tags["country"],
"Region"=>$tags["region"],
"Ciudad"=>$tags["city"],
"Latitud"=>$tags["latitude"],
"Longitud"=>$tags["longitude"],
));
}else{
*/
if(isset($_SERVER["HTTP_USER_AGENT"])){
$datos=xml::add(null, "DatosUsuario", array(
"InformacionCliente"=>$_SERVER["HTTP_USER_AGENT"],
"IP"=>getRealIpAddr(),
"fechaConexion"=>date("Y-m-d H:i:s"),
));
}else{
$datos=xml::add(null, "DatosUsuario", array(
"InformacionCliente"=>"Cliente sin user agent",
"IP"=>getRealIpAddr(),
"fechaConexion"=>date("Y-m-d H:i:s"),
));
}
//}
//var_dump($tags);
$voSesion->setDatosAcceso($datos->asXML());
$daoSesion->agregarRegistro($voSesion);
}
$this->idSesion=$voSesion->getIdSesion();
$this->xml= new SimpleXMLElement(base64_decode($voSesion->getDatosSesion()));
$this->cadena=$cadena;
$_SESSION['idSesion'.$cadena] = $this->idSesion;
$_SESSION['nombreSesion'] = $cadena;
$this->escribirParametro("identificadorSesion", $this->cadena.$this->idSesion);
//var_dump($voSesion);
self::$instancia=$this;
///echo "* * * * * * * * Se cargo el valor de la sesion[".$this->idSesion."] : ".$this->textoXML($this->xml)."<br>";
}
function sincronizarBaseDatos(){
$daoSesion = new DAO0Sesion($this->db);
try{
$voSesion=$daoSesion->getRegistro($this->idSesion);
$idAnterior=intval($voSesion->getIdUsuario());
$idNuevo=intval($this->leerParametro("idUsuario"));
//echo $idAnterior." vs ".$idNuevo."<br>";
if ($idNuevo==1){//Anonimo
//echo "El idNuevo es UNO<br>";
if ($idAnterior!=1){//Usuario -> anonimo, logout
//echo "El idAnterior es NO UNO idSesion[".$_SESSION['idSesion'.$this->cadena]."]<br>";
$_SESSION['idSesion'.$this->cadena]="0";
}else{
}
}else{//Usuario
$voSesion->setIdUsuario($idNuevo);
}
//echo generalXML::geshiXML($this->xml);
$voSesion->setDatosSesion(base64_encode($this->xml->asXML()));
$voSesion->setUltimoAcceso(date("Y-m-d H:i:s"));
$daoSesion->actualizarRegistro($voSesion);
}catch(sinResultados $e){
msg::add("Error sincronizando sesión en la base de datos");
}
//echo "Sesión sincronizada";
//var_dump($voSesion);
}
function buscarParametro($nombre){
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']");
//echo revisarArreglo($c, "Buscar parametro, vs ".$valor);
if (count($c)>0){
//foreach ($c as $i => $a){
//echo "<div>Comparando valores [".$a["valor"].", ".$valor."]</div>";
//$rest=$a["valor"];
//if (strcmp($rest,$valor)==0){
return true;
//}
}
return false;
}
function buscarParametroInterno($nombre, $id){
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']/Interno[@nombre='".$id."']");
//echo revisarArreglo($c, "Buscar parametro c=".$nombre." ".$id);
//if ($nombre=="casoUsoPermitido" && $id=="logout"){
/// echo "Buscar parametro c=<strong>".$nombre." ".$id."</strong>: ";
// echo "xmlOriginal:".$this->geshiXML($this->xml)."<br>xmlBusqueda";
// var_dump($c);
// echo "<br>";
//}
if ($c==false)
return false;
if (count($c)>0){
//echo "Como c>0 y c!=false<br>";
//foreach ($c as $i => $a){
//echo "<div>Comparando valores [".$a["valor"].", ".$valor."]</div>";
//$rest=$a["valor"];
//if (strcmp($rest,$valor)==0){
return true;
//}
}
return false;
}
function borrarParametros($cuantos='all'){
$this->removeNode($this->xml, "/Sesion/Parametro", $cuantos);
}
function borrarParametro($nombre, $cuantos='one'){
$this->removeNode($this->xml, "/Sesion/Parametro[@nombre='$nombre']", $cuantos);
}
function borrarParametroInterno($nombre, $id){
$this->removeNode($this->xml, "/Sesion/Parametro[@nombre='$nombre']/Interno[@nombre='".$id."']", 'all');
}
function borrarParametrosInternos($nombre){
$this->removeNode($this->xml, "/Sesion/Parametro[@nombre='$nombre']/Interno", 'all');
}
function leerParametro($nombre){
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']");
if (count($c)>0){
$r=(string)$c[0]["valor"];
//$r=unserialize((string)base64_decode((string)$c[0]["valor"]));
//echo "Retornando valor :[".$r."]<br>";
return $r;
}
return "";
}
function leerParametroInterno($nombre, $id){
$c = $this->xml->xpath('/Sesion/Parametro[@nombre="'.$nombre.'"]/Interno[@nombre="'.$id.'"]');
//new mensajes("<pre>$nombre, $id ,C=".print_r($c,true)."</pre>");
if (count($c)>0){
$r=(string)$c[0]["valor"];
return $r;
}
return "";
}
function leerParametrosInternos($nombre){
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']/Interno");
if (count($c)>0)
return $c;
return array();
}
function escribirParametroInterno($nombre, $id, $valor){
$respuesta=$this->buscarParametroInterno($nombre, $id);
//echo "Estoy escribiendo un parametro interno: ",$nombre, " ", $id, " ", $valor." -> la respuesta de buscar es: [".$respuesta."]<br>";
if($respuesta){
//echo "La respuesta es que si existe: <br>";
$this->removeNode($this->xml, "/Sesion/Parametro[@nombre='$nombre']/Interno[@nombre='".$id."']", 'all' );
//echo "Despues de borrado se tiene ".$this->geshiXML($this->xml)."<hr>";
}
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']");
if (count ($c)==0){
$d=$this->escribirParametro($nombre, "", true);
}else{
$d=$c[0];
}
$parametro = $d->addChild('Interno');
$parametro->addAttribute('nombre', $id);
$parametro->addAttribute('valor', $valor);
//if ($nombre=="casoUsoPermitido" && $id=="logout"){
// echo "El xml final es: ".$this->geshiXML($this->xml)."<br>";
//}
}
function escribirParametro($nombre, $valor, $retornar=false, $debug=false){
$valor2="".$valor;
if($this->buscarParametro($nombre)){
//echo "Se encontro un parametro";
/*if ($debug)
echo "el xml antes de: ".$this->geshiXML($this->xml)."<br>";
*/
$this->removeNode($this->xml, "/Sesion/Parametro[@nombre='".$nombre."']", 'all' );
/*if ($debug)
echo "el xml despues de: ".$this->geshiXML($this->xml)."<br>";
*/
/*
$c = $this->xml->xpath("/Sesion/Parametro[@nombre='$nombre']");
if ($valor!=""){
//revisarArreglo($this->xml);
$c[0]["valor"]=$valor;
//revisarArreglo($this->xml);
}else{
}
*/
}//else{
$parametro = $this->xml->addChild('Parametro');
$parametro->addAttribute('nombre', $nombre);
$parametro->addAttribute('valor', $valor2);
if ($debug)
echo "el xml al insertarlo: ".$this->geshiXML($this->xml)."<br>";
//}
//$this->sincronizarBaseDatos();
if ($retornar)
return $parametro;
}
function borrarParametrosDestino(){
$destino=$this->leerParametro("destino");
$this->removeNode($this->xml, "/Sesion/Parametro/ParametroDestino", 'all');
}
function buscarParametroDestino($destino, $nombre, $valor){
$c = $this->xml->xpath("/Sesion/Parametro[@valor='".$destino."']/ParametroDestino[@nombre='$nombre']");
//echo revisarArreglo($c, "Buscar parametro, vs ".$valor);
foreach ($c as $i => $a){
//echo "<div>Comparando valores [".$a["valor"].", ".$valor."]</div>";
$rest=$a["valor"];
if (strcmp($rest,$valor)==0){
return true;
}
}
return false;
}
function escribirParametroDestino($destino,$nombre, $valor, $sobreescribir=false){
if($this->buscarParametroDestino($destino,$nombre, $valor) || $sobreescribir){
$c = $this->xml->xpath("/Sesion/Parametro[@valor='$destino']/ParametroDestino[@nombre='$nombre']");
if ($valor!=""){
$c[0]["valor"]=$valor;
}else{
$this->removeNode($this->xml, "/Sesion/Parametro[@valor='$destino']/ParametroDestino[@nombre='$nombre']" );
}
}else{
//echo $this->imprimir();
$cadena="/Sesion/Parametro[@nombre='destino' and @valor='".$destino."']";
$c=$this->xml->xpath($cadena);
if (count($c)>0){
$parametro = $c[0]->addChild('ParametroDestino');
$parametro->addAttribute('nombre', $nombre);
//@ToDo: Falta ajustar bien este problema de los utf8 en los parametros get
/* Actualmente quedo funcionando así
UTF-8
Valor: transaccion en validaci�n
ASCII
Valor: transaccion en validaci?
*/
//echo mb_detect_encoding($valor)."<br>";
//echo "Valor: ".$valor."<br>";
//echo mb_detect_encoding($valor)."<br>";
//echo "Valor: ".$valor."<br>";
@$parametro->addAttribute('valor', $valor);
}
}
}
function leerParametroDestino($destino, $nombre){
$c=$this->xml->xpath("/Sesion/Parametro[@valor=".$destino."]/ParametroDestino[@nombre='".$nombre."']");
//var_dump($c);
if (count($c)>0){
$r=(string)$c[0]["valor"];
return $r;
}
return "";
}
function leerParametroDestinoActual($nombre){
$destino=$this->leerParametro("destino");
return $this->leerParametroDestino($destino, $nombre);
}
//Retorna un arreglo de SimpleXMLElement
function leerParametrosDestinoActual($patron=""){
$destino=$this->leerParametro("destino");
$fs=$this->xml->xpath("/Sesion/Parametro[@nombre='destino' and @valor='".$destino."']/ParametroDestino");
if (strcmp($patron, "")==0){
if (count($fs)>0){
return $fs;
}
return "";
}else{
$respuesta = array();
if(is_array($fs)){
foreach($fs as $f){
if (preg_match($patron, (string)$f["nombre"])){
$respuesta[(string)$f["nombre"]]=(string)$f["valor"];
}
}
}
return $respuesta;
}
}
function buscarAncla($casoUso){
$c = $this->xml->xpath("/Sesion/Ancla[@casoUso='$casoUso']");
if (count($c)>0)
return true;
return false;
}
function borrarAnclas(){
$this->removeNode($this->xml, "/Sesion/Ancla", "all");
//$this->sincronizarBaseDatos();
}
function leerAncla($idAncla){
$c = $this->xml->xpath("/Sesion/Ancla[@idCasoUso='$idAncla']");
if (count($c)>0)
return $c[0];
return null;
}
function escribirAncla($casoUso, $idCasoUso){
return $casoUso;
}
function getIdSesion(){
return $this->idSesion;
}
function leerFormulario($idCasoUso){
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."']");
if (count($fs)>0){
return $fs[0];
}
return null;
}
function borrarFormularios($idCasoUso){
///echo "*borrarFormularios<br>";
if($idCasoUso==0){//todos
$this->removeNode($this->xml, "/Sesion/Formulario", "all");
}else{//borrar solo los del caso de uso actual
//$this->removeNode($this->xml, "/Sesion/Formulario", "all");
//$this->removeNode($this->xml,"/Sesion/Formulario[@idCasoUso='".$idCasoUso."']");
// new Mensajes (revisarArreglo($idCasoUso,'fabio "c"'));
$fs = $this->xml->xpath("/Sesion/Formulario");
if ($fs==false){
$fs=array();
}
foreach($fs as $a => $b){
//new Mensajes (revisarArreglo($a,'formularios "a"'));
//new Mensajes (revisarArreglo($b,'formularios "b"'));
foreach($b->attributes() as $c => $d){
if (strcmp($c, "idCasoUso")==0){
//new Mensajes (revisarArreglo($c,'atributos "c"['.$d."]"));
if (strcmp($d, "". $idCasoUso)==0){
// new Mensajes (revisarArreglo($c,'----****--- "c"['.$d."]"));
unset($b[0]);
break;
}
}
}
}
}
//$this->sincronizarBaseDatos();
}
function borrarFormulario($idCasoUso, $aux){
///echo "***borrarFormulario<br>";
$this->removeNode($this->xml,"/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$aux."']");
}
function buscarFormulario($idCasoUso, $aux){
//echo $this->geshiXML($this->xml);
//echo "/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$aux."']<br>";
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$aux."']");
//echo "buscarFormulario idCasoUso=>$idCasoUso, aux=>$aux".revisarArreglo($fs, "fs de la busqueda")."<hr>";
//var_dump($fs);
if (count($fs)>0){
//echo "true<hr>";
return true;
}
//echo "false<hr>";
return false;
}
//<adf nombre="adf" valorPorDefecto="asdfasd">XXX</adf>
function procesarCampoOcultosFormulario($campo, $formularioSesion){
$campoOculto=$formularioSesion->addChild("Parametro");
$campoOculto->addAttribute("nombre", $campo["nombre"]);
$campoOculto->addAttribute("valor", $campo["valorPorDefecto"]);
}
//Determina el numero para un nuevo destino entre anclas y formularios
function NuevoDestino(){
$NumeroDestinos=intval($this->leerParametro("NumeroDestinos"));
$NumeroDestinos++;
$this->escribirParametro("NumeroDestinos", $NumeroDestinos);
return $NumeroDestinos;
/*
$fs = $this->xml->xpath("/Sesion/Formulario");
$an = $this->xml->xpath("/Sesion/Ancla");
if ($an==false){
$an=array();
}
if ($fs==false){
$fs=array();
}
$ocupados=array();
//$r=0;
//new Mensajes (revisarArreglo($fs,'formularios "Inicio"'));
foreach($fs as $a => $b){
//new Mensajes (revisarArreglo($a,'formularios "a"'));
//new Mensajes (revisarArreglo($b,'formularios "b"'));
foreach($b->attributes() as $c => $d){
//new Mensajes (revisarArreglo($c,'atributos "c"'));
if (strcmp($c, "idForm")==0){
// new Mensajes (revisarArreglo('['.$d.']'));
// new Mensajes ('['.$d."][".($d+1)."]");
$ocupados[$d+0]=1;
//$r++;
}
}
}
foreach($an as $a => $b){
//new Mensajes (revisarArreglo($a,'formularios "a"'));
// new Mensajes (revisarArreglo($b,'formularios "b"'));
foreach($b->attributes() as $c => $d){
// new Mensajes (revisarArreglo($c,'atributos "c"'));
if (strcmp($c, "idAncla")==0){
// new Mensajes (revisarArreglo('['.$d.']'));
// new Mensajes ('['.$d."][".($d+0)."]");
//$r++;
$ocupados[$d+0]=1;
}
}
}
for($i=1;$i<10000;$i++){
if(!isset($ocupados[$i])){
return $i;
}
}
return "NoEncontroDisponible";
*/
}
//Guarda el contenidoxml generado por los casos de uso en base64_encode
function agregarXMLContenido($contenido){
$this->removeNode($this->xml, "/Sesion/xmlContenido", 'all');
$XMLcontenido=$this->xml->addChild("xmlContenido");
$XMLcontenido[]=base64_encode($contenido->asXML());
}
//Recupera el contenidoxml de la recarga anterior
function recuperarXMLContenido(){
$codigo=base64_decode($this->xml->xmlContenido[0]);
return new SimpleXMLElement($codigo);
}
//Agrega un formulario a la sesión para poderlo consultar en el proceso de los casos de usos
function agregarFormulario($formulario, $nombre, $contenido){
$campoIdCasoUso = $formulario->xpath("Propiedad[@nombre='idCasoUso']");
$campoNombreCasoUso = $formulario->xpath("Propiedad[@nombre='nombreCasoUso']");
if (count($campoIdCasoUso)<=0 && count($campoNombreCasoUso)<=0)
throw new formularioInvalidoException("No se tiene el parametro idCasoUso como propiedad en el formulario. ".$this->textoXML($formulario));
//var_dump($campoIdCasoUso[0]["valor"]);
//var_dump($campoNombreCasoUso);
$accionComplemento = $formulario->xpath("Propiedad[@nombre='accion']");
$textoAccionComplemento="";
if (count($accionComplemento)>0){
$textoAccionComplemento=$accionComplemento[0]["valor"];
}
//echo revisarArreglo($accionComplemento, "accionComplemento");
//echo "La accion complemento [".count($accionComplemento)."] es:".$textoAccionComplemento."<br>";
//$campoCasoUso = $formulario->xpath("Propiedad[@nombre='idCasoUso']");
if (count($campoIdCasoUso)>=1){
$idCasoUso=$campoIdCasoUso[0]["valor"];
$nombreCasoUso=Control0CasoUso::getNombreCasoUso($idCasoUso);
}
if (count($campoNombreCasoUso)>=1){
$nombreCasoUso=$campoNombreCasoUso[0]["valor"];
$idCasoUso=Control0CasoUso::getIdCasoUso($nombreCasoUso);
}
$total=$this->NuevoDestino();
///echo "->AgregarFormulario::el nuevo destino es: ".$total."".$this->textoXML($formulario)."<br>";
$formularioSesion=$this->xml->addChild('Formulario');
$propiedad=$formulario->addChild('Propiedad');
$propiedad->addAttribute("nombre", "Accion");
//$propiedad->addAttribute("valor", $this->prefijoFormularios.$this->idSesion."/".$total);
//$propiedad->addAttribute("valor", $this->prefijoFormularios.$campoIdCasoUso[0]["valor"]."/".$total);
/*if ($_SERVER['REMOTE_ADDR']=="190.24.69.172"){
//var_dump($total);
//var_dump($nombre);
if ($nombre=="1"){
throw new Exception("auchhh");
}
}*/
$propiedad->addAttribute("valor", $this->prefijoFormularios.$nombre."/".$total.$textoAccionComplemento);
$propiedadIdForm=$formulario->addChild('Propiedad');
$propiedadIdForm->addAttribute("nombre", "idForm");
$propiedadIdForm->addAttribute("valor", $total);
//new mensajes(revisarArreglo($formulario));
//new mensajes($this->geshiXML($formulario));
//$formularioSesion->addAttribute("idFormulario", $idCasoUso);
$formularioSesion->addAttribute("idCasoUso", $idCasoUso);
$formularioSesion->addAttribute("idForm", $total);
//$xmlContenido=$formularioSesion->addChild("xml");
//$xmlContenido=$xmlContenido->addChild("Contenido");
// Esta linea la quite para evitar los duplicados en el xml de la sesion
//append_simplexml($formularioSesion, $formulario);
//append_simplexml($xmlContenido, $contenido);
//
foreach ($formulario as $elemento){
if (strcmp($elemento->getName(), "Propiedad")==0){
$p=$formularioSesion->addChild("Propiedad");
$p->addAttribute("nombre", $elemento["nombre"]);
$p->addAttribute("valor", $elemento["valor"]);
}
}
//registrarlog("Formulario de la sesión: ".$formularioSesion->asXml());
$camposOcultos = $formulario->xpath("Campo[@tipo='oculto']");
$this->extraerNodo1p($camposOcultos, "procesarCampoOcultosFormulario", $formularioSesion);
//$this->sincronizarBaseDatos();
//new mensajes("Formulario:".$this->geshiXML($formularioSesion));
//new mensajes("Formulario:".$this->geshiXML($formulario));
}
function agregarParametroFormulario($idCasoUso, $idForm, $nombre, $valor){
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$idForm."']");
if (count($fs)>0){
$propiedad=$fs[0]->addChild('Parametro');
$propiedad->addAttribute("nombre", $nombre);
$propiedad->addAttribute("valor", $valor);
}
}
function getFormularioActual(){
$idCasoUso=$this->leerParametro("destino");
$idForm=$this->leerParametro("destinoAux");
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$idForm."']");
if (count($fs)>0)
return $fs[0];
return "";
}
function borrarFormularioActual(){
$idCasoUso=$this->leerParametro("destino");
$idForm=$this->leerParametro("destinoAux");
//echo "borrarFormularioActual1<br>";
generalXML::removeNode($this->xml,"/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$idForm."']", "all");
$this->borrarParametrosDestino();
generalXML::removeNode($this->xml,"/Sesion/Parametro[@nombre='destino' and valor='".$idCasoUso."']", "all");
generalXML::removeNode($this->xml,"/Sesion/Parametro[@nombre='destinoAux' and valor='".$idForm."']", "all");
//echo "borrarFormularioActual2<br>";
}
function leerParametrosFormularioActual($patron="", $parametro="Parametro"){
$idCasoUso=$this->leerParametro("destino");
$idForm=$this->leerParametro("destinoAux");
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$idForm."']/".$parametro);
if (strcmp($patron, "")==0){
if (count($fs)>0){
return $fs;
}
return "";
}else{
$respuesta = array();
if(is_array($fs)){
foreach($fs as $f){
if (preg_match($patron, (string)$f["nombre"])){
$respuesta[(string)$f["nombre"]]=(string)$f["valor"];
}
}
}
return $respuesta;
}
}
function leerParametroFormulario($idCasoUso, $idForm, $nombre, $parametro="Parametro"){
$fs = $this->xml->xpath("/Sesion/Formulario[@idCasoUso='".$idCasoUso."' and @idForm='".$idForm."']/".$parametro."[@nombre='$nombre']");
$r="";
if (count($fs)>0)
$r=(string)$fs[0]["valor"];
return $r;
return "";
}
function leerParametroFormularioActual($nombre, $parametro="Parametro"){
return $this->leerParametroFormulario($this->leerParametro("destino"), $this->leerParametro("destinoAux"), $nombre, $parametro);
}
function imprimir(){
return $this->textoXML($this->xml);
}
function asXML(){
return $this->xml->asXML();
}
}
?>