-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelfhelp.php
261 lines (243 loc) · 10.4 KB
/
Selfhelp.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
<?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
?>
<?php
require_once "./server/service/Services.php";
require_once "./server/service/Router.php";
require_once "./server/service/PageDb.php";
require_once "./server/service/globals_untracked.php";
require_once "./server/service/globals.php";
require_once "./server/page/ExportPage.php";
require_once "./server/page/SectionPage.php";
require_once "./server/page/ComponentPage.php";
require_once "./server/ajax/AjaxRequest.php";
require_once "./server/callback/CallbackRequest.php";
function create_exportData_page($services, $selector, $option = null, $id = null)
{
$page = new ExportPage($services);
$page->output($selector, $option, $id);
}
// create callback request
function create_callback_page($services, $class, $method)
{
$callback = new CallbackRequest($services, $class, $method);
$callback->print_json();
}
/**
* A class that initialize SelfHelp
*/
class Selfhelp
{
/**
* Creating a SelfHelp Instance.
*/
public function __construct()
{
$this->init();
}
/* Private Methods *********************************************************/
private function init()
{
// load plugin globals
$this->loadPluginGlobals();
// only activate in debug mode
if (DEBUG == 1) {
set_error_handler("exception_error_handler");
}
if (defined('CORS') && CORS) {
$this->cors();
}
$services = new Services();
if (isset($_POST['mobile']) && $_POST['mobile']) {
$this->mobile_call($services);
} else {
$this->web_call($services);
}
$services->get_clockwork()->requestProcessed();
}
/**
* Load plugins globals
*/
private function loadPluginGlobals()
{
ob_start();
if ($handle = opendir(PLUGIN_SERVER_PATH)) {
while (false !== ($dir = readdir($handle))) {
if (filetype(PLUGIN_SERVER_PATH . '/' . $dir) == "dir") {
$plugin_path = __DIR__ . '/server/plugins/' . $dir . '/server/service/';
if (file_exists($plugin_path . "globals.php")) {
require_once $plugin_path . "globals.php";
}
}
}
}
ob_end_clean();
}
/**
* Enable calls with cors for mobile and mobile preview
*/
private function cors()
{
// Allow from any origin
if (
isset($_SERVER['HTTP_ORIGIN']) &&
(
strpos($_SERVER['HTTP_ORIGIN'], 'https://localhost:8100') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'http://localhost:8100') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'http://192.168.0.58') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'https://192.168.0.58') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'http://192.168.0.58:8100') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'https://192.168.0.58:8100') !== false || // used for testing
strpos($_SERVER['HTTP_ORIGIN'], 'https://tpf-test.humdek.unibe.ch') !== false ||
strpos($_SERVER['HTTP_ORIGIN'], 'https://selfhelp.philhum.unibe.ch') !== false)
) {
// Decide if the origin in $_SERVER['HTTP_ORIGIN'] is one
// you want to allow, and if so:
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Methods: GET, POST');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400'); // cache for 1 day
}
// Access-Control headers are received during OPTIONS requests
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
// may also be using PUT, PATCH, HEAD etc
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
exit(0);
}
}
// custom page creation functions
private function create_request_page($services, $class_name, $method_name, $keyword = null)
{
$ajax = new AjaxRequest($services, $class_name, $method_name, $keyword);
$ajax->print_json();
}
/**
* Catch mobile calls and output json
* @param object $services
* All the services
*/
function mobile_call($services)
{
$router = $services->get_router();
$db = $services->get_db();
$debug_start_time = microtime(true);
if (isset($_POST['id_languages']) && $_POST['id_languages'] != '') {
$_SESSION['user_language'] = $_POST['id_languages'];
$_SESSION['language'] = $_POST['id_languages'];
if (!$_SESSION['language']) {
$_SESSION['language'] = $_SESSION['default_language_id'];
}
if (isset($_SESSION['id_user']) && isset($_SESSION['user_language']) && $_SESSION['user_language'] != '') {
$db->update_by_ids('users', array("id_languages" => $_SESSION['user_language']), array('id' => $_SESSION['id_user'])); // set the language in the user table
}
}
$res = [];
if ($router->route) {
if ($router->route['target'] == "sections") {
$start_time = microtime(true);
$page = new SectionPage(
$services,
$router->route['name'],
$router->route['params'],
true
);
$start_date = date("Y-m-d H:i:s");
$res = $page->output_base_content_mobile();
if (isset($res['navigation'])) {
$res['navigation'] = array_values($res['navigation']);
$adminIndex = array_search('admin-link', array_column($res['navigation'], 'keyword'));
if ($adminIndex) {
unset($res['navigation'][$adminIndex]); //remove the admin tab if it is returned in the navigation
}
}
if (isset($res['content'])) {
$res['content'] = array_values($res['content']);
}
$end_time = microtime(true);
$res['time'] = [];
$res['time']['exec_time'] = $end_time - $start_time;
$res['time']['start_date'] = $start_date;
$res['logged_in'] = $_SESSION['logged_in'];
$res['base_path'] = BASE_PATH;
$res['default_language_id'] = LANGUAGE;
$res['user_language'] = $_SESSION['user_language'];
echo json_encode($res, JSON_UNESCAPED_UNICODE);
} else if ($router->route['target'] == "component") {
$page = new ComponentPage(
$services,
$router->route['name'],
$router->route['params']
);
$page->output();
} else if ($router->route['target'] == PAGE_ACTION_BACKEND) {
$function_name = "create_" . $router->route['name'] . "_page";
if (is_callable($function_name)) {
call_user_func_array($function_name, array_merge(array("services" => $services), $router->route['params']));
} else {
throw new Exception("Cannot call custom function '$function_name'");
}
} else if ($router->route['target'] == "ajax") {
$this->create_request_page($services, $router->route['params']['class'], $router->route['params']['method'], $router->route['name']);
}
// log user activity
$router->log_user_activity($debug_start_time, true);
} else {
// no route was matched
$page = new SectionPage($services, 'missing', array());
$page->output();
}
}
/**
* Catch web calls and output the page
* @param object $services
* All the services
*/
private function web_call($services)
{
// call closure or throw 404 status
$router = $services->get_router();
$debug_start_time = microtime(true);
if ($router->route) {
if ($router->route['target'] == "sections") {
$page = new SectionPage(
$services,
$router->route['name'],
$router->route['params']
);
$page->output();
} else if ($router->route['target'] == "component") {
$page = new ComponentPage(
$services,
$router->route['name'],
$router->route['params']
);
$page->output();
} else if ($router->route['target'] == PAGE_ACTION_BACKEND) {
$function_name = "create_" . $router->route['name'] . "_page";
if (is_callable($function_name)) {
call_user_func_array($function_name, array_merge(array("services" => $services), $router->route['params']));
} else {
$page = new SectionPage($services, 'missing', array());
$page->output();
throw new Exception("Cannot call custom function '$function_name'");
}
} else if ($router->route['target'] == "ajax") {
$this->create_request_page($services, $router->route['params']['class'], $router->route['params']['method'], $router->route['name']);
}
// log user activity
$router->log_user_activity($debug_start_time);
$router->get_other_users_editing_this_page();
} else {
// no route was matched
$page = new SectionPage($services, 'missing', array());
$page->output();
}
}
/* Public Methods *********************************************************/
}
?>