1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2008 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class installer {
static function command_line() {
// Set error handlers
set_error_handler(create_function('$errno, $errstr, $errfile, $errline',
'throw new ErrorException($errstr, 0, $errno, $errfile, $errline);'));
set_exception_handler(array("installer", "print_exception"));
if (self::already_installed()) {
print "Gallery 3 is already installed.\n";
return;
}
$config = self::parse_cli_params();
try {
self::setup_database($config);
self::setup_var();
self::install($config);
list ($user, $password) = self::create_admin($config);
print "Successfully installed your Gallery 3!\n";
print "Log in with:\n username: admin\n password: $password\n";
} catch (InstallException $e) {
self::display_errors($e->errors());
}
}
static function web() {
if (self::already_installed()) {
$state = "already_installed";
include("install.html.php");
return;
}
switch ($step = $_GET["step"]) {
default:
$step = "welcome";
break;
case "get_info":
break;
case "save_info":
$config = array("host" => $_GET["dbhost"],
"user" => $_GET["dbuser"],
"password" => $_GET["dbpass"],
"dbname" => $_GET["dbname"],
"prefix" => "",
"type" => function_exists("mysqli_init") ? "mysqli" : "mysql");
try {
self::setup_database($config);
self::setup_var();
self::install($config);
list ($user, $password) = self::create_admin($config);
} catch (Exception $e) {
$step = "database_failure";
}
break;
}
include("install.html.php");
}
static function already_installed() {
return file_exists(VARPATH . "database.php");
}
static function parse_cli_params() {
$config = array("host" => "localhost",
"user" => "root",
"password" => "",
"dbname" => "gallery3",
"prefix" => "");
if (function_exists("mysqli_init")) {
$config["type"] = "mysqli";
} else {
$config["type"] = "mysql";
}
$argv = $_SERVER["argv"];
for ($i = 1; $i < count($argv); $i++) {
switch (strtolower($argv[$i])) {
case "-d":
$config["dbname"] = $argv[++$i];
break;
case "-h":
$config["host"] = $argv[++$i];
break;
case "-u":
$config["user"] = $argv[++$i];
break;
case "-p":
$config["password"] = $argv[++$i];
break;
}
}
return $config;
}
static function setup_database($config) {
$errors = array();
if (!mysql_connect($config["host"], $config["user"], $config["password"])) {
$errors["Database"] =
"Unable to connect to your database with the credentials provided. Error details:\n" .
mysql_error();
return;
}
if (!mysql_select_db($config["dbname"])) {
if (!(mysql_query("CREATE DATABASE {$config['dbname']}") &&
mysql_select_db($config["dbname"]))) {
$errors["Database"] = sprintf(
"Database '%s' is not defined and can't be created",
$config["dbname"]);
}
}
if (empty($errors) && mysql_num_rows(mysql_query("SHOW TABLES FROM {$config['dbname']}"))) {
$errors["Database"] = sprintf(
"Database '%s' exists and has tables in it, continuing may overwrite an existing install",
$config["dbname"]);
}
if ($errors) {
throw new InstallException($errors);
}
}
static function setup_var() {
$errors = array();
if (is_writable(VARPATH)) {
return;
}
if (is_writable(dirname(VARPATH)) && !mkdir(VARPATH)) {
$errors["Filesystem"] =
sprintf("The %s directory doesn't exist and can't be created", VARPATH);
}
if ($errors) {
throw new InstallException($errors);
}
}
static function install($config) {
$errors = array();
include(DOCROOT . "installer/init_var.php");
$buf = "";
foreach (file("installer/install.sql") as $line) {
$buf .= $line;
if (preg_match("/;$/", $buf)) {
if (!mysql_query($buf)) {
throw new InstallException(
array("Database" => "Unable to install database tables. Error details:\n" .
mysql_error()));
break;
}
$buf = "";
}
}
$db_config_file = VARPATH . "database.php";
ob_start();
extract($config);
include("installer/database_config.php");
$output = ob_get_clean();
if (!file_put_contents($db_config_file, $output) !== false) {
throw new InstallException(array("Config" => "Unable to create " . VARPATH . "database.php"));
}
system("chmod -R 777 " . VARPATH);
}
static function create_admin($config) {
$errors = array();
$salt = "";
for ($i = 0; $i < 4; $i++) {
$char = mt_rand(48, 109);
$char += ($char > 90) ? 13 : ($char > 57) ? 7 : 0;
$salt .= chr($char);
}
$password = substr(md5(time() * rand()), 0, 6);
$hashed_password = $salt . md5($salt . $password);
if (mysql_query("UPDATE `users` SET `password` = '$hashed_password' WHERE `id` = 2")) {
} else {
$errors["Database"] = "Unable to set admin password. Error details:\n" . mysql_error();
}
if ($errors) {
throw new InstallException($errors);
}
return array("admin", $password);
}
static function print_exception($exception) {
print $exception->getMessage() . "\n";
print $exception->getTraceAsString();
}
static function display_errors($errors) {
print "Errors\n";
foreach ($errors as $title => $error) {
print "$title\n";
print " $error\n\n";
}
}
}
class InstallException extends Exception {
var $errors;
function __construct($errors) {
parent::__construct();
$this->errors = $errors;
}
function errors() {
return $this->errors;
}
}
|