-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.php
264 lines (208 loc) · 5.74 KB
/
app.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
class App
{
private static $_instance = null;
private static $_config = null;
private $_userId = null;
private $_user = null;
private $_scripts = array(); // Список подключаемых скриптов
private $_css = array(); // Список подключаемых css
private $_errors = array(); // Ошибки в ходе рендера
private $_apiError = null; // Ошибка API
public function __construct()
{
$this->_userId = isset( $_COOKIE['id'] )? $_COOKIE['id'] : null;
}
// Получить сущность
public static function instance()
{
if( self::$_instance === null )
self::$_instance = new App();
return self::$_instance;
}
// Получить конфиг
public static function config()
{
if( self::$_config === null )
self::$_config = new Config();
return self::$_config;
}
// Добавить ошибку
public function addError( $str )
{
$this->_errors[] = $str;
}
// Получить список ошибок
public function getErrors()
{
return $this->_errors;
}
// Есть ли ошибки?
public function isErrorsExists()
{
return !empty($this->_errors);
}
// Получить Id пользователя
public function getUserId()
{
return $this->_userId;
}
// Получить пользователя
public function getUser()
{
if( $this->_user === null )
{
$userId = $this->getUserId();
if( !empty($userId) )
{
$q = new UserQuery();
$this->_user = $q->findOneById( $userId );
if( empty($this->_user) )
App::instance()->addError( 'Не найден пользователь!' );
}
}
return $this->_user;
}
// Получить Id пользователя
public function getApiErrors()
{
return array( $this->_apiError );
}
// Добавить скрипт
public function addScript( $url )
{
if( in_array( $url, $this->_scripts ) )
return;
$this->_scripts[] = $url;
}
// Подключить скрипты
private function includeScripts()
{
foreach( $this->_scripts as $val )
echo '<script type="text/javascript" src="js/'.$val.'"></script>';
$this->_scripts = array();
}
// Добавить css
public function addCss( $url )
{
if( in_array( $url, $this->_css ) )
return;
$this->_css[] = $url;
}
// Подключить css
private function includeCss()
{
foreach( $this->_css as $val )
echo '<link rel="stylesheet" href="css/'.$val.'" type="text/css">';
$this->_css = array();
}
// Запустить
public function run()
{
$con = Propel::getConnection('propel');
$con->useDebug(true);
/* $res = App::instance()->api( 'getRooms' );
var_dump( $res );
echo $con->getLastExecutedQuery();
return;*/
// Загружаем базовые CSS
$this->addCss( 'reset.css' );
$this->addCss( 'main.css' );
try
{
$mainPage = new PlainPhpView();
$routeArr = RouteUtils::getRoute();
$page = $routeArr['page'];
$action = $routeArr['action'];
$pageName = RouteUtils::getPageByRoute( $page, $action );
switch( $page )
{
case 'mainPage':
require 'pages/mainPage.php';
$pageObj = new MainPage( $mainPage, $page, $action );
$pageRes = $pageObj->show();
break;
case 'registration':
require 'pages/registrationPage.php';
$pageObj = new RegistrationPage( $mainPage, $page, $action );
$pageRes = $pageObj->show();
break;
case 'createField':
require 'pages/createFieldPage.php';
$pageObj = new CreateFieldPage( $mainPage, $page, $action );
$pageRes = $pageObj->show();
break;
case 'rooms':
require 'pages/roomsPage.php';
$pageObj = new RoomsPage( $mainPage, $page, $action );
$pageRes = $pageObj->show();
break;
}
$this->includeCss();
$this->includeScripts();
if( !empty($this->_errors) )
$mainPage->assign( 'errors', $this->_errors );
// Если вызвали ajax-запросом, то формируем правильный JSON
$isAjax = HttpUtils::getPost('isAjax', false);
if( $isAjax )
{
$res = array(
'data' => $pageRes,
);
// Очищаем буфер обмена
ob_end_clean();
echo json_encode($res);
exit(); // Выходим, иначе будет не валидный JSON в ответе
}
print $mainPage->fetch( $pageName );
//var_dump( $_POST );
var_dump( $page );
var_dump( $action );
}
catch( Exception $e )
{
echo $con->getLastExecutedQuery();
throw $e;
}
echo $con->getLastExecutedQuery();
}
// Вызов методов API
public function api( $method, $params=array() )
{
$this->_apiError = null;
$salt = 'darkair';
$auth = md5(md5($method.serialize($params).$salt));
$p['auth'] = $auth;
$p['uid'] = $this->getUserId();
$p['method'] = $method;
$p['params'] = serialize( $params );
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, self::config()->apiUrl );
curl_setopt( $ch, CURLOPT_POST, true );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $p );
$res = curl_exec( $ch );
curl_close( $ch );
if( get_magic_quotes_gpc() )
$res = stripslashes($res);
$resEnd = unserialize( $res );
if( isset( $resEnd['error'] ) )
{
// Если вызвали ajax-запросом, то падаем с исключением
if( HttpUtils::getPost('isAjax', false) == true )
throw new Exception( $resEnd['error'] );
$this->_apiError = $resEnd['error'];
return false;
}
if( !isset($resEnd['data']) )
{
// Если вызвали ajax-запросом, то падаем с исключением
if( HttpUtils::getPost('isAjax', false) == true )
throw new Exception( $res );
$this->_apiError = $res;
return false;
}
return $resEnd['data'];
}
}
?>