]>
git.p6c8.net - jirafeau_mojo42.git/blob - install.php
3 * Jirafeau, your web file repository
4 * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
5 * Copyright (C) 2015 Nicola Spanti (RyDroid) <dev@nicola-spanti.info>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 define('JIRAFEAU_ROOT', dirname(__FILE__
) . '/');
22 define('JIRAFEAU_CFG', JIRAFEAU_ROOT
. 'lib/config.local.php');
23 define('JIRAFEAU_VAR_RAND_LENGTH', 15);
25 require(JIRAFEAU_ROOT
. 'lib/settings.php');
26 require(JIRAFEAU_ROOT
. 'lib/functions.php');
27 require(JIRAFEAU_ROOT
. 'lib/lang.php');
30 * Prepend used functions
33 function jirafeau_quoted($str)
35 return QUOTE
. str_replace(QUOTE
, "\'", $str) . QUOTE
;
38 function jirafeau_export_cfg($cfg)
40 $content = '<?php' . NL
;
41 $content .= '/* ' . t('This file was generated by the install process. ' .
42 'You can edit it. Please see config.original.php to understand the ' .
43 'configuration items.') . ' */' . NL
;
44 $content .= '$cfg = ' . var_export($cfg, true) . ';';
46 $fileWrite = file_put_contents(JIRAFEAU_CFG
, $content);
48 if (false === $fileWrite) {
49 jirafeau_fatal_error(t('Can not write local configuration file'));
53 function jirafeau_mkdir($path)
55 return !(!file_exists($path) && !@mkdir
($path, 0755));
59 * Returns true whether the path is writable or we manage to make it
60 * so, which essentially is the same thing.
61 * @param $path is the file or directory to be tested.
62 * @return true if $path is writable.
64 function jirafeau_is_writable($path)
66 /* "@" gets rid of error messages. */
67 return is_writable($path) || @chmod
($path, 0777);
70 function jirafeau_check_var_dir($path)
72 $mkdir_str1 = t('The following directory could not be created') . ':';
73 $mkdir_str2 = t('You should create this directory manually.');
74 $write_str1 = t('The following directory is not writable') . ':';
75 $write_str2 = t('You should give the write permission to the web server on ' .
77 $solution_str = t('Here is a solution') . ':';
79 if (!jirafeau_mkdir($path) ||
!jirafeau_is_writable($path)) {
80 return array('has_error' => true,
81 'why' => $mkdir_str1 . '<br /><code>' .
82 $path . '</code><br />' . $solution_str .
83 '<br />' . $mkdir_str2);
86 foreach (array('files', 'links', 'async', 'alias') as $subdir) {
87 $subpath = $path.$subdir;
89 if (!jirafeau_mkdir($subpath) ||
!jirafeau_is_writable($subpath)) {
90 return array('has_error' => true,
91 'why' => $mkdir_str1 . '<br /><code>' .
92 $subpath . '</code><br />' . $solution_str .
93 '<br />' . $mkdir_str2);
97 return array('has_error' => false, 'why' => '');
100 function jirafeau_add_ending_slash($path)
102 return $path . ((substr($path, -1) == '/') ?
'' : '/');
105 function jirafeau_fatal_error($errorText)
107 echo '<div class="error"><h2>Error</h2><p>' . $errorText . '</p></div>';
108 require(JIRAFEAU_ROOT
. 'lib/template/footer.php');
116 // Is the installation process done already?
117 // Then there is nothing to do here → redirect to the main page.
118 if ($cfg['installation_done'] === true) {
119 header('Location: index.php');
124 * Prepare installation process
127 require(JIRAFEAU_ROOT
. 'lib/template/header.php');
129 // does the local configuration file exist?
130 if (!file_exists(JIRAFEAU_CFG
)) {
131 // show an error if it is not possible to create the file
132 if (!@touch
(JIRAFEAU_CFG
)) {
133 jirafeau_fatal_error(
134 t('The local configuration file could not be created. Create a ' .
135 '<code>lib/config.local.php</code> file and give the write ' .
136 'permission to the web server (preferred solution), or give the ' .
137 'write permission to the web server on the <code>lib</code> ' .
143 // is the local configuration writable?
144 if (!is_writable(JIRAFEAU_CFG
) && !@chmod
(JIRAFEAU_CFG
, '0666')) {
145 jirafeau_fatal_error(
146 t('The local configuration is not writable by the web server. ' .
147 'Give the write permission to the web server on the ' .
148 '<code>lib/config.local.php</code> file.')
153 * Run trough each installation step
156 if (isset($_POST['step']) && isset($_POST['next'])) {
157 switch ($_POST['step']) {
159 $cfg['lang'] = $_POST['lang'];
160 jirafeau_export_cfg($cfg);
164 $cfg['admin_password'] = hash('sha256', $_POST['admin_password']);
165 jirafeau_export_cfg($cfg);
169 $cfg['web_root'] = jirafeau_add_ending_slash($_POST['web_root']);
170 $cfg['var_root'] = jirafeau_add_ending_slash($_POST['var_root']);
171 jirafeau_export_cfg($cfg);
175 $cfg['web_root'] = jirafeau_add_ending_slash($_POST['web_root']);
176 $cfg['var_root'] = jirafeau_add_ending_slash($_POST['var_root']);
177 jirafeau_export_cfg($cfg);
183 if (isset($_POST['next'])) {
184 $current = $_POST['step'] +
1;
185 } elseif (isset($_POST['previous'])) {
186 $current = $_POST['step'] - 1;
187 } elseif (isset($_POST['retry'])) {
188 $current = $_POST['step'];
194 ?
><h2
><?php
printf(t('Installation of Jirafeau') . ' - ' . t('step') .
195 ' %d ' . t('out of') . ' %d', 1, 4);
196 ?
></h2
> <div id
= "install"> <form method
="post"> <input type
=
197 "hidden" name
= "jirafeau" value
=
198 "<?php echo JIRAFEAU_VERSION; ?>" /><input type
= "hidden" name
=
199 "step" value
= "1" /><fieldset
> <legend
><?php
echo t('Language');
200 ?
></legend
> <table
> <tr
> <td
class = "info" colspan
=
202 t('Jirafeau is internationalised. Choose a specific langage or ' .
203 'choose Automatic (langage is provided by user\'s browser).');
204 ?
></td
> </tr
> <tr
> <td
class = "label"><label
for = "select_lang"
205 ><?php
echo t('Choose the default language') . ':';
208 <select name
= "lang" id
= "select_lang">
209 <?php
foreach ($languages_list as $key => $item) {
210 echo '<option value="'.$key.'"'.($key ==
211 $cfg['lang'] ?
' selected="selected"'
212 : '').'>'.$item.'</option>'.NL
;
219 <td
class = "nav next"><input type
= "submit" name
= "next" value
=
220 "<?php echo t('Next step'); ?>" /></td
> </tr
> </table
>
221 </fieldset
> </form
> </div
> <?php
225 ?
><h2
><?php
printf(t('Installation of Jirafeau') . ' - ' . t('step') .
226 ' %d ' . t('out of') . ' %d', 2, 4);
227 ?
></h2
> <div id
= "install"> <form method
="post"> <input type
=
228 "hidden" name
= "jirafeau" value
=
229 "<?php echo JIRAFEAU_VERSION; ?>" /><input type
= "hidden" name
=
230 "step" value
= "2" /><fieldset
> <legend
><?php
231 echo t('Administration password');
232 ?
></legend
> <table
> <tr
> <td
class = "info" colspan
=
234 t('Jirafeau has an administration interface (through admin.php). ' .
235 'You can set a password to access the interface or leave it empty ' .
236 'to disable the interface.');
237 ?
></td
> </tr
> <tr
> <td
class = "label"><label
for = "select_password"
238 ><?php
echo t('Administration password') . ':';
240 <td
class = "field"><input type
= "password" name
= "admin_password"
241 id
= "admin_password" size
= "40" /></td
>
245 <td
class = "nav next">
246 <input type
= "submit"
247 class = "navleft" name
= "previous" value
= "<?php
248 echo t('Previous step'); ?>" />
249 <input type
= "submit" name
= "next" value
=
250 "<?php echo t('Next step'); ?>" /></td
> </tr
> </table
>
251 </fieldset
> </form
> </div
> <?php
255 ?
><h2
><?php
printf(t('Installation of Jirafeau') . ' - ' . t('step') .
256 ' %d ' . t('out of') . ' %d', 3, 4);
257 ?
></h2
> <div id
= "install"> <form method
="post"> <input type
=
258 "hidden" name
= "jirafeau" value
=
259 "<?php echo JIRAFEAU_VERSION; ?>" /><input type
= "hidden" name
=
261 "3" /><fieldset
> <legend
><?php
echo t('Information');
262 ?
></legend
> <table
> <tr
> <td
class = "info" colspan
=
264 t('The base address of Jirafeau is the first part of the URL, until ' .
265 '(and including) the last slash. For example: ' .
266 '"http://www.example.com/". Do not forget the trailing slash!');
267 ?
></td
> </tr
> <tr
> <td
class = "label"><label
for = "input_web_root"
268 ><?php
echo t('Base address') . ':';
270 <td
class = "field"><input type
= "text" name
= "web_root"
271 id
= "input_web_root" value
= "<?php
272 echo(empty($cfg['web_root']) ?
273 'http://' . $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__),
274 '', $_SERVER['REQUEST_URI']) : $cfg['web_root']);
275 ?>" size
= "40" /></td
>
276 </tr
> <tr
> <td
class = "info" colspan
= "2"><?php
277 echo t('The data directory is where your files and information about' .
278 ' your files will be stored. You should put it outside your web ' .
279 'site, or at least restrict the access to this directory. Do not ' .
280 'forget the trailing slash!');
281 ?
></td
> </tr
> <tr
> <td
class = "label"><label
for = "input_var_root"
282 ><?php
echo t('Data directory') . ':';
284 <td
class = "field"><input type
= "text" name
= "var_root"
285 id
= "input_var_root" value
= "<?php
286 if (empty($cfg['var_root'])) {
287 $alphanum = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' .
288 'abcdefghijklmnopqrstuvwxyz' . '0123456789';
289 $len_alphanum = strlen($alphanum);
291 for ($i = 0; $i <JIRAFEAU_VAR_RAND_LENGTH; $i++) {
292 $var .= substr($alphanum, mt_rand(0, $len_alphanum - 1), 1);
294 echo JIRAFEAU_ROOT . $var . '/';
296 echo $cfg['var_root'];
298 ?>" size
= "40" /></td
>
299 </tr
> <tr
> <td colspan
= "2"><input type
= "submit"
300 class = "navleft" name
= "previous" value
= "<?php
301 echo t('Previous step'); ?>" />
302 <input type
= "submit" class = "navright" name
= "next" value
= "
303 <?php echo t('Next step'); ?>" />
304 </td
> </tr
> </table
> </fieldset
>
309 ?
><h2
><?php
printf(t('Installation of Jirafeau') . ' - ' . t('step') .
310 ' %d ' . t('out of') . ' %d', 4, 4);
311 ?
></h2
> <div id
= "install"> <form method
="post"> <input type
=
312 "hidden" name
= "jirafeau" value
=
313 "<?php echo JIRAFEAU_VERSION; ?>" /><input type
= "hidden" name
=
315 "4" /><fieldset
> <legend
><?php
echo t('Finalisation');
316 ?
></legend
> <table
> <tr
> <td
class = "info" colspan
=
318 t('Jirafeau is setting the website according to the configuration ' .
320 ?
></td
> </tr
> <tr
> <td
class = "nav previous"><input type
=
321 "submit" name
= "previous" value
=
324 echo t('Previous step');
325 ?>" /></td
> <td
></td
> </tr
>
326 </table
> </fieldset
> </form
> </div
>
328 $err = jirafeau_check_var_dir($cfg['var_root']);
329 if ($err['has_error']) {
330 echo '<div class="error"><p>'.$err['why'].'<br />'.NL
; ?
><form method
="post"> <input type
= "hidden" name
= "jirafeau" value
=
331 "<?php echo JIRAFEAU_VERSION; ?>" /><input type
= "hidden" name
=
332 "step" value
= "4" /><input type
= "submit" name
=
334 "<?php echo t('Retry this step'); ?>" /></form
>
335 <?php
echo '</p></div>';
337 $cfg['installation_done'] = true;
338 jirafeau_export_cfg($cfg);
339 echo '<div class="message"><p>' .
340 t('Jirafeau is now fully operational') . ':' .
341 '<br /><a href="' . $cfg['web_root'] . '">' .
342 $cfg['web_root'].'</a></p></div>';
347 require(JIRAFEAU_ROOT
. 'lib/template/footer.php');
patrick-canterino.de