forked from gabii998/PDAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·52 lines (51 loc) · 1.51 KB
/
index.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
<?php
// El .htaccess redirecciona todas las request a este controlador principal
session_start();
include __DIR__ . '/controladores/Comercios.php';
include __DIR__ . '/controladores/Usuarios.php';
include __DIR__ . '/controladores/Mapa.php';
//Setear en 1 para depurar errores
ini_set('display_errors', 0);
$request = $_SERVER['REDIRECT_URL'];//Valor de la url
switch ($request) {
case '/' :
require __DIR__ . '/vistas/index.php';
break;
case '' :
require __DIR__ . '/vistas/index.php';
break;
case '/Mapa' :
ControladorMapa::servirVista();
break;
case '/Registro' :
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
ControladorUsuarios::servirVistaRegistro();
}
if($_SERVER['REQUEST_METHOD'] === 'POST') {
echo ControladorUsuarios::registrar($_POST);
}
break;
case '/Comercios':
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
ControladorComercios::servirVista();
}
break;
case '/Login':
if($_SERVER['REQUEST_METHOD'] === 'POST'){
$respuesta=ControladorUsuarios::loguear($_POST);
$_SESSION=$respuesta;
// header("location:/");
echo json_encode($respuesta);
}
break;
case '/Logout':
session_unset();
header("location:/");
break;
case '/Acerca':
require __DIR__ . '/vistas/About.php';
break;
default:
echo'<h1>Página no encontrada</h1>';
break;
}