This repository has been archived by the owner on Apr 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Application.php
142 lines (126 loc) · 3.99 KB
/
Application.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
<?php
/**
* Clase principal de la Aplicación
* @author sbrocos
* @version v.0.2
*/
class IF_APPLICATION
{
/**
*
* @var array
*/
protected $_data;
/**
*
* @var IF_VIEW object
*/
protected $_view;
public function __construct()
{
//Carga las librerias de IF
$this->loaderIF();
//Carga la configuración General
$config = new IF_CONFIG();
$appConfig = $config->getApplicationConf();
$this->_data['layout'] = $appConfig->layout_default;
//Eliminamos variables que no necesitamos
unset ($config);
unset ($appConfig);
//
$this->getUrl();
//Creamos obj view
$this->_view = new IF_VIEW($this->_data);
$this->loadUrl();
}
/**
* Funcion que carga la libreria IF.
* Solo archivos php, el resto los ignora.
*/
public function loaderIF()
{
$path = realpath(dirname(__FILE__));
//Accedemos a la ruta de la Liberia para leer los archivos de IF
$dir_library = @opendir($path) or $this->errorApp(1);
//Include de la libreria IF, solo archivos php, el resto los ignora
while ($file = readdir($dir_library)) {
if (strpos( $file, "php")) {
include_once $path.'/'.$file;
}
}
closedir($dir_library);
}
/**
* functión que establece el errores relacionados con el Framework.
* @param integer $id
*/
protected function errorApp( $id )
{
switch ($id) {
case 1:
$mensaje = "No se ha podido leer la libreria de <b>IF<br/>";
break;
case 2:
$mensaje = "Controlador <b>NO ENCONTRADO</b>.";
break;
case 3:
$mensaje = "Fichero del Controlador <b>NO ENCONTRADO</b>.";
break;
case 3:
$mensaje = "<b>NO SE HA ENCONTRADO</b> el Action solicitado.";
break;
default:
$mensaje = "Ichi Framework, esta totalmente roto<br/>";
}
echo "<h2>ERROR FATAL:</h2>";
echo "<br/>";
echo $mensaje;
exit();
}
/**
* Función que garga la info del request para determinar controller/action.
* Si no establece por defecto INDEX en ambos casos
*/
protected function getUrl()
{
$default = "Index";
$query = parse_url($_SERVER['REQUEST_URI']);
$request = explode('/', $query['path']);
if ( count($request) > 2 ) {
$controller = strtolower($request[1]);
if ( count($request) >= 3 ) {
$action = strtolower($request[2]);
} else {
$action = $default;
}
} else {
$controller = $default;
$action = $default;
}
$this->_data['controller'] = ucfirst($controller);
$this->_data['action'] = ucfirst($action);
}
/**
* Función que carga la action para luego ejecutar la vista
* @param string $controller
* @param string $action
*/
protected function loadUrl()
{
$this->_data['controller'] .= "Controller";
$this->_data['action'] .= "Action";
$pathController = APP_PATH . "/main/controllers/" . $this->_data['controller'] .'.php';
//verificar que existe el Controlador
if (file_exists($pathController)) {
//Cargar el controlador
include_once $pathController;
//Instanciamos la clase del Controlador
$instance = new $this->_data['controller'];
$action = $this->_data['action'];
//llamamos a la función que ejecuta la action pertinente.
$instance->exec($this->_view, $this->_data['action']);
} else {
$this->errorApp(3);
}
}
}