2 /***************************************************************
5 * (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Login-screen of TYPO3.
31 * Revised for TYPO3 3.6 December/2003 by Kasper Skaarhoj
34 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
37 * [CLASS/FUNCTION INDEX of SCRIPT]
42 * 120: function init()
43 * 159: function main()
44 * 268: function printContent()
46 * SECTION: Various functions
47 * 292: function makeLoginForm()
48 * 337: function makeLogoutForm()
49 * 379: function wrapLoginForm($content)
50 * 438: function checkRedirect()
51 * 495: function makeInterfaceSelectorBox()
52 * 549: function makeCopyrightNotice()
53 * 582: function makeLoginBoxImage()
54 * 622: function makeLoginNews()
57 * (This index is automatically created/updated by the extension "extdeveval")
62 define('TYPO3_PROCEED_IF_NO_USER', 1);
64 require ('template.php');
81 * Script Class for rendering the login form
83 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
90 var $redirect_url; // GPvar: redirect_url; The URL to redirect to after login.
91 var $GPinterface; // GPvar: Defines which interface to load (from interface selector)
92 var $u; // GPvar: preset username
93 var $p; // GPvar: preset password
94 var $L; // GPvar: If "L" is "OUT", then any logged in used is logged out. If redirect_url is given, we redirect to it
95 var $loginRefresh; // Login-refresh boolean; The backend will call this script with this value set when the login is close to being expired and the form needs to be redrawn.
96 var $commandLI; // Value of forms submit button for login.
99 var $redirectToURL; // Set to the redirect URL of the form (may be redirect_url or "backend.php")
100 var $L_vars; // Set to the labels used for the login screen.
102 // Internal, dynamic:
103 var $content; // Content accumulation
105 var $interfaceSelector; // A selector box for selecting value for "interface" may be rendered into this variable
106 var $interfaceSelector_jump; // A selector box for selecting value for "interface" may be rendered into this variable - this will have an onchange action which will redirect the user to the selected interface right away
107 var $interfaceSelector_hidden; // A hidden field, if the interface is not set.
109 // sets the level of security. *'normal' = clear-text. 'challenged' = hashed password/username from form in $formfield_uident. 'superchallenged' = hashed password hashed again with username.
110 var $loginSecurityLevel = 'superchallenged';
116 * Initialize the login box. Will also react on a &L=OUT flag and exit.
121 global $BE_USER,$TYPO3_CONF_VARS;
124 $this->redirect_url
= t3lib_div
::_GP('redirect_url');
125 $this->GPinterface
= t3lib_div
::_GP('interface');
127 if(t3lib_div
::getIndpEnv('TYPO3_SSL')) { // For security reasons this feature only works if SSL is used
128 $this->u
= t3lib_div
::_GP('u'); // preset username
129 $this->p
= t3lib_div
::_GP('p'); // preset password
131 $this->L
= t3lib_div
::_GP('L'); // If "L" is "OUT", then any logged in used is logged out. If redirect_url is given, we redirect to it
132 $this->loginRefresh
= t3lib_div
::_GP('loginRefresh'); // Login
133 $this->commandLI
= t3lib_div
::_GP('commandLI'); // Value of "Login" button. If set, the login button was pressed.
135 // sets the level of security from conf vars
136 if ($TYPO3_CONF_VARS['BE']['loginSecurityLevel']) {
137 $this->loginSecurityLevel
= $TYPO3_CONF_VARS['BE']['loginSecurityLevel'];
140 // Getting login labels:
141 $this->L_vars
= explode('|',$TYPO3_CONF_VARS['BE']['loginLabels']);
143 // Setting the redirect URL to "backend.php" if no alternative input is given:
144 $this->redirectToURL
= $this->redirect_url ?
$this->redirect_url
: 'backend.php';
147 if ($this->L
=='OUT' && is_object($BE_USER)) {
149 if ($this->redirect_url
) header('Location: '.t3lib_div
::locationHeaderUrl($this->redirect_url
));
155 * Main function - creating the login/logout form
160 global $TBE_TEMPLATE, $TYPO3_CONF_VARS, $BE_USER;
162 // Initialize template object:
163 $TBE_TEMPLATE->docType
='xhtml_trans';
165 // Set JavaScript for creating a MD5 hash of the password:
166 $TBE_TEMPLATE->JScode
.='
167 <script type="text/javascript" src="md5.js"></script>
168 '.$TBE_TEMPLATE->wrapScriptTags('
169 function doChallengeResponse(superchallenged) { //
170 password = document.loginform.p_field.value;
172 if (superchallenged) {
173 password = MD5(password); // this makes it superchallenged!!
175 str = document.loginform.username.value+":"+password+":"+document.loginform.challenge.value;
176 document.loginform.userident.value = MD5(str);
177 document.loginform.p_field.value = "";
184 // Checking, if we should make a redirect.
185 // Might set JavaScript in the header to close window.
186 $this->checkRedirect();
188 // Initialize interface selectors:
189 $this->makeInterfaceSelectorBox();
191 // Replace an optional marker in the "Administration Login" label
192 $this->L_vars
[6] = str_replace("###SITENAME###",$TYPO3_CONF_VARS['SYS']['sitename'],$this->L_vars
[6]);
194 // Creating form based on whether there is a login or not:
195 if (!$BE_USER->user
['uid']) {
197 if ($this->loginSecurityLevel
== 'challenged') {
198 $TBE_TEMPLATE->form
= '
199 <form action="index.php" method="post" name="loginform" onsubmit="doChallengeResponse(0);">
201 } elseif ($this->loginSecurityLevel
== 'normal') {
202 $TBE_TEMPLATE->form
= '
203 <form action="index.php" method="post" name="loginform" onsubmit="document.loginform.userident.value=document.loginform.p_field.value;document.loginform.p_field.value=\'\';return true;">
205 } else { // if ($this->loginSecurityLevel == 'superchallenged') {
206 $TBE_TEMPLATE->form
= '
207 <form action="index.php" method="post" name="loginform" onsubmit="doChallengeResponse(1);">
211 $TBE_TEMPLATE->form
.= '
212 <input type="hidden" name="login_status" value="login" />
214 $loginForm = $this->makeLoginForm();
216 $TBE_TEMPLATE->form
= '
217 <form action="index.php" method="post" name="loginform">
218 <input type="hidden" name="login_status" value="logout" />
220 $loginForm = $this->makeLogoutForm();
225 $this->content
.=$TBE_TEMPLATE->startPage('TYPO3 Login: '.$TYPO3_CONF_VARS['SYS']['sitename']);
228 $this->content
.=$this->wrapLoginForm($loginForm);
232 <input type="hidden" name="userident" value="" />
233 <input type="hidden" name="challenge" value="'.($challenge = md5(uniqid('').getmypid())).'" />
234 <input type="hidden" name="redirect_url" value="'.htmlspecialchars($this->redirectToURL
).'" />
235 <input type="hidden" name="loginRefresh" value="'.htmlspecialchars($this->loginRefresh
).'" />
236 '.$this->interfaceSelector_hidden
.'
239 // Save challenge value in session data (thanks to Bernhard Kraft for providing code):
241 $_SESSION['login_challenge'] = $challenge;
243 // This moves focus to the right input field:
244 $this->content
.=$TBE_TEMPLATE->wrapScriptTags('
246 // If the login screen is shown in the login_frameset window for re-login, then try to get the username of the current/former login from opening windows main frame:
247 if (parent.opener && parent.opener.TS && parent.opener.TS.username && document.loginform && document.loginform.username) {
248 document.loginform.username.value = parent.opener.TS.username;
251 // If for some reason there already is a username in the username for field, move focus to the password field:
252 if (document.loginform.username && document.loginform.username.value == "") {
253 document.loginform.username.focus();
254 } else if (document.loginform.p_field && document.loginform.p_field.type!="hidden") {
255 document.loginform.p_field.focus();
260 $this->content
.=$TBE_TEMPLATE->endPage();
264 * Outputting the accumulated content to screen
268 function printContent() {
280 /*****************************
284 ******************************/
287 * Creates the login form
288 * This is drawn when NO login exists.
290 * @return string HTML output
292 function makeLoginForm() {
294 // There must be no white-spaces outside of the tags (needed for buggy IE)
297 --><table cellspacing="0" cellpadding="0" border="0" id="logintable">
299 <td colspan="2"><h2>'.htmlspecialchars($this->L_vars
[6]).'</h2></td>
300 </tr>'.($this->commandLI ?
'
302 <td colspan="2"><p class="c-wrong">'.htmlspecialchars($this->L_vars
[9]).'</p></td>
304 <tr class="c-username">
305 <td><p class="c-username">'.htmlspecialchars($this->L_vars
[0]).':</p></td>
306 <td><input type="text" name="username" value="'.htmlspecialchars($this->u
).'" class="c-username" /></td>
308 <tr class="c-password">
309 <td><p class="c-password">'.htmlspecialchars($this->L_vars
[1]).':</p></td>
310 <td><input type="password" name="p_field" value="'.htmlspecialchars($this->p
).'" class="c-password" /></td>
311 </tr>'.($this->interfaceSelector
&& !$this->loginRefresh ?
'
312 <tr class="c-interfaceselector">
313 <td><p class="c-interfaceselector">'.htmlspecialchars($this->L_vars
[2]).':</p></td>
314 <td>'.$this->interfaceSelector
.'</td>
316 <tr class="c-submit">
318 <td><input type="submit" name="commandLI" value="'.htmlspecialchars($this->L_vars
[3]).'" class="c-submit" /></td>
321 <td colspan="2"><p class="c-info">'.htmlspecialchars($this->L_vars
[7]).'</p></td>
330 * Creates the logout form
331 * This is drawn if a user login already exists.
333 * @return string HTML output
335 function makeLogoutForm() {
344 <table cellspacing="0" cellpadding="0" border="0" id="logintable">
347 <td><h2>'.htmlspecialchars($this->L_vars
[6]).'</h2></td>
349 <tr class="c-username">
350 <td><p class="c-username">'.htmlspecialchars($this->L_vars
[0]).':</p></td>
351 <td><p class="c-username-current">'.htmlspecialchars($BE_USER->user
['username']).'</p></td>
352 </tr>'.($this->interfaceSelector_jump ?
'
353 <tr class="c-interfaceselector">
354 <td><p class="c-interfaceselector">'.htmlspecialchars($this->L_vars
[2]).':</p></td>
355 <td>'.$this->interfaceSelector_jump
.'</td>
357 <tr class="c-submit">
358 <td><input type="hidden" name="p_field" value="" /></td>
359 <td><input type="submit" name="commandLO" value="'.htmlspecialchars($this->L_vars
[4]).'" class="c-submit" /></td>
363 <td><p class="c-info">'.htmlspecialchars($this->L_vars
[7]).'</p></td>
372 * Wrapping the login form table in another set of tables etc:
374 * @param string HTML content for the login form
375 * @return string The HTML for the page.
377 function wrapLoginForm($content) {
380 $logo = $GLOBALS['TBE_STYLES']['logo_login'] ?
381 '<img src="'.htmlspecialchars($GLOBALS['BACK_PATH'].$GLOBALS['TBE_STYLES']['logo_login']).'" alt="" />' :
382 '<img'.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'],'gfx/typo3logo.gif','width="123" height="34"').' alt="" />';
385 $loginboxImage = $this->makeLoginBoxImage();
387 // Compile the page content:
391 Wrapper table for the login form:
393 <table cellspacing="0" cellpadding="0" border="0" id="wrapper">
395 <td class="c-wrappercell" align="center">
400 <div id="loginimage">
407 <table cellspacing="0" cellpadding="0" border="0" id="loginwrapper">
409 <td'.($this->commandLI ?
' class="error"' : '').'>'.$loginboxImage.
418 <div id="copyrightnotice">
419 '.$this->makeCopyrightNotice().'
422 '.$this->makeLoginNews().'
432 * Checking, if we should perform some sort of redirection OR closing of windows.
436 function checkRedirect() {
437 global $BE_USER,$TBE_TEMPLATE;
440 // If a user is logged in AND a) if either the login is just done (commandLI) or b) a loginRefresh is done or c) the interface-selector is NOT enabled (If it is on the other hand, it should not just load an interface, because people has to choose then...)
441 if ($BE_USER->user
['uid'] && ($this->commandLI ||
$this->loginRefresh ||
!$this->interfaceSelector
)) {
443 // If no cookie has been set previously we tell people that this is a problem. This assumes that a cookie-setting script (like this one) has been hit at least once prior to this instance.
444 if (!$_COOKIE[$BE_USER->name
]) {
445 if ($this->commandLI
=='setCookie') {
446 // we tried it a second time but still no cookie
447 // 26/4 2005: This does not work anymore, because the saving of challenge values in $_SESSION means the system will act as if the password was wrong.
448 t3lib_BEfunc
::typo3PrintError ('Login-error',"Yeah, that's a classic. No cookies, no TYPO3.<br /><br />Please accept cookies from TYPO3 - otherwise you'll not be able to use the system.",0);
451 // try it once again - that might be needed for auto login
452 $this->redirectToURL
= 'index.php?commandLI=setCookie';
456 if($redirectToURL = (string)$BE_USER->getTSConfigVal('auth.BE.redirectToURL')) {
457 $this->redirectToURL
= $redirectToURL;
458 $this->GPinterface
= '';
461 // Based on specific setting of interface we set the redirect script:
462 switch ($this->GPinterface
) {
464 $this->redirectToURL
= 'backend.php';
467 $this->redirectToURL
= 'alt_main.php';
470 $this->redirectToURL
= '../';
474 // If there is a redirect URL AND if loginRefresh is not set...
475 if (!$this->loginRefresh
) {
476 header('Location: '.t3lib_div
::locationHeaderUrl($this->redirectToURL
));
479 $TBE_TEMPLATE->JScode
.=$TBE_TEMPLATE->wrapScriptTags('
480 if (parent.opener && parent.opener.busy) {
481 parent.opener.busy.loginRefreshed();
486 } elseif(!$BE_USER->user
['uid'] && $this->commandLI
) {
492 * Making interface selector:
496 function makeInterfaceSelectorBox() {
497 global $TYPO3_CONF_VARS;
500 $this->interfaceSelector
= '';
501 $this->interfaceSelector_hidden
='';
502 $this->interfaceSelector_jump
= '';
504 // If interfaces are defined AND no input redirect URL in GET vars:
505 if ($TYPO3_CONF_VARS['BE']['interfaces'] && ($this->commandLI ||
!$this->redirect_url
)) {
506 $parts = t3lib_div
::trimExplode(',',$TYPO3_CONF_VARS['BE']['interfaces']);
507 if (count($parts)>1) { // Only if more than one interface is defined will we show the selector:
510 $tempLabels=explode(',', $this->L_vars
[5]);
513 $labels['backend'] = $tempLabels[0];
514 $labels['backend_old'] = $tempLabels[2];
515 $labels['frontend'] = $tempLabels[1];
518 $jumpScript['backend'] = 'backend.php';
519 $jumpScript['backend_old'] = 'alt_main.php';
520 $jumpScript['frontend'] = '../';
522 // Traverse the interface keys:
523 foreach($parts as $valueStr) {
524 $this->interfaceSelector
.='
525 <option value="'.htmlspecialchars($valueStr).'"'.(t3lib_div
::_GP('interface')==htmlspecialchars($valueStr) ?
' selected="selected"' : '').'>'.htmlspecialchars($labels[$valueStr]).'</option>';
526 $this->interfaceSelector_jump
.='
527 <option value="'.htmlspecialchars($jumpScript[$valueStr]).'">'.htmlspecialchars($labels[$valueStr]).'</option>';
529 $this->interfaceSelector
='
530 <select name="interface" class="c-interfaceselector">'.$this->interfaceSelector
.'
532 $this->interfaceSelector_jump
='
533 <select name="interface" class="c-interfaceselector" onchange="window.location.href=this.options[this.selectedIndex].value;">'.$this->interfaceSelector_jump
.'
536 } else { // If there is only ONE interface value set:
538 $this->interfaceSelector_hidden
='<input type="hidden" name="interface" value="'.trim($TYPO3_CONF_VARS['BE']['interfaces']).'" />';
547 * DO NOT prevent this notice from being shown in ANY WAY.
548 * According to the GPL license an interactive application must show such a notice on start-up ('If the program is interactive, make it output a short notice... ' - see GPL.txt)
549 * Therefore preventing this notice from being properly shown is a violation of the license, regardless of whether you remove it or use a stylesheet to obstruct the display.
551 * @return string Text/Image (HTML) for copyright notice.
553 function makeCopyrightNotice() {
555 // Get values from TYPO3_CONF_VARS:
556 $loginCopyrightWarrantyProvider = strip_tags(trim($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightWarrantyProvider']));
557 $loginCopyrightWarrantyURL = strip_tags(trim($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightWarrantyURL']));
559 // Make warranty note:
560 if (strlen($loginCopyrightWarrantyProvider)>=2 && strlen($loginCopyrightWarrantyURL)>=10) {
561 $warrantyNote='Warranty is supplied by '.htmlspecialchars($loginCopyrightWarrantyProvider).'; <a href="'.htmlspecialchars($loginCopyrightWarrantyURL).'" target="_blank">click for details.</a>';
563 $warrantyNote='TYPO3 comes with ABSOLUTELY NO WARRANTY; <a href="http://typo3.com/1316.0.html" target="_blank">click for details.</a>';
566 // Compile full copyright notice:
567 $copyrightNotice = '<a href="http://typo3.com/" target="_blank">'.
568 '<img src="gfx/loginlogo_transp.gif" width="75" height="19" alt="TYPO3 logo" align="left" />'.
569 'TYPO3 CMS'.($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightShowVersion']?
' ver. '.htmlspecialchars($GLOBALS['TYPO_VERSION']):'').
571 'Copyright © '.TYPO3_copyright_year
.' Kasper Skårhøj. Extensions are copyright of their respective owners. '.
572 'Go to <a href="http://typo3.com/" target="_blank">http://typo3.com/</a> for details. '.
574 'This is free software, and you are welcome to redistribute it under certain conditions; <a href="http://typo3.com/1316.0.html" target="_blank">click for details</a>. '.
575 'Obstructing the appearance of this notice is prohibited by law.';
578 return $copyrightNotice;
582 * Returns the login box image, whether the default or an image from the rotation folder.
584 * @return string HTML image tag.
586 function makeLoginBoxImage() {
588 if ($GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder']) { // Look for rotation image folder:
589 $absPath = t3lib_div
::resolveBackPath(PATH_typo3
.$GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder']);
591 // Get rotation folder:
592 $dir = t3lib_div
::getFileAbsFileName($absPath);
593 if ($dir && @is_dir
($dir)) {
595 // Get files for rotation into array:
596 $files = t3lib_div
::getFilesInDir($dir,'png,jpg,gif');
599 srand((float) microtime() * 10000000);
600 $randImg = array_rand($files, 1);
602 // Get size of random file:
603 $imgSize = @getimagesize
($dir.$files[$randImg]);
605 $imgAuthor = is_array($GLOBALS['TBE_STYLES']['loginBoxImage_author'])&&$GLOBALS['TBE_STYLES']['loginBoxImage_author'][$files[$randImg]] ?
htmlspecialchars($GLOBALS['TBE_STYLES']['loginBoxImage_author'][$files[$randImg]]) : '';
608 if (is_array($imgSize)) {
609 $loginboxImage = '<img src="'.htmlspecialchars($GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder'].$files[$randImg]).'" '.$imgSize[3].' id="loginbox-image" alt="'.$imgAuthor.'" title="'.$imgAuthor.'" />';
612 } else { // If no rotation folder configured, print default image:
614 if (strstr(TYPO3_version
,'-dev')) { // development version
615 $loginImage = 'loginbox_image_dev.png';
616 $imagecopy = 'You are running a development version of TYPO3 '.TYPO3_branch
;
618 $loginImage = 'loginbox_image.jpg';
619 $imagecopy = 'Photo by Ture Andersen (www.tureandersen.dk)';
621 $loginboxImage = '<img'.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'],'gfx/'.$loginImage,'width="200" height="133"').' id="loginbox-image" alt="'.$imagecopy.'" title="'.$imagecopy.'" />';
625 return $loginboxImage;
629 * Make login news - renders the HTML content for a list of news shown under the login form. News data is added through $TYPO3_CONF_VARS
631 * @return string HTML content
632 * @credits Idea by Jan-Hendrik Heuing
634 function makeLoginNews() {
636 // Reset output variable:
639 // Traverse news array IF there are records in it:
640 if (is_array($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews']) && count($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'])) {
641 foreach($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] as $newsItem) {
644 <td class="c-date">'.htmlspecialchars($newsItem['date']).'</td>
645 <td class="c-header">'.htmlspecialchars($newsItem['header']).'</td>
649 <td class="c-content">'.trim($newsItem['content']).'</td>
651 <tr class="c-spacer">
652 <td colspan="2"></td>
664 <h2>'.htmlspecialchars($this->L_vars
[8]).'</h2>
665 <table border="0" cellpadding="0" cellspacing="0">
677 // Include extension?
678 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/index.php']) {
679 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/index.php']);
692 $SOBE = t3lib_div
::makeInstance('SC_index');
695 $SOBE->printContent();