-
Notifications
You must be signed in to change notification settings - Fork 5
/
App.class.php
122 lines (109 loc) · 3.73 KB
/
App.class.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
<?php
/*
* Copyright 2015 Bruno de Oliveira Francisco <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace EasyFast;
include __DIR__ . '/Config/Config.class.php';
include __DIR__ . '/Http/Restful.class.php';
use EasyFast\Common\Utils;
use EasyFast\Config\Config;
use EasyFast\Sessions\Session;
use EasyFast\Exceptions\EasyFastException;
/**
* Class App
* Main framework class, contain utils methods for application
* @author Bruno Oliveira <[email protected]>
* @package EasyFast
* @access public
*/
class App extends Config
{
/**
* Constantes do framework
*/
CONST VERSION = '1.2';
CONST NAME_FW = 'EasyFast';
CONST NAME_SPACE = 'EasyFast';
CONST SITE = 'https://github.com/bruunofco/easyfast/';
CONST AUTHOR = 'Bruno Oliveira';
public function __construct()
{
header('Developed-With: ' . App::NAME_FW . ' | ' . App::SITE);
$this->setDir(getcwd());
spl_autoload_register(array($this, 'loader'));
$fileConfig = getcwd() . '/config.ini';
if (file_exists($fileConfig)) {
$this->setConfigFile($fileConfig);
}
$fileConfigRoute = getcwd() . '/routes.ef';
if (file_exists($fileConfigRoute)) {
$this->setConfigFileRoute($fileConfigRoute);
}
}
/**
* Method run
* Executa a aplicação
* @author Bruno Oliveira <[email protected]>
* @return void
*/
public function run()
{
if ($this->getAppConfig('sessionAutoStart')) {
new Session();
}
Route::interceptRequests();
}
/**
* Method loader
* Autoloader - dynamically include the required files
* @author Bruno Oliveira <[email protected]>
* @param string $fileName Nome do arquivo a ser incluido na aplicação
* @return void
* @throws EasyFastException
*/
private function loader($fileName)
{
$fileName = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $fileName);
$fileCheck = explode(DIRECTORY_SEPARATOR, $fileName);
if ($fileCheck[0] == self::NAME_SPACE) {
unset($fileCheck[0]);
$fileName = implode(DIRECTORY_SEPARATOR, $fileCheck);
require_once __DIR__ . DIRECTORY_SEPARATOR . "{$fileName}.class.php";
} else {
if (file_exists(Config::getAppConfig('dir') . "{$fileName}.class.php")) {
require_once Config::getAppConfig('dir') . "{$fileName}.class.php";
} elseif (file_exists(strtolower(Config::getAppConfig('dir') . "{$fileName}.class.php"))) {
require_once strtolower(Config::getAppConfig('dir') . "{$fileName}.class.php");
}
}
}
/**
* Method execMethodBeforeRunApp
* Add method execute before run app
* @author Bruno Oliveira [email protected]>
* @param object|string $class
* @param string $method
* @param array $params
*/
public function execMethodBeforeRunApp($class, $method, $params = array())
{
//Registra AutoLoader
spl_autoload_register(array($this, 'loader'));
if (!is_object($class)) {
$class = new $class;
}
call_user_func_array(array($class, $method), $params);
}
}