source: trunk/install.php @ 5532

Last change on this file since 5532 was 5452, checked in by nikrou, 14 years ago

Fix some issues with database engines :

  • insert into syntax not correct for posgresql or sqlite
  • add languages table
  • incorrect function for row count (sqlite)
File size: 17.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24//----------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
26
27@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
28//
29// addslashes to vars if magic_quotes_gpc is off this is a security
30// precaution to prevent someone trying to break out of a SQL statement.
31//
32if( !@get_magic_quotes_gpc() )
33{
34  if( is_array($_POST) )
35  {
36    while( list($k, $v) = each($_POST) )
37    {
38      if( is_array($_POST[$k]) )
39      {
40        while( list($k2, $v2) = each($_POST[$k]) )
41        {
42          $_POST[$k][$k2] = addslashes($v2);
43        }
44        @reset($_POST[$k]);
45      }
46      else
47      {
48        $_POST[$k] = addslashes($v);
49      }
50    }
51    @reset($_POST);
52  }
53
54  if( is_array($_GET) )
55  {
56    while( list($k, $v) = each($_GET) )
57    {
58      if( is_array($_GET[$k]) )
59      {
60        while( list($k2, $v2) = each($_GET[$k]) )
61        {
62          $_GET[$k][$k2] = addslashes($v2);
63        }
64        @reset($_GET[$k]);
65      }
66      else
67      {
68        $_GET[$k] = addslashes($v);
69      }
70    }
71    @reset($_GET);
72  }
73
74  if( is_array($_COOKIE) )
75  {
76    while( list($k, $v) = each($_COOKIE) )
77    {
78      if( is_array($_COOKIE[$k]) )
79      {
80        while( list($k2, $v2) = each($_COOKIE[$k]) )
81        {
82          $_COOKIE[$k][$k2] = addslashes($v2);
83        }
84        @reset($_COOKIE[$k]);
85      }
86      else
87      {
88        $_COOKIE[$k] = addslashes($v);
89      }
90    }
91    @reset($_COOKIE);
92  }
93}
94
95//----------------------------------------------------- variable initialization
96
97define('DEFAULT_PREFIX_TABLE', 'piwigo_');
98
99// default database engine proposed if severals are available
100// choices : sqlite, mysql, pgsql, pdo-sqlite
101// see include/dblayer/dblayers.inc.php
102define('DEFAULT_DB_ENGINE', 'mysql');
103
104// database engine default choice between sqlite (native or via pdo)
105// if the twice are available.
106define('DEFAULT_DB_SQLITE', 'native'); 
107
108if (isset($_POST['install']))
109{
110  $prefixeTable = $_POST['prefix'];
111}
112else
113{
114  $prefixeTable = DEFAULT_PREFIX_TABLE;
115}
116
117include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
118@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
119
120// download database config file if exists
121if (!empty($_GET['dl']) && file_exists($conf['local_data_dir'].'/pwg_'.$_GET['dl']))
122{
123  $filename = $conf['local_data_dir'].'/pwg_'.$_GET['dl'];
124  header('Cache-Control: no-cache, must-revalidate');
125  header('Pragma: no-cache');
126  header('Content-Disposition: attachment; filename="database.inc.php"');
127  header('Content-Transfer-Encoding: binary');
128  header('Content-Length: '.filesize($filename));
129  echo file_get_contents($filename);
130  unlink($filename);
131  exit();
132} 
133
134// Obtain various vars
135$dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
136$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
137$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
138$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
139$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : DEFAULT_DB_ENGINE;
140
141$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
142$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
143$admin_pass2 = (!empty($_POST['admin_pass2'])) ? $_POST['admin_pass2'] : '';
144$admin_mail = (!empty($_POST['admin_mail'])) ? $_POST['admin_mail'] : '';
145
146$infos = array();
147$errors = array();
148
149// database config file migration : mysql.inc.php et database.inc.php
150$old_config_file = PHPWG_ROOT_PATH . 'include/mysql.inc.php';
151$config_file = PHPWG_ROOT_PATH . 'local/config/database.inc.php';
152if (!file_exists($config_file) && file_exists($old_config_file))
153{
154  $step = 3;
155  include $old_config_file;
156  $file_content = '<?php
157$conf[\'dblayer\'] = \'mysql\';
158$conf[\'db_base\'] = \''.$cfgBase.'\';
159$conf[\'db_user\'] = \''.$cfgUser.'\';
160$conf[\'db_password\'] = \''.$cfgPassword.'\';
161$conf[\'db_host\'] = \''.$cfgHote.'\';
162
163$prefixeTable = \''.$prefixeTable.'\';
164
165define(\'PHPWG_INSTALLED\', true);
166define(\'PWG_CHARSET\', \''.PWG_CHARSET.'\');
167define(\'DB_CHARSET\', \''.DB_CHARSET.'\');
168define(\'DB_COLLATE\', \''.DB_COLLATE.'\');
169
170?'.'>';
171}
172// Open config.php ... if it exists
173elseif (@file_exists($config_file))
174{
175  include($config_file);
176  // Is Piwigo already installed ?
177  if (defined("PHPWG_INSTALLED"))
178  {
179    die('Piwigo is already installed');
180  }
181}
182
183include(PHPWG_ROOT_PATH . 'include/constants.php');
184include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
185include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
186
187include(PHPWG_ROOT_PATH . 'admin/include/languages.class.php');
188$languages = new languages('utf-8');
189
190if (isset($_GET['language']))
191{
192  $language = strip_tags($_GET['language']);
193}
194else
195{
196  $language = 'en_UK';
197  // Try to get browser language
198  foreach ($languages->fs_languages as $language_code => $language_name)
199  {
200    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
201    {
202      $language = $language_code;
203      break;
204    }
205  }
206}
207
208if ('fr_FR' == $language) {
209  define('PHPWG_DOMAIN', 'fr.piwigo.org');
210}
211else if ('it_IT' == $language) {
212  define('PHPWG_DOMAIN', 'it.piwigo.org');
213}
214else if ('de_DE' == $language) {
215  define('PHPWG_DOMAIN', 'de.piwigo.org');
216}
217else if ('es_ES' == $language) {
218  define('PHPWG_DOMAIN', 'es.piwigo.org');
219}
220else if ('pl_PL' == $language) {
221  define('PHPWG_DOMAIN', 'pl.piwigo.org');
222}
223else if ('zh_CN' == $language) {
224  define('PHPWG_DOMAIN', 'cn.piwigo.org');
225}
226else if ('hu_HU_CN' == $language) {
227  define('PHPWG_DOMAIN', 'hu.piwigo.org');
228}
229else if ('ru_RU_CN' == $language) {
230  define('PHPWG_DOMAIN', 'ru.piwigo.org');
231}
232else {
233  define('PHPWG_DOMAIN', 'piwigo.org');
234}
235define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
236
237if (empty($step) || ($step != 3))
238{
239  load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
240  load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
241  load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
242}
243header('Content-Type: text/html; charset=UTF-8');
244//------------------------------------------------- check php version
245if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
246{
247  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
248}
249
250//----------------------------------------------------- template initialization
251include( PHPWG_ROOT_PATH .'include/template.class.php');
252$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'roma');
253$template->set_filenames( array('install' => 'install.tpl') );
254if (!isset($step))
255{
256  $step = 1;
257}
258//---------------------------------------------------------------- form analyze
259include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
260include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
261include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
262
263if ( isset( $_POST['install'] ))
264{
265  if (install_db_connect($infos, $errors))
266  {
267    $required_version = constant('REQUIRED_'.strtoupper($dblayer).'_VERSION');
268    if ( version_compare(pwg_get_db_version(), $required_version, '>=') )
269    {
270      $pwg_charset = 'utf-8';
271      $pwg_db_charset = 'utf8';
272      if ($dblayer=='mysql')
273      {
274        $install_charset_collate = "DEFAULT CHARACTER SET $pwg_db_charset";
275        pwg_query('SET NAMES "'.$pwg_db_charset.'"');
276      }
277      else 
278      {
279        $install_charset_collate = '';
280      }
281    }
282    else
283    {
284      $pwg_charset = 'iso-8859-1';
285      $pwg_db_charset = 'latin1';
286      $install_charset_collate = '';
287      if ( !array_key_exists($language, $languages->get_fs_languages($pwg_charset) ) )
288      {
289        $language='en_UK';
290      }
291    }
292  }
293
294  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
295  if ( empty($webmaster))
296    array_push( $errors, l10n('enter a login for webmaster') );
297  else if ( preg_match( '/[\'"]/', $webmaster ) )
298    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
299  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
300    array_push( $errors, l10n('please enter your password again') );
301  if ( empty($admin_mail))
302    array_push( $errors, l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)') );
303  else
304  {
305    $error_mail_address = validate_mail_address(null, $admin_mail);
306    if (!empty($error_mail_address))
307      array_push( $errors, $error_mail_address );
308  }
309
310  if ( count( $errors ) == 0 )
311  {
312    $step = 2;
313    $file_content = '<?php
314$conf[\'dblayer\'] = \''.$dblayer.'\';
315$conf[\'db_base\'] = \''.$dbname.'\';
316$conf[\'db_user\'] = \''.$dbuser.'\';
317$conf[\'db_password\'] = \''.$dbpasswd.'\';
318$conf[\'db_host\'] = \''.$dbhost.'\';
319
320$prefixeTable = \''.$prefixeTable.'\';
321
322define(\'PHPWG_INSTALLED\', true);
323define(\'PWG_CHARSET\', \''.$pwg_charset.'\');
324define(\'DB_CHARSET\', \''.$pwg_db_charset.'\');
325define(\'DB_COLLATE\', \'\');
326
327?'.'>';
328
329    @umask(0111);
330    // writing the configuration file
331    if ( !($fp = @fopen( $config_file, 'w' )))
332    {
333      $tmp_filename = md5(uniqid(time()));
334      $fh = @fopen( $conf['local_data_dir'] . '/pwg_' . $tmp_filename, 'w' );
335      @fputs($fh, $file_content, strlen($file_content));
336      @fclose($fh);
337
338      $error_copy = l10n('Creation of config file local/config/database.inc.php failed.');
339      $error_copy .= sprintf('<br><a href="install.php?dl=%s">%s</a> %s',
340                             $tmp_filename,
341                             l10n('You can download the config file'),
342                             l10n('and upload it to local/config directory of your installation.')
343        );
344
345      $error_copy .= '<br><br>';
346      $error_copy .= l10n('An alternate solution is to copy the text in the box above and paste it into the file "local/config/database.inc.php" (Warning : database.inc.php must only contain what is in the textarea, no line return or space character)');
347      $error_copy .= '<br><br>';
348      $error_copy .= '<textarea rows="15" cols="70">' . $file_content . '</textarea>';
349    }
350    @fputs($fp, $file_content, strlen($file_content));
351    @fclose($fp);
352
353    // tables creation, based on piwigo_structure.sql
354    execute_sqlfile(
355      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
356      DEFAULT_PREFIX_TABLE,
357      $prefixeTable
358      );
359    // We fill the tables with basic informations
360    execute_sqlfile(
361      PHPWG_ROOT_PATH.'install/config.sql',
362      DEFAULT_PREFIX_TABLE,
363      $prefixeTable
364      );
365
366    $query = '
367INSERT INTO '.$prefixeTable.'config (param,value,comment)
368   VALUES (\'secret_key\',\'md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').')\',
369   \'a secret key specific to the gallery for internal use\');';
370    pwg_query($query);
371
372    // fill languages table
373    foreach ($languages->get_fs_languages($pwg_charset) as $language_code => $language_name)
374    {
375      $languages->perform_action('activate', $language_code);
376    }
377
378    // fill $conf global array
379    load_conf_from_db();
380
381    // PWG_CHARSET is required for building the fs_themes array in the
382    // themes class
383    if (!defined('PWG_CHARSET'))
384    {
385      define('PWG_CHARSET', $pwg_charset);
386    }
387    activate_all_themes();
388
389    $insert = array(
390      'id' => 1,
391      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
392      );
393    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
394
395    // webmaster admin user
396    $inserts = array(
397      array(
398        'id'           => 1,
399        'username'     => $admin_name,
400        'password'     => md5($admin_pass1),
401        'mail_address' => $admin_mail,
402        ),
403      array(
404        'id'           => 2,
405        'username'     => 'guest',
406        ),
407      );
408    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
409
410    create_user_infos(array(1,2), array('language' => $language));
411
412    // Available upgrades must be ignored after a fresh installation. To
413    // make PWG avoid upgrading, we must tell it upgrades have already been
414    // made.
415    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
416    define('CURRENT_DATE', $dbnow);
417    $datas = array();
418    foreach (get_available_upgrade_ids() as $upgrade_id)
419    {
420      array_push(
421        $datas,
422        array(
423          'id'          => $upgrade_id,
424          'applied'     => CURRENT_DATE,
425          'description' => 'upgrade included in installation',
426          )
427        );
428    }
429    mass_inserts(
430      UPGRADE_TABLE,
431      array_keys($datas[0]),
432      $datas
433      );
434  }
435}
436
437//------------------------------------------------------ start template output
438if ($step == 3)
439{
440  @umask(0111);
441  // writing the new configuration file
442  if ( !($fp = @fopen( $config_file, 'w' )))
443  {
444    $html_content = htmlentities( $file_content, ENT_QUOTES );
445    $html_content = nl2br( $html_content );
446    $error_copy = l10n('Copy the text in pink between hyphens and paste it into the file "local/config/database.inc.php"(Warning : database.inc.php must only contain what is in pink, no line return or space character)');
447    $error_copy .= '<br>--------------------------------------------------------------------<br>';
448    $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
449    $error_copy .= '<br>--------------------------------------------------------------------<br>';
450  } 
451  else 
452  {
453    @fputs($fp, $file_content, strlen($file_content));
454    @fclose($fp);
455
456    @unlink($old_config_file);
457    header("Location: index.php");
458    exit();
459  }
460
461  $template->assign(
462    array(
463      'T_CONTENT_ENCODING' => 'utf-8',
464      'migration' => true
465          ));
466}
467else
468{
469  $dbengines = available_engines();
470
471  foreach ($languages->fs_languages as $language_code => $language_name)
472  {
473    if ($language == $language_code)
474    {
475      $template->assign('language_selection', $language_code);
476    }
477    $languages_options[$language_code] = $language_name;
478  }
479  $template->assign('language_options', $languages_options);
480
481  $template->assign(
482    array(
483      'T_CONTENT_ENCODING' => 'utf-8',
484      'RELEASE' => PHPWG_VERSION,
485      'F_ACTION' => 'install.php?language=' . $language,
486      'F_DB_ENGINES' => $dbengines,
487      'F_DB_LAYER' => $dblayer,
488      'F_DB_HOST' => $dbhost,
489      'F_DB_USER' => $dbuser,
490      'F_DB_NAME' => $dbname,
491      'F_DB_PREFIX' => $prefixeTable,
492      'F_ADMIN' => $admin_name,
493      'F_ADMIN_EMAIL' => $admin_mail,
494      'L_INSTALL_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
495      ));
496}
497
498//------------------------------------------------------ errors & infos display
499if ($step == 1)
500{
501  $template->assign('install', true);
502}
503elseif ($step == 3)
504{
505  if (isset($error_copy))
506  {
507    array_push($errors, $error_copy);
508  }
509}
510else
511{
512  array_push(
513    $infos,
514    l10n('Congratulations, Piwigo installation is completed')
515    );
516
517  if (isset($error_copy))
518  {
519    array_push($errors, $error_copy);
520  }
521  else
522  {
523    session_set_save_handler('pwg_session_open',
524      'pwg_session_close',
525      'pwg_session_read',
526      'pwg_session_write',
527      'pwg_session_destroy',
528      'pwg_session_gc'
529    );
530    if ( function_exists('ini_set') )
531    {
532      ini_set('session.use_cookies', $conf['session_use_cookies']);
533      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
534      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
535      ini_set('session.cookie_httponly', 1);
536    }
537    session_name($conf['session_name']);
538    session_set_cookie_params(0, cookie_path());
539    $user = build_user(1, true);
540    log_user($user['id'], false);
541  }
542
543  $template->assign(
544    'SUBSCRIBE_BASE_URL',
545    get_newsletter_subscribe_base_url($language)
546    );
547}
548if (count($errors) != 0)
549{
550  $template->assign('errors', $errors);
551}
552
553if (count($infos) != 0 )
554{
555  $template->assign('infos', $infos);
556}
557
558//----------------------------------------------------------- html code display
559$template->pparse('install');
560?>
Note: See TracBrowser for help on using the repository browser.