-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
332 lines (288 loc) · 8.19 KB
/
index.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php
/**
* @version $Id$
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define('_VALID_MOS', 1);
// checks for configuration file, if none found loads installation page
if (!file_exists('configuration.php') || filesize('configuration.php') < 10)
{
$self = rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . '/';
header("Location: http://" . $_SERVER['HTTP_HOST'] . $self . "installation/index.php");
exit();
}
require('globals.php');
require('configuration.php');
// SSL check - $http_host returns <live site url>:<port number if it is 443>
$http_host = explode(':', $_SERVER['HTTP_HOST']);
if ((!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off' || isset($http_host[1]) && $http_host[1] == 443) && substr($mosConfig_live_site, 0, 8) != 'https://')
{
$mosConfig_live_site = 'https://' . substr($mosConfig_live_site, 7);
}
require_once('includes/joomla.php');
//Installation sub folder check, removed for work with SVN
if (file_exists('installation/index.php') && $_VERSION->SVN == 0)
{
define('_INSTALL_CHECK', 1);
include($mosConfig_absolute_path . '/offline.php');
exit();
}
// displays offline/maintanance page or bar
if ($mosConfig_offline == 1)
{
require($mosConfig_absolute_path . '/offline.php');
}
// load system bot group
$_MAMBOTS->loadBotGroup('system');
// trigger the onStart events
$_MAMBOTS->trigger('onStart');
if (file_exists($mosConfig_absolute_path . '/components/com_sef/sef.php'))
{
require_once($mosConfig_absolute_path . '/components/com_sef/sef.php');
}
else
{
require_once($mosConfig_absolute_path . '/includes/sef.php');
}
require_once($mosConfig_absolute_path . '/includes/frontend.php');
// retrieve some expected url (or form) arguments
$option = strval(strtolower(mosGetParam($_REQUEST, 'option')));
$Itemid = intval(mosGetParam($_REQUEST, 'Itemid', null));
if ($option == '')
{
if ($Itemid)
{
$query = "SELECT id, link"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND id = " . (int) $Itemid
. "\n AND published = 1";
$database->setQuery($query);
}
else
{
$query = "SELECT id, link"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND published = 1"
. "\n ORDER BY parent, ordering";
$database->setQuery($query, 0, 1);
}
$menu = new mosMenu($database);
if ($database->loadObject($menu))
{
$Itemid = $menu->id;
}
$link = $menu->link;
if (($pos = strpos($link, '?')) !== false)
{
$link = substr($link, $pos + 1) . '&Itemid=' . $Itemid;
}
parse_str($link, $temp);
/** this is a patch, need to rework when globals are handled better */
foreach ($temp as $k => $v)
{
$GLOBALS[$k] = $v;
$_REQUEST[$k] = $v;
if ($k == 'option')
{
$option = $v;
}
}
}
if (!$Itemid)
{
// when no Itemid give a default value
$Itemid = 99999999;
}
// mainframe is an API workhorse, lots of 'core' interaction routines
$mainframe = new mosMainFrame($database, $option, '.');
$mainframe->initSession();
// trigger the onAfterStart events
$_MAMBOTS->trigger('onAfterStart');
// checking if we can find the Itemid thru the content
if ($option == 'com_content' && $Itemid === 0)
{
$id = intval(mosGetParam($_REQUEST, 'id', 0));
$Itemid = $mainframe->getItemid($id);
}
/** do we have a valid Itemid yet?? */
if ($Itemid === 0)
{
/** Nope, just use the homepage then. */
$query = "SELECT id"
. "\n FROM #__menu"
. "\n WHERE menutype = 'mainmenu'"
. "\n AND published = 1"
. "\n ORDER BY parent, ordering";
$database->setQuery($query, 0, 1);
$Itemid = $database->loadResult();
}
// patch to lessen the impact on templates
if ($option == 'search')
{
$option = 'com_search';
}
// loads english language file by default
if ($mosConfig_lang == '')
{
$mosConfig_lang = 'english';
}
include_once($mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php');
// frontend login & logout controls
$return = strval(mosGetParam($_REQUEST, 'return', NULL));
$message = intval(mosGetParam($_POST, 'message', 0));
// Get the information about the current user from the sessions table
$my = $mainframe->getUser();
if ($option == 'login')
{
$mainframe->login();
// JS Popup message
if ($message)
{
?>
<script language="javascript" type="text/javascript">
<!--//
alert("<?php echo addslashes( _LOGIN_SUCCESS ); ?>");
//-->
</script>
<?php
}
if ($return && !(strpos($return, 'com_registration') || strpos($return, 'com_login')))
{
// checks for the presence of a return url
// and ensures that this url is not the registration or login pages
// If a sessioncookie exists, redirect to the given page. Otherwise, take an extra round for a cookiecheck
if (isset($_COOKIE[mosMainFrame::sessionCookieName()]))
{
mosRedirect($return);
}
else
{
mosRedirect($mosConfig_live_site . '/index.php?option=cookiecheck&return=' . urlencode($return));
}
}
else
{
// If a sessioncookie exists, redirect to the start page. Otherwise, take an extra round for a cookiecheck
if (isset($_COOKIE[mosMainFrame::sessionCookieName()]))
{
mosRedirect($mosConfig_live_site . '/index.php');
}
else
{
mosRedirect($mosConfig_live_site . '/index.php?option=cookiecheck&return=' . urlencode($mosConfig_live_site . '/index.php'));
}
}
}
else if ($option == 'logout')
{
$mainframe->logout();
// JS Popup message
if ($message)
{
?>
<script language="javascript" type="text/javascript">
<!--//
alert("<?php echo addslashes( _LOGOUT_SUCCESS ); ?>");
//-->
</script>
<?php
}
if ($return && !(strpos($return, 'com_registration') || strpos($return, 'com_login')))
{
// checks for the presence of a return url
// and ensures that this url is not the registration or logout pages
mosRedirect($return);
}
else
{
mosRedirect($mosConfig_live_site . '/index.php');
}
}
else if ($option == 'cookiecheck')
{
// No cookie was set upon login. If it is set now, redirect to the given page. Otherwise, show error message.
if (isset($_COOKIE[mosMainFrame::sessionCookieName()]))
{
mosRedirect($return);
}
else
{
mosErrorAlert(_ALERT_ENABLED);
}
}
// detect first visit
$mainframe->detect();
// set for overlib check
$mainframe->set('loadOverlib', false);
$gid = intval($my->gid);
// gets template for page
$cur_template = $mainframe->getTemplate();
/** temp fix - this feature is currently disabled */
/** @global A places to store information from processing of the component */
$_MOS_OPTION = array();
// precapture the output of the component
require_once($mosConfig_absolute_path . '/editor/editor.php');
ob_start();
if ($path = $mainframe->getPath('front'))
{
$task = strval(mosGetParam($_REQUEST, 'task', ''));
$ret = mosMenuCheck($Itemid, $option, $task, $gid);
if ($ret)
{
require_once($path);
}
else
{
mosNotAuth();
}
}
else
{
header('HTTP/1.0 404 Not Found');
echo _NOT_EXIST;
}
$_MOS_OPTION['buffer'] = ob_get_contents();
ob_end_clean();
initGzip();
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
// display the offline alert if an admin is logged in
if (defined('_ADMIN_OFFLINE'))
{
include($mosConfig_absolute_path . '/offlinebar.php');
}
// loads template file
if (!file_exists($mosConfig_absolute_path . '/templates/' . $cur_template . '/index.php'))
{
echo _TEMPLATE_WARN . $cur_template;
}
else
{
require_once($mosConfig_absolute_path . '/templates/' . $cur_template . '/index.php');
echo '<!-- ' . time() . ' -->';
}
// displays queries performed for page
if ($mosConfig_debug)
{
echo $database->_ticker . ' queries executed';
echo '<pre>';
foreach ($database->_log as $k => $sql)
{
echo $k + 1 . "\n" . $sql . '<hr />';
}
echo '</pre>';
}
doGzip();