mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
155 lines
5.1 KiB
PHP
155 lines
5.1 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU General Public License, version 2 (GPLv2)
|
|
* Copyright 2001 - 2013 Ampache.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License v2
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
$prefix = dirname(__FILE__);
|
|
require_once $prefix . '/lib/init-tiny.php';
|
|
require_once $prefix . '/lib/install.lib.php';
|
|
|
|
set_error_handler('ampache_error_handler');
|
|
|
|
// Redirect if installation is already complete.
|
|
if (!install_check_status($configfile)) {
|
|
$redirect_url = 'login.php';
|
|
require_once AmpConfig::get('prefix') . '/templates/error_page.inc.php';
|
|
exit;
|
|
}
|
|
|
|
define('INSTALL', 1);
|
|
|
|
// Clean up incoming variables
|
|
$web_path = scrub_in($_REQUEST['web_path']);
|
|
$username = scrub_in($_REQUEST['local_username']);
|
|
$password = $_REQUEST['local_pass'];
|
|
$hostname = scrub_in($_REQUEST['local_host']);
|
|
$database = scrub_in($_REQUEST['local_db']);
|
|
$port = scrub_in($_REQUEST['local_port']);
|
|
$skip_admin = $_REQUEST['skip_admin'];
|
|
|
|
AmpConfig::set_by_array(array(
|
|
'web_path' => $web_path,
|
|
'database_name' => $database,
|
|
'database_hostname' => $hostname,
|
|
'database_port' => $port
|
|
), true);
|
|
if (!$skip_admin) {
|
|
AmpConfig::set_by_array(array(
|
|
'database_username' => $username,
|
|
'database_password' => $password
|
|
), true);
|
|
}
|
|
|
|
// Charset and gettext setup
|
|
$htmllang = $_REQUEST['htmllang'];
|
|
$charset = $_REQUEST['charset'];
|
|
|
|
if (!$htmllang) {
|
|
if ($_ENV['LANG']) {
|
|
$lang = $_ENV['LANG'];
|
|
} else {
|
|
$lang = 'en_US';
|
|
}
|
|
if (strpos($lang, '.')) {
|
|
$langtmp = explode('.', $lang);
|
|
$htmllang = $langtmp[0];
|
|
$charset = $langtmp[1];
|
|
} else {
|
|
$htmllang = $lang;
|
|
}
|
|
}
|
|
AmpConfig::set('lang', $htmllang, true);
|
|
AmpConfig::set('site_charset', $charset ?: 'UTF-8', true);
|
|
load_gettext();
|
|
header ('Content-Type: text/html; charset=' . AmpConfig::get('site_charset'));
|
|
|
|
// Correct potential \ or / in the dirname
|
|
$safe_dirname = rtrim(dirname($_SERVER['PHP_SELF']),"/\\");
|
|
|
|
$web_path = $http_type . $_SERVER['HTTP_HOST'] . $safe_dirname;
|
|
|
|
unset($safe_dirname);
|
|
|
|
switch ($_REQUEST['action']) {
|
|
case 'create_db':
|
|
if ($_POST['db_user'] == 'create_db_user') {
|
|
$new_user = scrub_in($_POST['db_username']);
|
|
$new_pass = $_POST['db_password'];
|
|
|
|
if (!strlen($new_user) || !strlen($new_pass)) {
|
|
Error::add('general', T_('Error: Ampache SQL Username or Password missing'));
|
|
require_once 'templates/show_install.inc.php';
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!$skip_admin) {
|
|
if (!install_insert_db($new_user, $new_pass, $_POST['overwrite_db'], $_REQUEST['existing_db'])) {
|
|
require_once 'templates/show_install.inc.php';
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Now that it's inserted save the lang preference
|
|
Preference::update('lang', '-1', AmpConfig::get('lang'));
|
|
|
|
header ('Location: ' . $web_path . "/install.php?action=show_create_config&local_db=$database&local_host=$hostname&local_port=$port&htmllang=$htmllang&charset=$charset");
|
|
break;
|
|
case 'create_config':
|
|
$download = (!isset($_POST['write']));
|
|
$created_config = install_create_config($download);
|
|
require_once 'templates/show_install_config.inc.php';
|
|
break;
|
|
case 'show_create_config':
|
|
require_once 'templates/show_install_config.inc.php';
|
|
break;
|
|
case 'create_account':
|
|
$results = parse_ini_file($configfile);
|
|
AmpConfig::set_by_array($results, true);
|
|
|
|
$password2 = scrub_in($_REQUEST['local_pass2']);
|
|
|
|
if (!install_create_account($username, $password, $password2)) {
|
|
require_once AmpConfig::get('prefix') . '/templates/show_install_account.inc.php';
|
|
break;
|
|
}
|
|
|
|
header ("Location: " . $web_path . '/login.php');
|
|
break;
|
|
case 'show_create_account':
|
|
$results = parse_ini_file($configfile);
|
|
|
|
/* Make sure we've got a valid config file */
|
|
if (!check_config_values($results)) {
|
|
Error::add('general', T_('Error: Config file not found or unreadable'));
|
|
require_once AmpConfig::get('prefix') . '/templates/show_install_config.inc.php';
|
|
break;
|
|
}
|
|
|
|
require_once AmpConfig::get('prefix') . '/templates/show_install_account.inc.php';
|
|
break;
|
|
case 'init':
|
|
require_once 'templates/show_install.inc.php';
|
|
break;
|
|
default:
|
|
// Show the language options first
|
|
require_once 'templates/show_install_lang.inc.php';
|
|
break;
|
|
} // end action switch
|