X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/8a77d0b3c6347150fe4ac26aeb17b738e91351dc..0ab95802d2de706436ca18dc702c70da9443ec1c:/sistema/www/login.php?ds=sidebyside diff --git a/sistema/www/login.php b/sistema/www/login.php index f78827c..1ef3775 100644 --- a/sistema/www/login.php +++ b/sistema/www/login.php @@ -1,65 +1,72 @@ Insertar_Usuario($MECON_DNI,$MECON_LOGIN,$MECON_NOMBRE); - // Fin Agregado MANAZAR - + if(! @ $_POST['usuario'] || ! @ $info[0]['uidnumber'][0]) + $error = true; + else + { + $_SESSION['usuario'] = $_POST['usuario']; + $_SESSION['documento'] = $info[0]['uidnumber'][0]; + // Agregado por culpa de Aldoros + $aux = split('-',$_SESSION['documento']); + $_SESSION['documento'] = (count($aux) == 3) ? $aux[1] : $aux[0]; + // Agregado MANAZAR + $MECON_DNI= $info[0]['uidnumber'][0]; + $MECON_NOMBRE= $info[0]['sn'][0]." ".$info[0]['givenname'][0]; + $MECON_LOGIN= $_POST['usuario']; + $usuario=& new MECON_USUARIO($DB); + $usuario->Insertar_Usuario($MECON_DNI,$MECON_LOGIN,$MECON_NOMBRE); + // Fin Agregado MANAZAR + } } } + { - if(!isset($_SESSION['usuario'])) + if(!isset($_SESSION['usuario']) ) { - if((isset($_GET['redirect']) && $_GET['redirect'] == 'sistemas') || - (isset($_POST['redirect']) && $_POST['redirect'] == 'sistemas')) - { + if (preg_match('/sistemas/', @$_REQUEST['redirect']) || @$_REQUEST['embperl']) { $m = new HTML_DietMarco('sistemas', 'Sistemas'); - $m->addTitle('Sistemas'); +// $m->addTitle('Sistemas'); } else { $m = new HTML_DietMarco('servicios', 'Servicios'); - $m->addTitle('Servicios'); +// $m->addTitle('Servicios'); } $login = new HTML_Login(); if(isset($error) && $error == 1) - $login->login_incorrecto = true;//FIXME terminar de prgramar cuando haya ldap + $login->login_incorrecto = true; $t = new HTML_Table(array('width' => 760, 'align' => 'center', 'cellspacing' => 0, @@ -75,18 +82,25 @@ } } - if(isset($_SESSION['usuario']) && - (isset($_POST['redirect']) || isset($_GET['redirect']))) + if(isset($_SESSION['usuario']) && ! @ $error && + (@$_REQUEST['redirect'])) { - @ $redirect = $_GET['redirect'].$_POST['redirect']; - $db = DB::Connect('mysql://intranet:intranet@bal747f/intranet'); + $redirect = $_REQUEST['redirect']; $query = "SELECT link FROM servicio WHERE servicio = $redirect"; - $link = $db->getOne($query); - if(PEAR::isError($link)) - header('location: '.$redirect); + $link = $DB->getOne($query); + if(PEAR::isError($link)) { + + if (@$_REQUEST['embperl']) { + header('Location: /Php2Embperl_Session?redirect='.$redirect); + } + else { + header('Location: '.$redirect); + } + } else header('location: '.$link); - } + } + ?>