2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2011-03-02 01:20:16 +03:00
|
|
|
* @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
|
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
|
|
|
*/
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
$RUNTIME_NOAPPS = TRUE; //no apps, yet
|
2011-04-18 16:05:21 +04:00
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
require_once(dirname(__FILE__).'/lib/base.php');
|
|
|
|
require_once('appconfig.php');
|
|
|
|
require_once('template.php');
|
2011-04-16 17:47:27 +04:00
|
|
|
|
2011-06-20 01:33:34 +04:00
|
|
|
OC_UTIL::addScript('setup');
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
$not_installed = !OC_CONFIG::getValue('installed', false);
|
|
|
|
$install_called = (isset($_POST['install']) AND $_POST['install']=='true');
|
|
|
|
// First step : check if the server is correctly configured for ownCloud :
|
|
|
|
$errors = OC_UTIL::checkServer();
|
|
|
|
if(count($errors) > 0) {
|
|
|
|
OC_TEMPLATE::printGuestPage("", "error", array("errors" => $errors));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup required :
|
|
|
|
elseif($not_installed OR $install_called) {
|
|
|
|
require_once('setup.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Someone is logged in :
|
|
|
|
elseif(OC_USER::isLoggedIn()) {
|
|
|
|
if(isset($_GET["logout"]) and ($_GET["logout"])) {
|
2011-04-16 14:18:42 +04:00
|
|
|
OC_USER::logout();
|
2011-06-20 23:09:34 +04:00
|
|
|
header("Location: ".$WEBROOT.'/');
|
2011-04-16 15:24:26 +04:00
|
|
|
exit();
|
2011-04-16 14:18:42 +04:00
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
else {
|
|
|
|
header("Location: ".$WEBROOT.'/'.OC_APPCONFIG::getValue("core", "defaultpage", "files/index.php"));
|
2011-04-16 14:18:42 +04:00
|
|
|
exit();
|
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Someone wants to log in :
|
|
|
|
elseif(isset($_POST["user"])) {
|
2011-04-18 16:05:21 +04:00
|
|
|
OC_APP::loadApps();
|
2011-05-18 00:34:31 +04:00
|
|
|
if(OC_USER::login($_POST["user"], $_POST["password"])) {
|
|
|
|
header("Location: ".$WEBROOT.'/'.OC_APPCONFIG::getValue("core", "defaultpage", "files/index.php"));
|
2011-07-20 17:04:14 +04:00
|
|
|
if(!empty($_POST["remember_login"])){
|
|
|
|
OC_USER::setUsernameInCookie($_POST["user"]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
OC_USER::unsetUsernameInCookie();
|
|
|
|
}
|
2011-04-16 14:18:42 +04:00
|
|
|
exit();
|
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
else {
|
2011-07-22 02:47:20 +04:00
|
|
|
if(isset($_COOKIE["username"])){
|
|
|
|
OC_TEMPLATE::printGuestPage("", "login", array("error" => true, "username" => $_COOKIE["username"]));
|
|
|
|
}else{
|
|
|
|
OC_TEMPLATE::printGuestPage("", "login", array("error" => true));
|
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// For all others cases, we display the guest page :
|
|
|
|
else {
|
2011-04-18 16:05:21 +04:00
|
|
|
OC_APP::loadApps();
|
2011-07-22 02:47:20 +04:00
|
|
|
if(isset($_COOKIE["username"])){
|
|
|
|
OC_TEMPLATE::printGuestPage("", "login", array("error" => false, "username" => $_COOKIE["username"]));
|
|
|
|
}else{
|
|
|
|
OC_TEMPLATE::printGuestPage("", "login", array("error" => false));
|
|
|
|
}
|
2010-03-10 15:03:40 +03:00
|
|
|
}
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
?>
|