X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/5c9ce08c465a09a2e2746d7c43ae61575f47934f..a37993435294fee0961614db96bca845c336a381:/typo3/sysext/cms/tslib/index_ts.php diff --git a/typo3/sysext/cms/tslib/index_ts.php b/typo3/sysext/cms/tslib/index_ts.php index 2d3754029bd..90ec490a83a 100755 --- a/typo3/sysext/cms/tslib/index_ts.php +++ b/typo3/sysext/cms/tslib/index_ts.php @@ -1,22 +1,22 @@ + * @author Kasper Skaarhoj * @package TYPO3 * @subpackage tslib */ - + // ******************************* -// Set error reporting +// Set error reporting // ******************************* -error_reporting (E_ALL ^ E_NOTICE); +error_reporting (E_ALL ^ E_NOTICE); // ****************** @@ -55,13 +55,13 @@ error_reporting (E_ALL ^ E_NOTICE); $TYPO3_MISC['microtime_start'] = microtime(); define('TYPO3_OS', stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':''); define('TYPO3_MODE','FE'); -define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ? $HTTP_SERVER_VARS['PATH_TRANSLATED']:$HTTP_SERVER_VARS['SCRIPT_FILENAME']))); +define('PATH_thisScript',str_replace('//','/', str_replace('\\','/', (php_sapi_name()=='cgi'||php_sapi_name()=='isapi' ||php_sapi_name()=='cgi-fcgi')&&($_SERVER['ORIG_PATH_TRANSLATED']?$_SERVER['ORIG_PATH_TRANSLATED']:$_SERVER['PATH_TRANSLATED'])? ($_SERVER['ORIG_PATH_TRANSLATED']?$_SERVER['ORIG_PATH_TRANSLATED']:$_SERVER['PATH_TRANSLATED']):($_SERVER['ORIG_SCRIPT_FILENAME']?$_SERVER['ORIG_SCRIPT_FILENAME']:$_SERVER['SCRIPT_FILENAME'])))); define('PATH_site', dirname(PATH_thisScript).'/'); define('PATH_t3lib', PATH_site.'t3lib/'); define('PATH_tslib', PATH_site.'tslib/'); define('PATH_typo3conf', PATH_site.'typo3conf/'); -define('TYPO3_mainDir', 'typo3/'); // This is the directory of the backend administration for the sites of this TYPO3 installation. +define('TYPO3_mainDir', 'typo3/'); // This is the directory of the backend administration for the sites of this TYPO3 installation. if (!@is_dir(PATH_typo3conf)) die('Cannot find configuration. This file is probably executed from the wrong location.'); @@ -75,11 +75,11 @@ $TT->push('','Script start'); // ********************* -// DIV Library included +// Mandatory libraries included // ********************* -$TT->push('Include class t3lib_div',''); - require(PATH_t3lib.'class.t3lib_div.php'); - require(PATH_t3lib.'class.t3lib_extmgm.php'); +$TT->push('Include class t3lib_db, t3lib_div, t3lib_extmgm',''); + require_once(PATH_t3lib.'class.t3lib_div.php'); + require_once(PATH_t3lib.'class.t3lib_extmgm.php'); $TT->pull(); @@ -88,11 +88,14 @@ $TT->pull(); // Include configuration // ********************** $TT->push('Include config files',''); -require(PATH_t3lib.'config_default.php'); +require_once(PATH_t3lib.'config_default.php'); if (!defined ('TYPO3_db')) die ('The configuration file was not included.'); // the name of the TYPO3 database is stored in this constant. Here the inclusion of the config-file is verified by checking if this var is set. if (!t3lib_extMgm::isLoaded('cms')) die('Error: The main frontend extension "cms" was not loaded. Enable it in the extension manager in the backend.'); -$CLIENT=t3lib_div::clientInfo(); // Set to the browser: net / msie if 4+ browsers +require_once(PATH_t3lib.'class.t3lib_db.php'); +$TYPO3_DB = t3lib_div::makeInstance('t3lib_DB'); + +$CLIENT = t3lib_div::clientInfo(); // Set to the browser: net / msie if 4+ browsers $TT->pull(); @@ -112,13 +115,15 @@ $TT->pull(); // ******************************* // Checking environment // ******************************* -if (t3lib_div::int_from_ver(phpversion())<4000006) die ('TYPO3 runs with PHP4.0.6+ only'); +if (t3lib_div::int_from_ver(phpversion())<4001000) die ('TYPO3 runs with PHP4.1.0+ only'); -if (isset($HTTP_POST_VARS['GLOBALS']) || isset($HTTP_GET_VARS['GLOBALS'])) die('You cannot set the GLOBALS-array from outside the script.'); +if (isset($_POST['GLOBALS']) || isset($_GET['GLOBALS'])) die('You cannot set the GLOBALS-array from outside the script.'); if (!get_magic_quotes_gpc()) { $TT->push('Add slashes to GET/POST arrays',''); - t3lib_div::addSlashesOnArray($HTTP_GET_VARS); - t3lib_div::addSlashesOnArray($HTTP_POST_VARS); + t3lib_div::addSlashesOnArray($_GET); + t3lib_div::addSlashesOnArray($_POST); + $HTTP_GET_VARS = $_GET; + $HTTP_POST_VARS = $_POST; $TT->pull(); } @@ -126,18 +131,18 @@ if (!get_magic_quotes_gpc()) { // Create $TSFE object (TSFE = TypoScript Front End) // Connecting to database // *********************************** -$temp_TSFEclassName=t3lib_div::makeInstanceClassName('tslib_fe'); +$temp_TSFEclassName = t3lib_div::makeInstanceClassName('tslib_fe'); $TSFE = new $temp_TSFEclassName( - $TYPO3_CONF_VARS, - t3lib_div::GPvar('id'), - t3lib_div::GPvar('type'), - t3lib_div::GPvar('no_cache'), - t3lib_div::GPvar('cHash'), - t3lib_div::GPvar('jumpurl'), - t3lib_div::GPvar('MP'), - t3lib_div::GPvar('RDCT') + $TYPO3_CONF_VARS, + t3lib_div::_GP('id'), + t3lib_div::_GP('type'), + t3lib_div::_GP('no_cache'), + t3lib_div::_GP('cHash'), + t3lib_div::_GP('jumpurl'), + t3lib_div::_GP('MP'), + t3lib_div::_GP('RDCT') ); -$TSFE->connectToMySQL(); +$TSFE->connectToDB(); if ($TSFE->RDCT) {$TSFE->sendRedirect();} @@ -156,18 +161,28 @@ $TT->push('Front End user initialized',''); $TSFE->initFEuser(); $TT->pull(); +// **************** +// PRE BE_USER HOOK +// **************** +if (is_array($TYPO3_CONF_VARS['SC_OPTIONS']['tslib/index_ts.php']['preBeUser'])) { + foreach($TYPO3_CONF_VARS['SC_OPTIONS']['tslib/index_ts.php']['preBeUser'] as $_funcRef) { + $_params = array(); + t3lib_div::callUserFunction($_funcRef, $_params ,$this); + } +} + // ********* // BE_USER // ********* $BE_USER=''; -if ($HTTP_COOKIE_VARS['be_typo_user']) { // If the backend cookie is set, we proceed and checks if a backend user is logged in. +if ($_COOKIE['be_typo_user']) { // If the backend cookie is set, we proceed and checks if a backend user is logged in. $TYPO3_MISC['microtime_BE_USER_start'] = microtime(); $TT->push('Back End user initialized',''); require_once (PATH_t3lib.'class.t3lib_befunc.php'); require_once (PATH_t3lib.'class.t3lib_userauthgroup.php'); require_once (PATH_t3lib.'class.t3lib_beuserauth.php'); require_once (PATH_t3lib.'class.t3lib_tsfebeuserauth.php'); - + // the value this->formfield_status is set to empty in order to disable login-attempts to the backend account through this script $BE_USER = t3lib_div::makeInstance('t3lib_tsfeBeUserAuth'); // New backend user object $BE_USER->OS = TYPO3_OS; @@ -175,9 +190,9 @@ if ($HTTP_COOKIE_VARS['be_typo_user']) { // If the backend cookie is set, we pr $BE_USER->unpack_uc(''); if ($BE_USER->user['uid']) { $BE_USER->fetchGroupData(); - $TSFE->beUserLogin=1; + $TSFE->beUserLogin = 1; } - if ($BE_USER->checkLockToIP()) { + if ($BE_USER->checkLockToIP() && $BE_USER->checkBackendAccessSettingsFromInitPhp()) { $BE_USER->extInitFeAdmin(); if ($BE_USER->extAdmEnabled) { require_once(t3lib_extMgm::extPath('lang').'lang.php'); @@ -189,46 +204,46 @@ if ($HTTP_COOKIE_VARS['be_typo_user']) { // If the backend cookie is set, we pr $TSFE->forceTemplateParsing = $BE_USER->extGetFeAdminValue('tsdebug', 'forceTemplateParsing'); $TSFE->displayEditIcons = $BE_USER->extGetFeAdminValue('edit', 'displayIcons'); $TSFE->displayFieldEditIcons = $BE_USER->extGetFeAdminValue('edit', 'displayFieldIcons'); - - if (t3lib_div::GPvar('ADMCMD_editIcons')) { + + if (t3lib_div::_GP('ADMCMD_editIcons')) { $TSFE->displayFieldEditIcons=1; $BE_USER->uc['TSFE_adminConfig']['edit_editNoPopup']=1; } - if (t3lib_div::GPvar('ADMCMD_simUser')) { - $BE_USER->uc['TSFE_adminConfig']['preview_simulateUserGroup']=intval(t3lib_div::GPvar('ADMCMD_simUser')); + if (t3lib_div::_GP('ADMCMD_simUser')) { + $BE_USER->uc['TSFE_adminConfig']['preview_simulateUserGroup']=intval(t3lib_div::_GP('ADMCMD_simUser')); $BE_USER->ext_forcePreview=1; } - if (t3lib_div::GPvar('ADMCMD_simTime')) { - $BE_USER->uc['TSFE_adminConfig']['preview_simulateDate']=intval(t3lib_div::GPvar('ADMCMD_simTime')); + if (t3lib_div::_GP('ADMCMD_simTime')) { + $BE_USER->uc['TSFE_adminConfig']['preview_simulateDate']=intval(t3lib_div::_GP('ADMCMD_simTime')); $BE_USER->ext_forcePreview=1; } - - if ($BE_USER->extAdmModuleEnabled('edit')) { + + // Include classes for editing IF editing module in Admin Panel is open + if (($BE_USER->extAdmModuleEnabled('edit') && $BE_USER->extIsAdmMenuOpen('edit')) || $TSFE->displayEditIcons == 1) { + $TSFE->includeTCA(); if ($BE_USER->extIsEditAction()) { - $TSFE->includeTCA(); require_once (PATH_t3lib.'class.t3lib_tcemain.php'); $BE_USER->extEditAction(); } if ($BE_USER->extIsFormShown()) { - $TSFE->includeTCA(); require_once(PATH_t3lib.'class.t3lib_tceforms.php'); require_once(PATH_t3lib.'class.t3lib_iconworks.php'); require_once(PATH_t3lib.'class.t3lib_loaddbgroup.php'); require_once(PATH_t3lib.'class.t3lib_transferdata.php'); } } - - if ($TSFE->forceTemplateParsing || $TSFE->displayEditIcons || $TSFE->displayFieldEditIcons) {$TSFE->set_no_cache();} + + if ($TSFE->forceTemplateParsing || $TSFE->displayEditIcons || $TSFE->displayFieldEditIcons) { $TSFE->set_no_cache(); } } - + // $WEBMOUNTS = (string)($BE_USER->groupData['webmounts'])!='' ? explode(',',$BE_USER->groupData['webmounts']) : Array(); // $FILEMOUNTS = $BE_USER->groupData['filemounts']; } else { // Unset the user initialization. $BE_USER=''; - $TSFE->beUserLogin=0; + $TSFE->beUserLogin=0; } $TT->pull(); - $TYPO3_MISC['microtime_BE_USER_end'] = microtime(); + $TYPO3_MISC['microtime_BE_USER_end'] = microtime(); } @@ -242,19 +257,28 @@ $TT->push('Process ID',''); $TSFE->determineId(); // Now, if there is a backend user logged in and he has NO access to this page, then re-evaluate the id shown! - if (is_object($BE_USER) && !$BE_USER->extPageReadAccess($TSFE->page)) { + if ($TSFE->beUserLogin && !$BE_USER->extPageReadAccess($TSFE->page)) { + // Remove user - $BE_USER=''; - $TSFE->beUserLogin=0; + unset($BE_USER); + $TSFE->beUserLogin = 0; + // Re-evaluate the page-id. $TSFE->checkAlternativeIdMethods(); $TSFE->clear_preview(); $TSFE->determineId(); } - $TSFE->makeCacheHash(); // This was originally placed in the init- function. But moved to here because of the pEnc of simulateStaticDocuments. (200902) + $TSFE->makeCacheHash(); $TT->pull(); +// ******************************************* +// Get compressed $TCA-Array(); +// After this, we should now have a valid $TCA, though minimized +// ******************************************* +$TSFE->getCompressedTCarray(); + + // ******************************** // Starts the template // ******************************* @@ -278,21 +302,21 @@ $TT->pull(); $TSFE->getConfigArray(); -// ******************************************* -// Get compressed $TCA-Array(); -// After this, we should now have a valid $TCA, though minimized -// ******************************************* -$TSFE->getCompressedTCarray(); +// ******************************** +// Convert POST data to internal "renderCharset" if different from the metaCharset: +// ******************************* +$TSFE->convPOSTCharset(); // ******************************************* -// Setting the internal var, sys_language_uid +// Setting the internal var, sys_language_uid + locale settings // ******************************************* $TSFE->settingLanguage(); +$TSFE->settingLocale(); // ******************************** -// Check Submission of data. +// Check Submission of data. // This is done at this point, because we need the config values // ******************************* switch($TSFE->checkDataSubmission()) { @@ -334,35 +358,30 @@ if ($TSFE->isGeneratePage()) { require_once(PATH_tslib.'class.tslib_pagegen.php'); include(PATH_tslib.'pagegen.php'); } - if ($TSFE->isSearchIndexPage()) { - if ($TSFE->config['config']['index_externals']) {require_once(PATH_t3lib.'class.t3lib_htmlmail.php');} - require_once(t3lib_extMgm::extPath('indexed_search','class.indexer.php')); - } $TSFE->generatePage_postProcessing(); } elseif ($TSFE->isINTincScript()) { require_once(PATH_tslib.'class.tslib_pagegen.php'); - include(PATH_tslib.'pagegen.php'); + include(PATH_tslib.'pagegen.php'); } $TT->pull(); // ******************************** -// $GLOBALS['TSFE']->config['INTincScript'] +// $GLOBALS['TSFE']->config['INTincScript'] // ******************************* if ($TSFE->isINTincScript()) { $TT->push('Non-cached objects',''); $INTiS_config = $GLOBALS['TSFE']->config['INTincScript']; - + // Special feature: Include libraries $TT->push('Include libraries'); - reset($INTiS_config); - while(list(,$INTiS_cPart)=each($INTiS_config)) { + foreach($INTiS_config as $INTiS_cPart) { if ($INTiS_cPart['conf']['includeLibs']) { $INTiS_resourceList = t3lib_div::trimExplode(',',$INTiS_cPart['conf']['includeLibs'],1); $GLOBALS['TT']->setTSlogMessage('Files for inclusion: "'.implode(', ',$INTiS_resourceList).'"'); - reset($INTiS_resourceList); - while(list(,$INTiS_theLib)=each($INTiS_resourceList)) { - $INTiS_incFile=$GLOBALS['TSFE']->tmpl->getFileName($INTiS_theLib); + + foreach($INTiS_resourceList as $INTiS_theLib) { + $INTiS_incFile = $GLOBALS['TSFE']->tmpl->getFileName($INTiS_theLib); if ($INTiS_incFile) { require_once('./'.$INTiS_incFile); } else { @@ -374,7 +393,7 @@ if ($TSFE->isINTincScript()) { $TT->pull(); $TSFE->INTincScript(); $TT->pull(); -} +} // *************** // Output content @@ -426,7 +445,7 @@ if ($TSFE->isOutputting()) { echo ($c?'