-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
335 lines (280 loc) · 9.12 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
332
333
334
335
<?php
/**
* Contao Open Source CMS
* Copyright (C) 2005-2011 Leo Feyer
*
* Formerly known as TYPOlight Open Source CMS.
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program. If not, please visit the Free
* Software Foundation website at <http://www.gnu.org/licenses/>.
*
* PHP version 5
* @copyright Leo Feyer 2005-2011
* @author Leo Feyer <http://www.contao.org>
* @package Frontend
* @license LGPL
* @filesource
*/
/**
* Initialize the system
*/
define('TL_MODE', 'FE');
require('system/initialize.php');
/**
* Class Index
*
* Main front end controller.
* @copyright Leo Feyer 2005-2011
* @author Leo Feyer <http://www.contao.org>
* @package Controller
*/
class Index extends Frontend
{
/**
* Initialize the object
*/
public function __construct()
{
// Try to read from cache
$this->outputFromCache();
// Load user object before calling the parent constructor
$this->import('FrontendUser', 'User');
parent::__construct();
// Check whether a user is logged in
define('BE_USER_LOGGED_IN', $this->getLoginStatus('BE_USER_AUTH'));
define('FE_USER_LOGGED_IN', $this->getLoginStatus('FE_USER_AUTH'));
// HOOK: trigger recall extension
if (!FE_USER_LOGGED_IN && $this->Input->cookie('tl_recall_fe') && in_array('recall', $this->Config->getActiveModules()))
{
Recall::frontend($this);
}
}
/**
* Run the controller
*/
public function run()
{
global $objPage;
// Get page ID
$pageId = $this->getPageIdFromUrl();
// Load a website root page object if there is no page ID
if (is_null($pageId))
{
$objHandler = new $GLOBALS['TL_PTY']['root']();
$pageId = $objHandler->generate($this->getRootIdFromUrl(), true);
}
// Throw a 404 error if URL rewriting is active and the URL contains the index.php fragment
if ($GLOBALS['TL_CONFIG']['rewriteURL'] && strncmp($this->Environment->request, 'index.php/', 10) === 0)
{
$this->User->authenticate();
$objHandler = new $GLOBALS['TL_PTY']['error_404']();
$objHandler->generate($pageId);
}
$time = time();
// Get the current page object
$objPage = $this->Database->prepare("SELECT * FROM tl_page WHERE (id=? OR alias=?)" . (!BE_USER_LOGGED_IN ? " AND (start='' OR start<$time) AND (stop='' OR stop>$time) AND published=1" : ""))
->execute((is_numeric($pageId) ? $pageId : 0), $pageId);
// Check the URL of each page if there are multiple results
if ($objPage->numRows > 1)
{
$objNewPage = null;
$strHost = $this->Environment->host;
while ($objPage->next())
{
$objCurrentPage = $this->getPageDetails($objPage->id);
// Look for a root page whose domain name matches the host name
if ($objCurrentPage->domain == $strHost || $objCurrentPage->domain == 'www.' . $strHost)
{
$objNewPage = $objCurrentPage;
break;
}
// Fall back to a root page without domain name
if ($objCurrentPage->domain == '')
{
$objNewPage = $objCurrentPage;
}
}
// Matching root page found
if (is_object($objNewPage))
{
$objPage = $objNewPage;
}
}
// Load an error 404 page object if the result is empty or still ambiguous
if ($objPage->numRows != 1)
{
$this->User->authenticate();
$objHandler = new $GLOBALS['TL_PTY']['error_404']();
$objHandler->generate($pageId);
}
// Load a website root page object if the page is a website root page
if ($objPage->type == 'root')
{
$objHandler = new $GLOBALS['TL_PTY']['root']();
$objHandler->generate($objPage->id);
}
// Inherit settings from parent pages if it has not been done yet
if (!is_bool($objPage->protected))
{
$objPage = $this->getPageDetails($objPage->id);
// Check whether there are domain name restrictions
if (strlen($objPage->domain))
{
$strDomain = preg_replace('/^www\./i', '', $objPage->domain);
// Load an error 404 page object
if ($strDomain != $this->Environment->host)
{
$objHandler = new $GLOBALS['TL_PTY']['error_404']();
$objHandler->generate($objPage->id, $strDomain, $this->Environment->host);
}
}
}
// Authenticate the current user
if (!$this->User->authenticate() && $objPage->protected && !BE_USER_LOGGED_IN)
{
$objHandler = new $GLOBALS['TL_PTY']['error_403']();
$objHandler->generate($pageId);
}
// Check user groups if the page is protected
if ($objPage->protected && !BE_USER_LOGGED_IN && (!is_array($objPage->groups) || count($objPage->groups) < 1 || count(array_intersect($objPage->groups, $this->User->groups)) < 1))
{
$this->log('Page "' . $pageId . '" can only be accessed by groups "' . implode(', ', (array) $objPage->groups) . '" (current user groups: ' . implode(', ', $this->User->groups) . ')', 'Index run()', TL_ERROR);
$objHandler = new $GLOBALS['TL_PTY']['error_403']();
$objHandler->generate($pageId);
}
// Load the page object depending on its type
$objHandler = new $GLOBALS['TL_PTY'][$objPage->type]();
switch ($objPage->type)
{
case 'root':
case 'error_403':
case 'error_404':
$objHandler->generate($pageId);
break;
default:
$objHandler->generate($objPage);
break;
}
}
/**
* Load the page from the cache table
*/
protected function outputFromCache()
{
// Build page if a user is logged in or there is POST data
if (!empty($_POST) || $_SESSION['TL_USER_LOGGED_IN'] || $_SESSION['DISABLE_CACHE'])
{
return;
}
$this->import('Environment');
/**
* If the request string is empty, look for a cached page matching the
* primary browser language. This is a compromise between not caching
* empty requests at all and considering all browser languages, which
* is not possible for various reasons.
*/
if ($this->Environment->request == '' || $this->Environment->request == 'index.php')
{
$strCacheKey = $this->Environment->base .'empty.'. $this->Environment->httpAcceptLanguage[0];
}
else
{
$strCacheKey = $this->Environment->base . $this->Environment->request;
}
$strCacheFile = TL_ROOT . '/system/tmp/' . md5($strCacheKey);
// Return if the file does not exist
if (!file_exists($strCacheFile))
{
return;
}
$expire = null;
$content = null;
// Include file
ob_start();
require_once($strCacheFile);
// File has expired
if ($expire < time())
{
ob_end_clean();
return;
}
// Read buffer
$strBuffer = ob_get_contents();
ob_end_clean();
/**
* Copyright notice
*
* ACCORDING TO THE LESSER GENERAL PUBLIC LICENSE (LGPL),YOU ARE NOT
* PERMITTED TO RUN CONTAO WITHOUT THIS COPYRIGHT NOTICE. CHANGING,
* REMOVING OR OBSTRUCTING IT IS PROHIBITED BY LAW!
*/
$strBuffer = preg_replace
(
'/(<head[^>]*>)/',
"$1\n<!--\n\n"
. "\tThis website is powered by Contao Open Source CMS :: Licensed under GNU/LGPL\n"
. "\tCopyright ©2005-" . date('Y') . " by Leo Feyer :: Extensions are copyright of their respective owners\n"
. "\tVisit the project website at http://www.contao.org for more information\n\n"
. "//-->",
$strBuffer, 1
);
// Session required to determine the referer
$this->import('Session');
$session = $this->Session->getData();
// Set new referer
if (!isset($_GET['pdf']) && !isset($_GET['file']) && !isset($_GET['id']) && $session['referer']['current'] != $this->Environment->requestUri)
{
$session['referer']['last'] = $session['referer']['current'];
$session['referer']['current'] = $this->Environment->requestUri;
}
// Store session data
$this->Session->setData($session);
// Content type
if (!$content)
{
$content = 'text/html';
}
header('Content-Type: ' . $content . '; charset=' . $GLOBALS['TL_CONFIG']['characterSet']);
// Send cache headers
if (!is_null($expire) && ($GLOBALS['TL_CONFIG']['cacheMode'] == 'both' || $GLOBALS['TL_CONFIG']['cacheMode'] == 'browser'))
{
header('Cache-Control: public, max-age=' . ($expire - time()));
header('Expires: ' . gmdate('D, d M Y H:i:s', $expire) . ' GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header('Pragma: public');
}
else
{
header('Cache-Control: no-cache');
header('Cache-Control: pre-check=0, post-check=0', false);
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Expires: Wed, 28 Jan 1976 11:52:00 GMT');
header('Pragma: no-cache');
}
// Load the default language file (see #2644)
$this->import('Config');
$this->loadLanguageFile('default');
// Replace insert tags
$strBuffer = $this->replaceInsertTags($strBuffer);
$strBuffer = str_replace(array('[{]', '[}]'), array('{{', '}}'), $strBuffer);
echo $strBuffer;
exit;
}
}
/**
* Instantiate controller
*/
$objIndex = new Index();
$objIndex->run();
?>