]> git.llucax.com Git - mecon/ai.git/blob - sistema/www/index.php
11dede83a66e5955d288bc9a066be31919794d66
[mecon/ai.git] / sistema / www / index.php
1 <?php
2 // vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                  AI (Administrador de Intranet)                    |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI.                                           |
8 // |                                                                    |
9 // | AI is free software; you can redistribute it and/or modify         |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | AI is distributed in the hope that it will be useful, but          |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: vie jun 27 17:08:18 ART 2003                               |
24 // | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30 require_once 'MECON/general.php';
31 prepend_include_path('/var/www/sistemas/ai/sistema/local_lib');
32 require_once 'MECON/HTML/Error.php';
33 require_once 'permisos.php';
34
35 // Debug. {{{
36 require_once 'PEAR.php';
37 #PEAR::setErrorHandling(PEAR_ERROR_TRIGGER);
38 PEAR::setErrorHandling(PEAR_ERROR_RETURN);
39 // }}}
40
41 // Creo la base de datos. {{{
42 require_once 'AI/DB.php';
43 $db =& AI_DB::connect('../conf/DB.ini');
44 if (DB::isError($db)) {
45     die($db->getMessage());
46 }
47 // }}}
48
49 // Si no está logueado, se redirige a la Intranet. {{{
50 if (!@$_SESSION['usuario']) {
51     header('Location: /sistemas/intranet/sistemas');
52 }
53 // }}}
54
55 // Creo el objeto de permisos y chequeo que tenga al menos un permiso para seguir. {{{
56 require_once 'SAMURAI/Perm.php';
57 $perm = new SAMURAI_Perm($_SESSION['usuario'], AI_PERM, $db);
58 $perm->chequear(AI_PERM_NOTICIAS, AI_PERM_SERVICIOS, AI_PERM_SISTEMAS);
59 // }}}
60
61 // Creo el Marco. {{{
62 require_once 'MECON/Marco.php';
63 $marco = new MECON_Marco('../conf/Marco.php', $perm);
64 // }}}
65
66 // Averiguo si estoy administrando algún tipo de objeto. {{{
67 $tipo = null;
68 if (@$_SERVER['PATH_INFO']) {
69     $tmp = ltrim($_SERVER['PATH_INFO'], '/');
70     if ($tmp == 'grupo') {
71         $tipo    = $tmp;
72         $clase   = 'AI_GrupoSecciones';
73         $require = 'AI/GrupoSecciones.php';
74         $tabla   = 'grupo_secciones';
75         $nombre  = 'grupo de secciones';
76         $perm->chequear(AI_PERM_NOTICIAS);
77     } elseif ($tmp == 'servicio') {
78         $tipo    = $tmp;
79         $clase   = 'AI_Servicio';
80         $require = 'AI/Servicio.php';
81         $tabla   = $tipo;
82         $nombre  = $tipo;
83         $perm->chequear(AI_PERM_SERVICIOS);
84     } elseif ($tmp == 'sistema') {
85         $tipo    = $tmp;
86         $clase   = 'AI_Sistema';
87         $require = 'AI/Sistema.php';
88         $tabla   = $tipo;
89         $nombre  = $tipo;
90         $perm->chequear(AI_PERM_SISTEMAS);
91     } else { // No hay un objeto válido para administrar.
92         header('Location: '.$_SERVER['SCRIPT_NAME']);
93     }
94 }
95 // }}}
96
97 // Si tiene un tipo, estamos administrando algun objeto. {{{
98 if ($tipo) {
99
100     // Creo formulario. {{{
101     require_once 'AI/Form.php';
102     $form =& new AI_Form;
103     // }}}
104
105     // Creo un objeto y seteo su id. {{{
106     require_once $require;
107     $obj = new $clase;
108     $obj->$tipo = @$_REQUEST['id'];
109     // }}}
110
111     // Verifico que la acción sea válida y si no lo es hago que sea un alta. {{{
112     switch(@$_REQUEST['accion']) {
113         case AI_BAJA:
114         case AI_MODIF:
115             $accion = $_REQUEST['accion'];
116             break;
117         default:
118             $accion = AI_ALTA;
119     }
120     // }}}
121
122     // Modifico la acción si ya se envió el formulario. {{{
123     $botones = $form->getSubmitValue('botones');
124     if ($boton = @join('', array_keys($botones))) {
125         $boton = $boton . '_' . strtolower($botones[$boton]);
126     }
127     switch ($boton) {
128         case 'aceptar_agregar':
129             $accion = AI_ALTA;
130             break;
131         case 'modificar_borrar':
132             // Viene de modificar,  hay que confirmar primero.
133             $a_confirmar = true;
134         case 'aceptar_borrar':
135             $accion = AI_BAJA;
136             $obj->$tipo = $form->getSubmitValue($tipo);
137             break;
138         case 'borrar_cancelar':
139             // Indico que viene de un formulario cancelado.
140             $cancelado = true;
141         case 'aceptar_modificar':
142             $accion = AI_MODIF;
143             $obj->$tipo = $form->getSubmitValue($tipo);
144             break;
145     }
146     // }}}
147
148     // Inicio el formulario, cargando datos de ser necesario. {{{
149     if ($accion & (AI_BAJA | AI_MODIF)) {
150         $err =& $obj->cargar($db);
151         if (PEAR::isError($err)) {
152             die($err->getMessage());
153         }
154         $form->iniciar($obj, $accion, $db);
155     } else {
156         $accion = AI_ALTA;
157         $form->iniciar($obj, $accion, $db);
158     }
159     // }}}
160
161     // Freezo el formulario si se está confirmando. {{{
162     if (@$a_confirmar) {
163         $form->freeze();
164     }
165     // }}}
166
167     // Si los datos del formulario son válidos, hago el ABM. {{{
168     if ($form->validate()) {
169         switch ($accion) {
170             case AI_ALTA: // {{{
171                 $form->llenarObjeto($obj);
172                 $err =& $obj->guardar($db, true);
173                 if (PEAR::isError($err)) {
174                     if (DB::isError($err)
175                             and $err->getCode() == DB_ERROR_ALREADY_EXISTS) {
176                         $error = new MECON_HTML_Error(
177                             "Ya existe un $nombre con el identificador "
178                             . $obj->$tipo);
179                     } else {
180                         $error = new MECON_HTML_Error('Error no esperado: '
181                             . $err->getMessage());
182                     }
183                     $marco->addBody($error);
184                 } else {
185                     header(sprintf('Location: %s?accion=%d&id=%d',
186                         $tipo, AI_MODIF, $obj->$tipo));
187                     exit;
188                 }
189                 break;
190             // }}}
191             case AI_BAJA: // {{{
192                 if (!@$a_confirmar) {
193                     $form->llenarObjeto($obj);
194                     $err =& $obj->borrar($db);
195                     if (AI_Error::isError($err)
196                             and $err->getCode() == AI_ERROR_TIENE_HIJOS) {
197                         $error = new MECON_HTML_Error('No se puede borrar el '
198                             . $nombre . ' porque todavía tiene "hijos".'
199                             . ' Elimine todos los "hijos" y pruebe otra vez.');
200                         $marco->addBody($error);
201                     } elseif (PEAR::isError($err)) {
202                         $error = new MECON_HTML_Error('Error no esperado: '
203                             . $err->getMessage());
204                         $marco->addBody($error);
205                     } else {
206                         header("Location: $tipo");
207                         exit;
208                     }
209                 }
210                 break;
211             // }}}
212             case AI_MODIF: // {{{
213                 if (!@$cancelado) {
214                     $form->llenarObjeto($obj);
215                     $err =& $obj->guardar($db);
216                     if (PEAR::isError($err)) {
217                         $error = new MECON_HTML_Error('Error no esperado: ' . $err->getMessage());
218                         $marco->addBody($error);
219                     } else {
220                         header(sprintf('Location: %s?accion=%d&id=%d',
221                             $tipo, AI_MODIF, $obj->$tipo));
222                         exit;
223                     }
224                 }
225                 break;
226             // }}}
227         }
228     }
229     // }}}
230
231     // Creo el árbol con el tipo de objeto que manejo y lo agrego a la página. {{{
232     require_once 'AI/Arbol.php';
233     $arbol = new AI_Arbol($obj, $db, false);
234     // }}}
235
236     // Agrego el menu, link para nuevo y formulario a la página. {{{
237     $marco->addMenuVertical($arbol);
238     if ($accion & ~AI_ALTA) {
239         require_once 'MECON/HTML/Image.php';
240         require_once 'MECON/HTML/Link.php';
241         $marco->addBody('<div class="texto11_negro" valign="middle" align="right">');
242         $link = new MECON_HTML_Link($tipo);
243         $link->addContents('Nuevo');
244         $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo',
245             array('border' => 0, 'align'  => 'middle',));
246         $link->addContents($img);
247         $marco->addBody($link);
248         $marco->addBody('</div>');
249     }
250     $marco->addBody($form);
251     // }}}
252
253 // }}}
254
255 // No se está editando nada, agrego la imágen de bienvenida a la página. {{{
256 } else {
257     require_once 'MECON/HTML/Image.php';
258     $marco->setEspacios(false);
259     $marco->addBody(new MECON_HTML_Image('images/home', 'Adminitrador de Intranet'));
260 }
261 // }}}
262
263 // Muestro la página. {{{
264 $marco->display();
265 // }}}
266
267 ?>