]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - install.php
Fix help text for getvaliddaemons.php
[quix0rs-gnu-social.git] / install.php
1 <?php
2 /**
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2009, Control Yourself, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 define('INSTALLDIR', dirname(__FILE__));
21
22 function main()
23 {
24     if (!checkPrereqs())
25     {
26         return;
27     }
28
29     if ($_SERVER['REQUEST_METHOD'] == 'POST') {
30         handlePost();
31     } else {
32         showForm();
33     }
34 }
35
36 function checkPrereqs()
37 {
38         $pass = true;
39
40     if (file_exists(INSTALLDIR.'/config.php')) {
41          ?><p class="error">Config file &quot;config.php&quot; already exists.</p>
42          <?php
43         $pass = false;
44     }
45
46     if (version_compare(PHP_VERSION, '5.2.3', '<')) {
47             ?><p class="error">Require PHP version 5.2.3 or greater.</p><?php
48                     $pass = false;
49     }
50
51     $reqs = array('gd', 'curl',
52                   'xmlwriter', 'mbstring',
53                   'gettext');
54
55     foreach ($reqs as $req) {
56         if (!checkExtension($req)) {
57             ?><p class="error">Cannot load required extension: <code><?php echo $req; ?></code></p><?php
58                     $pass = false;
59         }
60     }
61     if (!checkExtension('pgsql') && !checkExtension('mysql')) {
62       ?><p class="error">Cannot find mysql or pgsql extension. You need one or the other: <code><?php echo $req; ?></code></p><?php
63                     $pass = false;
64     }
65
66         if (!is_writable(INSTALLDIR)) {
67          ?><p class="error">Cannot write config file to: <code><?php echo INSTALLDIR; ?></code></p>
68                <p>On your server, try this command: <code>chmod a+w <?php echo INSTALLDIR; ?></code>
69          <?php
70              $pass = false;
71         }
72
73         // Check the subdirs used for file uploads
74         $fileSubdirs = array('avatar', 'background', 'file');
75         foreach ($fileSubdirs as $fileSubdir) {
76                 $fileFullPath = INSTALLDIR."/$fileSubdir/";
77                 if (!is_writable($fileFullPath)) {
78              ?><p class="error">Cannot write <?php echo $fileSubdir; ?> directory: <code><?php echo $fileFullPath; ?></code></p>
79                        <p>On your server, try this command: <code>chmod a+w <?php echo $fileFullPath; ?></code></p>
80              <?
81                      $pass = false;
82                 }
83         }
84
85         return $pass;
86 }
87
88 function checkExtension($name)
89 {
90     if (!extension_loaded($name)) {
91         if (!dl($name.'.so')) {
92             return false;
93         }
94     }
95     return true;
96 }
97
98 function showForm()
99 {
100     echo<<<E_O_T
101         </ul>
102     </dd>
103 </dl>
104 <dl id="page_notice" class="system_notice">
105     <dt>Page notice</dt>
106     <dd>
107         <div class="instructions">
108             <p>Enter your database connection information below to initialize the database.</p>
109         </div>
110     </dd>
111 </dl>
112 <form method="post" action="install.php" class="form_settings" id="form_install">
113     <fieldset>
114         <legend>Connection settings</legend>
115         <ul class="form_data">
116             <li>
117                 <label for="sitename">Site name</label>
118                 <input type="text" id="sitename" name="sitename" />
119                 <p class="form_guide">The name of your site</p>
120             </li>
121             <li>
122                 <label for="fancy-enable">Fancy URLs</label>
123                 <input type="radio" name="fancy" id="fancy-enable" value="enable" checked='checked' /> enable<br />
124                 <input type="radio" name="fancy" id="fancy-disable" value="" /> disable<br />
125                 <p class="form_guide" id='fancy-form_guide'>Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.</p>
126             </li>
127             <li>
128                 <label for="host">Hostname</label>
129                 <input type="text" id="host" name="host" />
130                 <p class="form_guide">Database hostname</p>
131             </li>
132             <li>
133             
134                 <label for="dbtype">Type</label>
135                 <input type="radio" name="dbtype" id="fancy-mysql" value="mysql" checked='checked' /> MySQL<br />
136                 <input type="radio" name="dbtype" id="dbtype-pgsql" value="pgsql" /> PostgreSQL<br />
137                 <p class="form_guide">Database type</p>
138             </li>
139
140             <li>
141                 <label for="database">Name</label>
142                 <input type="text" id="database" name="database" />
143                 <p class="form_guide">Database name</p>
144             </li>
145             <li>
146                 <label for="username">Username</label>
147                 <input type="text" id="username" name="username" />
148                 <p class="form_guide">Database username</p>
149             </li>
150             <li>
151                 <label for="password">Password</label>
152                 <input type="password" id="password" name="password" />
153                 <p class="form_guide">Database password (optional)</p>
154             </li>
155         </ul>
156         <input type="submit" name="submit" class="submit" value="Submit" />
157     </fieldset>
158 </form>
159
160 E_O_T;
161 }
162
163 function updateStatus($status, $error=false)
164 {
165 ?>
166                 <li <?php echo ($error) ? 'class="error"': ''; ?>><?print $status;?></li>
167
168 <?php
169 }
170
171 function handlePost()
172 {
173 ?>
174
175 <?php
176     $host     = $_POST['host'];
177     $dbtype   = $_POST['dbtype'];
178     $database = $_POST['database'];
179     $username = $_POST['username'];
180     $password = $_POST['password'];
181     $sitename = $_POST['sitename'];
182     $fancy    = !empty($_POST['fancy']);
183 ?>
184     <dl class="system_notice">
185         <dt>Page notice</dt>
186         <dd>
187             <ul>
188 <?php
189         $fail = false;
190
191     if (empty($host)) {
192         updateStatus("No hostname specified.", true);
193                 $fail = true;
194     }
195
196     if (empty($database)) {
197         updateStatus("No database specified.", true);
198                 $fail = true;
199     }
200
201     if (empty($username)) {
202         updateStatus("No username specified.", true);
203                 $fail = true;
204     }
205
206 //     if (empty($password)) {
207 //         updateStatus("No password specified.", true);
208 //              $fail = true;
209 //     }
210
211     if (empty($sitename)) {
212         updateStatus("No sitename specified.", true);
213                 $fail = true;
214     }
215
216     if($fail){
217             showForm();
218         return;
219     }
220     
221     switch($dbtype) {
222       case 'mysql':    mysql_db_installer($host, $database, $username, $password, $sitename);
223       break;
224       case 'pgsql':    pgsql_db_installer($host, $database, $username, $password, $sitename);
225       break;
226       default:
227     }
228     if ($path) $path .= '/';
229     updateStatus("You can visit your <a href='/$path'>new Laconica site</a>.");
230 ?>
231
232 <?php
233 }
234
235 function pgsql_db_installer($host, $database, $username, $password, $sitename) {
236   $connstring = "dbname=$database host=$host user=$username";
237
238   //No password would mean trust authentication used.
239   if (!empty($password)) {
240     $connstring .= " password=$password";
241   }
242   updateStatus("Starting installation...");
243   updateStatus("Checking database...");
244   $conn = pg_connect($connstring);
245
246   updateStatus("Running database script...");
247   //wrap in transaction;
248   pg_query($conn, 'BEGIN');
249   $res = runDbScript(INSTALLDIR.'/db/laconica_pg.sql', $conn, 'pgsql');
250   
251   if ($res === false) {
252       updateStatus("Can't run database script.", true);
253       showForm();
254       return;
255   }
256   foreach (array('sms_carrier' => 'SMS carrier',
257                 'notice_source' => 'notice source',
258                 'foreign_services' => 'foreign service')
259           as $scr => $name) {
260       updateStatus(sprintf("Adding %s data to database...", $name));
261       $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn, 'pgsql');
262       if ($res === false) {
263           updateStatus(sprintf("Can't run %d script.", $name), true);
264           showForm();
265           return;
266       }
267   }
268   pg_query($conn, 'COMMIT');
269
270   updateStatus("Writing config file...");
271   if (empty($password)) {
272     $sqlUrl = "pgsql://$username@$host/$database";
273   }
274   else {
275     $sqlUrl = "pgsql://$username:$password@$host/$database";
276   }
277   $res = writeConf($sitename, $sqlUrl, $fancy, 'pgsql');
278   if (!$res) {
279       updateStatus("Can't write config file.", true);
280       showForm();
281       return;
282   }
283   updateStatus("Done!");
284       
285 }
286
287 function mysql_db_installer($host, $database, $username, $password, $sitename) {
288   updateStatus("Starting installation...");
289   updateStatus("Checking database...");
290
291   $conn = mysql_connect($host, $username, $password);
292   if (!$conn) {
293       updateStatus("Can't connect to server '$host' as '$username'.", true);
294       showForm();
295       return;
296   }
297   updateStatus("Changing to database...");
298   $res = mysql_select_db($database, $conn);
299   if (!$res) {
300       updateStatus("Can't change to database.", true);
301       showForm();
302       return;
303   }
304   updateStatus("Running database script...");
305   $res = runDbScript(INSTALLDIR.'/db/laconica.sql', $conn);
306   if ($res === false) {
307       updateStatus("Can't run database script.", true);
308       showForm();
309       return;
310   }
311   foreach (array('sms_carrier' => 'SMS carrier',
312                 'notice_source' => 'notice source',
313                 'foreign_services' => 'foreign service')
314           as $scr => $name) {
315       updateStatus(sprintf("Adding %s data to database...", $name));
316       $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn);
317       if ($res === false) {
318           updateStatus(sprintf("Can't run %d script.", $name), true);
319           showForm();
320           return;
321       }
322   }
323       
324       updateStatus("Writing config file...");
325       $sqlUrl = "mysqli://$username:$password@$host/$database";
326       $res = writeConf($sitename, $sqlUrl, $fancy);
327       if (!$res) {
328           updateStatus("Can't write config file.", true);
329           showForm();
330           return;
331       }
332       updateStatus("Done!");
333     }
334 function writeConf($sitename, $sqlUrl, $fancy, $type='mysql')
335 {
336     $res = file_put_contents(INSTALLDIR.'/config.php',
337                              "<?php\n".
338                              "if (!defined('LACONICA')) { exit(1); }\n\n".
339                              "\$config['site']['name'] = \"$sitename\";\n\n".
340                              ($fancy ? "\$config['site']['fancy'] = true;\n\n":'').
341                              "\$config['db']['database'] = \"$sqlUrl\";\n\n".
342                              ($type == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n" .
343                              "\$config['db']['type'] = \"$type\";\n\n" : '').
344                              "?>");
345     return $res;
346 }
347
348 function runDbScript($filename, $conn, $type='mysql')
349 {
350     $sql = trim(file_get_contents($filename));
351     $stmts = explode(';', $sql);
352     foreach ($stmts as $stmt) {
353         $stmt = trim($stmt);
354         if (!mb_strlen($stmt)) {
355             continue;
356         }
357         if ($type == 'mysql') {
358           $res = mysql_query($stmt, $conn);
359         } elseif ($type=='pgsql') {
360           $res = pg_query($conn, $stmt);
361         }
362         if ($res === false) {
363             updateStatus("FAILED SQL: $stmt");
364             return $res;
365         }
366     }
367     return true;
368 }
369
370 ?>
371 <?php echo"<?"; ?> xml version="1.0" encoding="UTF-8" <?php echo "?>"; ?>
372 <!DOCTYPE html
373 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
374        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
375 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
376     <head>
377         <title>Install Laconica</title>
378         <link rel="shortcut icon" href="favicon.ico"/>
379         <link rel="stylesheet" type="text/css" href="theme/default/css/display.css?version=0.8" media="screen, projection, tv"/>
380         <!--[if IE]><link rel="stylesheet" type="text/css" href="theme/base/css/ie.css?version=0.8" /><![endif]-->
381         <!--[if lte IE 6]><link rel="stylesheet" type="text/css" theme/base/css/ie6.css?version=0.8" /><![endif]-->
382         <!--[if IE]><link rel="stylesheet" type="text/css" href="theme/default/css/ie.css?version=0.8" /><![endif]-->
383         <script src="js/jquery.min.js"></script>
384         <script src="js/install.js"></script>
385     </head>
386     <body id="install">
387         <div id="wrap">
388             <div id="header">
389                 <address id="site_contact" class="vcard">
390                     <a class="url home bookmark" href=".">
391                         <img class="logo photo" src="theme/default/logo.png" alt="Laconica"/>
392                         <span class="fn org">Laconica</span>
393                     </a>
394                 </address>
395             </div>
396             <div id="core">
397                 <div id="content">
398                     <h1>Install Laconica</h1>
399 <?php main(); ?>
400                 </div>
401             </div>
402         </div>
403     </body>
404 </html>