2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2011-03-02 01:20:16 +03:00
|
|
|
* @author Frank Karlitschek
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2011-03-02 01:20:16 +03:00
|
|
|
* License as published by the Free Software Foundation; either
|
2010-03-10 15:03:40 +03:00
|
|
|
* version 3 of the License, or any later version.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-03-10 15:03:40 +03:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
*/
|
|
|
|
|
2012-05-26 21:14:24 +04:00
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
$RUNTIME_NOAPPS = TRUE; //no apps, yet
|
2011-04-18 16:05:21 +04:00
|
|
|
|
2011-07-27 21:25:49 +04:00
|
|
|
require_once('lib/base.php');
|
2011-04-16 17:47:27 +04:00
|
|
|
|
2012-08-08 23:08:20 +04:00
|
|
|
if (!OC::handleRequest()) {
|
|
|
|
// Not handled -> we display the login page:
|
2012-06-18 14:44:06 +04:00
|
|
|
OC_App::loadApps(array('prelogin'));
|
2011-10-01 13:08:49 +04:00
|
|
|
$error = false;
|
|
|
|
// remember was checked after last login
|
2012-08-09 00:42:45 +04:00
|
|
|
if (OC::tryRememberLogin()) {
|
|
|
|
// nothing more to do
|
2012-02-20 14:21:46 +04:00
|
|
|
|
2011-10-01 13:08:49 +04:00
|
|
|
// Someone wants to log in :
|
2012-08-09 00:42:45 +04:00
|
|
|
} elseif (OC::tryFormLogin()) {
|
|
|
|
$error = true;
|
2012-04-27 01:17:46 +04:00
|
|
|
|
2011-12-01 05:02:45 +04:00
|
|
|
// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
|
2012-08-09 00:42:45 +04:00
|
|
|
} elseif(OC::tryBasicAuthLogin()) {
|
|
|
|
$error = true;
|
2011-12-01 05:02:45 +04:00
|
|
|
}
|
2012-05-11 18:42:28 +04:00
|
|
|
if(!array_key_exists('sectoken', $_SESSION) || (array_key_exists('sectoken', $_SESSION) && is_null(OC::$REQUESTEDFILE)) || substr(OC::$REQUESTEDFILE, -3) == 'php'){
|
2012-04-27 16:55:06 +04:00
|
|
|
$sectoken=rand(1000000,9999999);
|
|
|
|
$_SESSION['sectoken']=$sectoken;
|
2012-06-19 19:24:55 +04:00
|
|
|
$redirect_url = (isset($_REQUEST['redirect_url'])) ? OC_Util::sanitizeHTML($_REQUEST['redirect_url']) : $_SERVER['REQUEST_URI'];
|
2012-05-19 00:56:15 +04:00
|
|
|
OC_Template::printGuestPage('', 'login', array('error' => $error, 'sectoken' => $sectoken, 'redirect' => $redirect_url));
|
2012-04-27 16:55:06 +04:00
|
|
|
}
|
2010-03-10 15:03:40 +03:00
|
|
|
}
|