forked from PHPFusion/PHPFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maincore.php
287 lines (247 loc) · 10.7 KB
/
maincore.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) PHP-Fusion Inc
| https://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: maincore.php
| Author: PHP-Fusion Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
use PHPFusion\Authenticate;
// Uncomment to see server errors without modifying php.ini
ini_set('display_errors', '1');
if (preg_match("/maincore.php/i", $_SERVER['PHP_SELF'])) {
die();
}
if (!defined('IN_FUSION')) {
define('IN_FUSION', TRUE);
}
require_once __DIR__.'/includes/core_resources_include.php';
// Prevent any possible XSS attacks via $_GET.
if (stripget($_GET)) {
die("Prevented an XSS attack through a GET variable!");
}
// Establish mySQL database connection
dbconnect($db_host, $db_user, $db_pass, $db_name);
// Fetch the settings from the database
$settings = fusion_get_settings();
// Settings dependent functions
date_default_timezone_set('UTC');
//date_default_timezone_set($settings['default_timezone']);
ini_set('session.gc_probability', 1);
ini_set('session.gc_divisor', 100);
// Session lifetime. After this time stored data will be seen as 'garbage' and cleaned up by the garbage collection process.
ini_set('session.gc_maxlifetime', 172800); // 48 hours
// Session cookie life time
ini_set('session.cookie_lifetime', 172800); // 48 hours
// Prevent document expiry when user hits Back in browser
session_cache_limiter('private, must-revalidate');
session_name(COOKIE_PREFIX.'session');
// Start DB session.
if (!empty($settings['database_sessions'])) {
// Establish secondary mySQL database connection for session caches
$handler = \PHPFusion\Sessions::getInstance(COOKIE_PREFIX.'session')->setConfig($db_host, $db_user, $db_pass, $db_name);
session_set_save_handler(
[$handler, '_open'],
[$handler, '_close'],
[$handler, '_read'],
[$handler, '_write'],
[$handler, '_destroy'],
[$handler, '_clean']
);
}
unset($db_host, $db_user, $db_pass);
@session_start();
if (empty($settings)) {
if (file_exists(BASEDIR.'install.php')) {
if (file_exists(BASEDIR.'config.php')) {
@rename(BASEDIR.'config.php', BASEDIR.'config_backup_'.TIME.'.php');
}
redirect(BASEDIR.'install.php');
}
die("Website configurations do not exist, please check your config.php file or run install.php again.");
}
//ob_start("ob_gzhandler"); // Uncomment this line and comment the one below to enable output compression.
ob_start();
// Sanitise $_SERVER globals
$_SERVER['PHP_SELF'] = cleanurl($_SERVER['PHP_SELF']);
$_SERVER['QUERY_STRING'] = isset($_SERVER['QUERY_STRING']) ? cleanurl($_SERVER['QUERY_STRING']) : "";
$_SERVER['REQUEST_URI'] = isset($_SERVER['REQUEST_URI']) ? cleanurl($_SERVER['REQUEST_URI']) : "";
$PHP_SELF = cleanurl($_SERVER['PHP_SELF']);
// Redirects to the index if the URL is invalid (eg. file.php/folder/)
if ($_SERVER['SCRIPT_NAME'] != $_SERVER['PHP_SELF']) {
redirect($settings['siteurl']);
}
// Force protocol change if https turned on main settings
if ($settings['site_protocol'] == 'https' && !isset($_SERVER['HTTPS'])) {
$url = ((array)parse_url(htmlspecialchars_decode($_SERVER['REQUEST_URI']))) + [
'path' => '',
'query' => ''
];
$fusion_query = [];
if ($url['query']) {
parse_str($url['query'], $fusion_query); // this is original.
}
$prefix = !empty($fusion_query ? '?' : '');
$site_path = str_replace($settings['site_path'], '', $url['path']);
$site_path = $settings['siteurl'].$site_path.$prefix.http_build_query($fusion_query, 'flags_', '&');
redirect($site_path);
}
define("FUSION_QUERY", isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : "");
define("FUSION_SELF", basename($_SERVER['PHP_SELF']));
define("FUSION_REQUEST", isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI'] != "" ? $_SERVER['REQUEST_URI'] : $_SERVER['SCRIPT_NAME']);
// Variables initializing
$mysql_queries_count = 0;
$mysql_queries_time = [];
$locale = [];
// Calculate ROOT path for Permalinks
$current_path = html_entity_decode($_SERVER['REQUEST_URI']);
if (isset($settings['site_path']) && strcmp($settings['site_path'], "/") != 0) {
$current_path = str_replace($settings['site_path'], '', $current_path);
} else {
$current_path = ltrim($current_path, "/");
}
// for Permalinks include files.
define("PERMALINK_CURRENT_PATH", $current_path);
define('FORM_REQUEST', fusion_get_settings('site_seo') && defined('IN_PERMALINK') ? PERMALINK_CURRENT_PATH : FUSION_REQUEST);
//BREADCRUMB URL, INCLUDES PATH TO FILE AND FILENAME
//E.G. infusions/downloads/downloads.php OR VIEWPAGE.PHP
if (explode("?", PERMALINK_CURRENT_PATH)) {
$filelink = explode("?", PERMALINK_CURRENT_PATH);
define("FUSION_FILELINK", $filelink[0]);
} else {
define("FUSION_FILELINK", PERMALINK_CURRENT_PATH);
}
$count = substr_count(PERMALINK_CURRENT_PATH, "/");
$root = "";
for ($i = 0; $i < $count; $i++) { // moved 0 to 1 will crash.
$root .= "../";
}
define("ROOT", $root);
$root_count = $count - substr_count(BASEDIR, "/");
$fusion_root = '';
for ($i = 0; $i < $root_count; $i++) { // moved 0 to 1 will crash.
$fusion_root .= "../";
}
define("FUSION_ROOT", $fusion_root);
// Calculate current true url
$script_url = explode("/", $_SERVER['PHP_SELF']);
$url_count = count($script_url);
$base_url_count = substr_count(BASEDIR, "/") + 1;
$current_page = "";
while ($base_url_count != 0) {
$current = $url_count - $base_url_count;
$current_page .= "/".$script_url[$current];
$base_url_count--;
}
// Set TRUE_PHP_SELF and START_PAGE
define("TRUE_PHP_SELF", $current_page);
define("START_PAGE", substr(preg_replace("#(&|\?)(s_action=edit&shout_id=)([0-9]+)#s", "", TRUE_PHP_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : "")), 1));
/**
* Login / Logout / Revalidate
*/
if (isset($_POST['login']) && isset($_POST['user_name']) && isset($_POST['user_pass'])) {
if (\defender::safe()) {
$auth = new Authenticate($_POST['user_name'], $_POST['user_pass'], (isset($_POST['remember_me']) ? TRUE : FALSE));
$userdata = $auth->getUserData();
unset($auth, $_POST['user_name'], $_POST['user_pass']);
redirect(FUSION_REQUEST);
}
} else if (isset($_GET['logout']) && $_GET['logout'] == "yes") {
$userdata = Authenticate::logOut();
$request = clean_request('', ['logout'], FALSE);
redirect($request);
} else {
$userdata = Authenticate::validateAuthUser();
}
// User level, Admin Rights & User Group definitions
define("iGUEST", $userdata['user_level'] == USER_LEVEL_PUBLIC ? 1 : 0);
define("iMEMBER", $userdata['user_level'] <= USER_LEVEL_MEMBER ? 1 : 0);
define("iADMIN", $userdata['user_level'] <= USER_LEVEL_ADMIN ? 1 : 0);
define("iSUPERADMIN", $userdata['user_level'] == USER_LEVEL_SUPER_ADMIN ? 1 : 0);
define("iUSER", $userdata['user_level']);
define("iUSER_RIGHTS", $userdata['user_rights']);
define("iUSER_GROUPS", substr($userdata['user_groups'], 1));
// Main language detection procedure
static $current_user_language = [];
if (iMEMBER && valid_language($userdata['user_language'])) {
$current_user_language = $userdata['user_language'];
} else {
$langData = dbarray(dbquery('SELECT * FROM '.DB_LANGUAGE_SESSIONS.' WHERE user_ip=:ip', [':ip' => USER_IP]));
$current_user_language = ($langData['user_language'] ?: fusion_get_settings('locale'));
}
$language_opts = fusion_get_enabled_languages();
$enabled_languages = array_keys($language_opts);
// If language change is initiated and if the selected language is valid
if (isset($_GET['lang']) && isset($_GET['lang']) != "" && file_exists(LOCALE.$_GET['lang']."/global.php") && in_array($_GET['lang'], $enabled_languages)) {
$current_user_language = stripinput($_GET['lang']);
set_language($current_user_language);
} else {
if (count($enabled_languages) > 1) {
require __DIR__.'/includes/core_mlang_hub_include.php';
}
}
if (!defined('LANGUAGE'))
define('LANGUAGE', $current_user_language);
if (!defined('LOCALESET'))
define('LOCALESET', $current_user_language.'/');
\PHPFusion\Locale::setLocale(LOCALE.LOCALESET.'global.php');
// IP address functions
include INCLUDES."ip_handling_include.php";
// Error Handling
require_once INCLUDES."error_handling_include.php";
$defender = defender::getInstance();
if (!defined('FUSION_ALLOW_REMOTE')) {
new \Defender\Token();
}
\Defender\ImageValidation::ValidateExtensions();
// Define aidlink
if (iADMIN) {
//@todo: to remove this part for non-global approach
define("iAUTH", substr(md5($userdata['user_password'].USER_IP), 16, 16));
$aidlink = fusion_get_aidlink();
// Generate a session aid every turn
$token_time = TIME;
$algo = fusion_get_settings('password_algorithm');
$key = $userdata['user_id'].$token_time.iAUTH.SECRET_KEY;
$salt = md5($userdata['user_admin_salt'].SECRET_KEY_SALT);
$_SESSION['aid'] = $userdata['user_id'].".".$token_time.".".hash_hmac($algo, $key, $salt);
}
// PHP-Fusion user cookie functions
if (!isset($_COOKIE[COOKIE_PREFIX.'visited'])) {
$result = dbquery("UPDATE ".DB_SETTINGS." SET settings_value=settings_value+1 WHERE settings_name='counter'");
setcookie(COOKIE_PREFIX."visited", "yes", time() + 31536000, "/", "", "0");
}
//$lastvisited = Authenticate::setLastVisitCookie();
//define('LASTVISITED', Authenticate::setLastVisitCookie());
// Set admin login procedures
Authenticate::setAdminLogin();
$fusion_dynamics = Dynamics::getInstance();
$fusion_page_head_tags = &\PHPFusion\OutputHandler::$pageHeadTags;
$fusion_page_footer_tags = &\PHPFusion\OutputHandler::$pageFooterTags;
$fusion_jquery_tags = &\PHPFusion\OutputHandler::$jqueryTags;
$fusion_css_tags = &\PHPFusion\OutputHandler::$cssTags;
// Set theme using $_GET as well.
// Set theme
if ($userdata['user_level'] == USER_LEVEL_SUPER_ADMIN && isset($_GET['themes']) && theme_exists($_GET['themes'])) {
$newUserTheme = [
"user_id" => $userdata['user_id'],
"user_theme" => stripinput($_GET['themes']),
];
dbquery_insert(DB_USERS, $newUserTheme, "update");
redirect(clean_request("", ["themes"], FALSE));
}
set_theme(empty($userdata['user_theme']) ? fusion_get_settings("theme") : $userdata['user_theme']);
/**
* Reduction of 0.04 seconds in performance.
* We can use manually include the configuration if needed.
*/
\PHPFusion\Installer\Infusion_core::load_Configuration();