]> git.wh0rd.org - tt-rss.git/blame - install/index.php
installer: ask for SELF_URL_PATH
[tt-rss.git] / install / index.php
CommitLineData
d0c6dd29
AD
1<html>
2<head>
3 <title>Tiny Tiny RSS - Installer</title>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <link rel="stylesheet" type="text/css" href="../utility.css">
6 <style type="text/css">
7 textarea { font-size : 12px; }
8 </style>
9</head>
10<body>
11
12<?
13 function sanity_check($db_type) {
14 $errors = array();
15
16 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
17 array_push($errors, "PHP version 5.3.0 or newer required.");
18 }
19
20 if (ini_get("open_basedir")) {
21 array_push($errors, "PHP configuration option open_basedir is not supported. Please disable this in PHP settings file (php.ini).");
22 }
23
24 if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
25 array_push($errors, "PHP configuration option allow_url_fopen is disabled, and CURL functions are not present. Either enable allow_url_fopen or install PHP extension for CURL.");
26 }
27
28 if (!function_exists("json_encode")) {
29 array_push($errors, "PHP support for JSON is required, but was not found.");
30 }
31
32 if ($db_type == "mysql" && !function_exists("mysql_connect")) {
33 array_push($errors, "PHP support for MySQL is required for configured $db_type in config.php.");
34 }
35
36 if ($db_type == "pgsql" && !function_exists("pg_connect")) {
37 array_push($errors, "PHP support for PostgreSQL is required for configured $db_type in config.php");
38 }
39
40 if (!function_exists("mb_strlen")) {
41 array_push($errors, "PHP support for mbstring functions is required but was not found.");
42 }
43
44 if (!function_exists("hash")) {
45 array_push($errors, "PHP support for hash() function is required but was not found.");
46 }
47
48 if (!function_exists("ctype_lower")) {
49 array_push($errors, "PHP support for ctype functions are required by HTMLPurifier.");
50 }
51
52 if (!function_exists("iconv")) {
53 array_push($errors, "PHP support for iconv is required to handle multiple charsets.");
54 }
55
56 /* if (ini_get("safe_mode")) {
57 array_push($errors, "PHP safe mode setting is not supported.");
58 } */
59
60 if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) {
61 array_push($errors, "PHP support for CURL is required for PubSubHubbub.");
62 }
63
64 if (!class_exists("DOMDocument")) {
65 array_push($errors, "PHP support for DOMDocument is required, but was not found.");
66 }
67
68 return $errors;
69 }
70
71 function print_error($msg) {
72 print "<div class='error'><img src='../images/sign_excl.svg'> $msg</div>";
73 }
74
75 function print_notice($msg) {
76 print "<div class=\"notice\">
77 <img src=\"../images/sign_info.svg\">$msg</div>";
78 }
79
80 function db_connect($host, $user, $pass, $db, $type) {
81 if ($type == "pgsql") {
82
83 $string = "dbname=$db user=$user";
84
85 if ($pass) {
86 $string .= " password=$pass";
87 }
88
89 if ($host) {
90 $string .= " host=$host";
91 }
92
93 if (defined('DB_PORT')) {
94 $string = "$string port=" . DB_PORT;
95 }
96
97 $link = pg_connect($string);
98
99 return $link;
100
101 } else if ($type == "mysql") {
102 $link = mysql_connect($host, $user, $pass);
103 if ($link) {
104 $result = mysql_select_db($db, $link);
884d1650 105 if ($result) return $link;
d0c6dd29
AD
106 }
107 }
108 }
109
110 function db_query($link, $query, $type, $die_on_error = true) {
111 if ($type == "pgsql") {
112 $result = pg_query($link, $query);
113 if (!$result) {
114 $query = htmlspecialchars($query); // just in case
115 if ($die_on_error) {
116 die("Query <i>$query</i> failed [$result]: " . ($link ? pg_last_error($link) : "No connection"));
117 }
118 }
119 return $result;
120 } else if ($type == "mysql") {
121 $result = mysql_query($query, $link);
122 if (!$result) {
123 $query = htmlspecialchars($query);
124 if ($die_on_error) {
125 die("Query <i>$query</i> failed: " . ($link ? mysql_error($link) : "No connection"));
126 }
127 }
128 return $result;
129 }
130 }
131
056c537b
AD
132 function make_self_url_path() {
133 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
134
135 return $url_path;
136 }
137
d0c6dd29
AD
138?>
139
884d1650 140<div class="floatingLogo"><img src="../images/logo_small.png"></div>
d0c6dd29
AD
141
142<h1>Tiny Tiny RSS Installer</h1>
143
884d1650
AD
144<div class='content'>
145
d0c6dd29 146<?php
056c537b 147
d0c6dd29
AD
148 if (file_exists("../config.php")) {
149 require "../config.php";
150
151 if (!defined('_INSTALLER_IGNORE_CONFIG_CHECK')) {
152 print_error("Error: config.php already exists; aborting.");
153 exit;
154 }
155 }
156
157 @$op = $_REQUEST['op'];
158
159 @$DB_HOST = strip_tags($_POST['DB_HOST']);
160 @$DB_TYPE = strip_tags($_POST['DB_TYPE']);
161 @$DB_USER = strip_tags($_POST['DB_USER']);
162 @$DB_NAME = strip_tags($_POST['DB_NAME']);
163 @$DB_PASS = strip_tags($_POST['DB_PASS']);
164 @$DB_PORT = strip_tags($_POST['DB_PORT']);
056c537b 165 @$SELF_URL_PATH = strip_tags($_POST['SELF_URL_PATH']);
d0c6dd29 166
056c537b
AD
167 if (!$SELF_URL_PATH) {
168 $SELF_URL_PATH = preg_replace("/\/install\/$/", "/", make_self_url_path());
169 }
d0c6dd29
AD
170?>
171
d0c6dd29
AD
172<form action="" method="post">
173<input type="hidden" name="op" value="testconfig">
174
056c537b
AD
175<h2>Database settings</h2>
176
d0c6dd29
AD
177<?php
178 $issel_pgsql = $DB_TYPE == "pgsql" ? "selected" : "";
179 $issel_mysql = $DB_TYPE == "mysql" ? "selected" : "";
180?>
181
182<fieldset>
183 <label>Database type</label>
184 <select name="DB_TYPE">
185 <option <?php echo $issel_pgsql ?> value="pgsql">PostgreSQL</option>
186 <option <?php echo $issel_mysql ?> value="mysql">MySQL</option>
187 </select>
188</fieldset>
189
190<fieldset>
191 <label>Username</label>
192 <input required name="DB_USER" size="20" value="<?php echo $DB_USER ?>"/>
193</fieldset>
194
195<fieldset>
196 <label>Password</label>
197 <input required name="DB_PASS" size="20" type="password" value="<?php echo $DB_PASS ?>"/>
198</fieldset>
199
200<fieldset>
201 <label>Database name</label>
202 <input name="DB_NAME" size="20" value="<?php echo $DB_NAME ?>"/>
203</fieldset>
204
205<fieldset>
206 <label>Host name</label>
207 <input name="DB_HOST" placeholder="if needed" size="20" value="<?php echo $DB_HOST ?>"/>
208</fieldset>
209
210<fieldset>
211 <label>Port</label>
212 <input name="DB_PORT" placeholder="if needed, PgSQL only" size="20" value="<?php echo $DB_PORT ?>"/>
213</fieldset>
214
056c537b
AD
215<h2>Other settings</h2>
216
217<p>This should be set to the location your Tiny Tiny RSS will be available on.</p>
218
219<fieldset>
220 <label>Tiny Tiny RSS URL</label>
221 <input name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
222</fieldset>
223
224
d0c6dd29
AD
225<p><input type="submit" value="Test configuration"></p>
226
227</form>
228
229<?php if ($op == 'testconfig') { ?>
230
231 <h2>Checking configuration</h2>
232
233 <?php
234 $errors = sanity_check($DB_TYPE);
235
236 if (count($errors) > 0) {
237 print "<p>Some configuration tests failed. Please correct them before continuing.</p>";
238
239 print "<ul>";
240
241 foreach ($errors as $error) {
242 print "<li style='color : red'>$error</li>";
243 }
244
245 print "</ul>";
246
247 exit;
248 }
249
250 ?>
251
884d1650
AD
252 <?php print_notice("Configuration check succeeded."); ?>
253
d0c6dd29
AD
254 <h2>Checking database</h2>
255
256 <?php
257 $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE);
258
259 if (!$link) {
260 print_error("Unable to connect to database using specified parameters.");
261 exit;
262 }
263
264 print_notice("Database test succeeded."); ?>
265
266 <h2>Initialize database</h2>
267
268 <p>Before you can start using tt-rss, database needs to be initialized. Click on the button below to do that now.</p>
269
270 <?php
271 $result = db_query($link, "SELECT true FROM ttrss_feeds", $DB_TYPE, false);
272
273 if ($result) {
274 print_error("Existing tt-rss tables will be removed from the database. If you would like to keep your data, skip database initialization.");
275 $need_confirm = true;
276 } else {
277 $need_confirm = false;
278 }
279 ?>
280
281 <table><tr><td>
282 <form method="post">
283 <input type="hidden" name="op" value="installschema">
284
285 <input type="hidden" name="DB_USER" value="<?php echo $DB_USER ?>"/>
286 <input type="hidden" name="DB_PASS" value="<?php echo $DB_PASS ?>"/>
287 <input type="hidden" name="DB_NAME" value="<?php echo $DB_NAME ?>"/>
288 <input type="hidden" name="DB_HOST" value="<?php echo $DB_HOST ?>"/>
289 <input type="hidden" name="DB_PORT" value="<?php echo $DB_PORT ?>"/>
290 <input type="hidden" name="DB_TYPE" value="<?php echo $DB_TYPE ?>"/>
056c537b 291 <input type="hidden" name="SELF_URL_PATH" value="<?php echo $SELF_URL_PATH ?>"/>
d0c6dd29
AD
292
293 <?php if ($need_confirm) { ?>
294 <p><input onclick="return confirm('Please read the warning above. Continue?')" type="submit" value="Initialize database" style="color : red"></p>
295 <?php } else { ?>
296 <p><input type="submit" value="Initialize database" style="color : red"></p>
297 <?php } ?>
298 </form>
299
300 </td><td>
301 <form method="post">
302 <input type="hidden" name="DB_USER" value="<?php echo $DB_USER ?>"/>
303 <input type="hidden" name="DB_PASS" value="<?php echo $DB_PASS ?>"/>
304 <input type="hidden" name="DB_NAME" value="<?php echo $DB_NAME ?>"/>
305 <input type="hidden" name="DB_HOST" value="<?php echo $DB_HOST ?>"/>
306 <input type="hidden" name="DB_PORT" value="<?php echo $DB_PORT ?>"/>
307 <input type="hidden" name="DB_TYPE" value="<?php echo $DB_TYPE ?>"/>
056c537b 308 <input type="hidden" name="SELF_URL_PATH" value="<?php echo $SELF_URL_PATH ?>"/>
d0c6dd29
AD
309
310 <input type="hidden" name="op" value="skipschema">
311 <p><input type="submit" value="Skip initialization"></p>
312 </form>
313
314 </td></tr></table>
315
316 <?php
317
318 } else if ($op == 'installschema' || $op == 'skipschema') {
319
320 $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE);
321
322 if (!$link) {
323 print_error("Unable to connect to database using specified parameters.");
324 exit;
325 }
326
327 if ($op == 'installschema') {
328
329 print "<h2>Initializing database...</h2>";
330
331 $lines = explode(";", preg_replace("/[\r\n]/", "", file_get_contents("../schema/ttrss_schema_".basename($DB_TYPE).".sql")));
332
333 foreach ($lines as $line) {
334 if (strpos($line, "--") !== 0 && $line) {
335 db_query($link, $line, $DB_TYPE);
336 }
337 }
338
339 print_notice("Database initialization completed.");
340
341 } else {
342 print_notice("Database initialization skipped.");
343 }
344
345 print "<h2>Generated configuration file</h2>";
346
347 print "<p>Copy following text and save as <b>config.php</b> in tt-rss main directory. It is suggested to read through the file to the end in case you need any options changed fom default values.</p>";
348
349 print "<textarea cols=\"80\" rows=\"20\" name=\"config\">";
350 $data = explode("\n", file_get_contents("../config.php-dist"));
351
352 foreach ($data as $line) {
353 if (preg_match("/define\('DB_TYPE'/", $line)) {
260501fd 354 echo "\tdefine('DB_TYPE', '$DB_TYPE');\n";
d0c6dd29 355 } else if (preg_match("/define\('DB_HOST'/", $line)) {
260501fd 356 echo "\tdefine('DB_HOST', '$DB_HOST');\n";
d0c6dd29 357 } else if (preg_match("/define\('DB_USER'/", $line)) {
260501fd 358 echo "\tdefine('DB_USER', '$DB_USER');\n";
d0c6dd29 359 } else if (preg_match("/define\('DB_NAME'/", $line)) {
260501fd 360 echo "\tdefine('DB_NAME', '$DB_NAME');\n";
d0c6dd29 361 } else if (preg_match("/define\('DB_PASS'/", $line)) {
260501fd 362 echo "\tdefine('DB_PASS', '$DB_PASS');\n";
d0c6dd29 363 } else if (preg_match("/define\('DB_PORT'/", $line)) {
260501fd 364 echo "\tdefine('DB_PORT', '$DB_PORT');\n";
056c537b
AD
365 } else if (preg_match("/define\('SELF_URL_PATH'/", $line)) {
366 echo "\tdefine('SELF_URL_PATH', '$SELF_URL_PATH');\n";
d0c6dd29
AD
367 } else {
368 print "$line\n";
369 }
370 }
371
372 print "</textarea>";
373
374 print "<p>You can generate the file again by changing the form above.</p>";
375 }
376 ?>
377
884d1650 378</div>
d0c6dd29
AD
379
380</body>
381</html>