nextcloud/index.php

54 lines
1.5 KiB
PHP
Raw Normal View History

2010-03-10 15:03:40 +03:00
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
*
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
* 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.
*
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.
*
* 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/>.
*
2010-03-10 15:03:40 +03:00
*/
require_once( 'lib/base.php' );
2011-04-16 12:12:53 +04:00
require_once( 'appconfig.php' );
require_once( 'template.php' );
if( OC_USER::isLoggedIn()){
2011-04-16 14:18:42 +04:00
if( $_GET["logout"] ){
OC_USER::logout();
2011-04-16 15:24:26 +04:00
header( "Location: $WEBROOT");
exit();
2011-04-16 14:18:42 +04:00
}
else{
header( "Location: ".OC_APPCONFIG::getValue( "core", "defaultpage", "files/index.php" ));
exit();
}
}
else{
2011-04-16 14:18:42 +04:00
if( OC_USER::login( $_POST["user"], $_POST["password"] )){
header( "Location: ".OC_APPCONFIG::getValue( "core", "defaultpage", "files/index.php" ));
exit();
}
else{
$error = false;
// Say "bad login" in case the user wanted to login
if( $_POST["user"] && $_POST["password"] ){
$error = true;
}
OC_TEMPLATE::printGuestPage( "", "login", array( "error" => $error ));
}
2010-03-10 15:03:40 +03:00
}
?>