source: trunk/install.php @ 4423

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

Feature 1255 : migration script

  • Property svn:eol-style set to LF
File size: 14.8 KB
RevLine 
[218]1<?php
[354]2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[3049]5// | Copyright(C) 2008-2009 Piwigo Team                  http://piwigo.org |
[2297]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// +-----------------------------------------------------------------------+
[218]23
[367]24//----------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
[345]26
[4410]27include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
[382]28
[3747]29@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
[367]30//
31// addslashes to vars if magic_quotes_gpc is off this is a security
32// precaution to prevent someone trying to break out of a SQL statement.
33//
[4006]34if( !@get_magic_quotes_gpc() )
[218]35{
[367]36  if( is_array($_POST) )
[218]37  {
[367]38    while( list($k, $v) = each($_POST) )
[218]39    {
[367]40      if( is_array($_POST[$k]) )
[218]41      {
[367]42        while( list($k2, $v2) = each($_POST[$k]) )
43        {
44          $_POST[$k][$k2] = addslashes($v2);
45        }
46        @reset($_POST[$k]);
[218]47      }
48      else
49      {
[367]50        $_POST[$k] = addslashes($v);
[218]51      }
52    }
[367]53    @reset($_POST);
54  }
55
[1855]56  if( is_array($_GET) )
57  {
58    while( list($k, $v) = each($_GET) )
59    {
60      if( is_array($_GET[$k]) )
61      {
62        while( list($k2, $v2) = each($_GET[$k]) )
63        {
64          $_GET[$k][$k2] = addslashes($v2);
65        }
66        @reset($_GET[$k]);
67      }
68      else
69      {
70        $_GET[$k] = addslashes($v);
71      }
72    }
73    @reset($_GET);
74  }
75
[367]76  if( is_array($_COOKIE) )
77  {
78    while( list($k, $v) = each($_COOKIE) )
[218]79    {
[367]80      if( is_array($_COOKIE[$k]) )
[218]81      {
[367]82        while( list($k2, $v2) = each($_COOKIE[$k]) )
83        {
84          $_COOKIE[$k][$k2] = addslashes($v2);
85        }
86        @reset($_COOKIE[$k]);
[218]87      }
88      else
89      {
[367]90        $_COOKIE[$k] = addslashes($v);
[218]91      }
92    }
[367]93    @reset($_COOKIE);
[218]94  }
[367]95}
[218]96
[367]97//----------------------------------------------------- variable initialization
[1147]98
[2339]99define('DEFAULT_PREFIX_TABLE', 'piwigo_');
[1147]100
[367]101// Obtain various vars
102$dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
103$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
104$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
105$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
[4410]106$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : 'mysql';
[367]107
[1147]108if (isset($_POST['install']))
109{
110  $table_prefix = $_POST['prefix'];
111}
112else
113{
114  $table_prefix = DEFAULT_PREFIX_TABLE;
115}
[367]116
117$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
118$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
119$admin_pass2 = (!empty($_POST['admin_pass2'])) ? $_POST['admin_pass2'] : '';
120$admin_mail = (!empty($_POST['admin_mail'])) ? $_POST['admin_mail'] : '';
121
122$infos = array();
123$errors = array();
124
[4423]125// database config file migration : mysql.inc.php et config_database.inc.php
126$old_config_file = PHPWG_ROOT_PATH . 'include/mysql.inc.php';
127$config_file = PHPWG_ROOT_PATH . 'include/config_database.inc.php';
128if (!file_exists($config_file) && file_exists($old_config_file))
129{
130  $step = 3;
131  include $old_config_file;
132  $file_content = '<?php
133$conf[\'dblayer\'] = \'mysql\';
134$conf[\'db_base\'] = \''.$cfgBase.'\';
135$conf[\'db_user\'] = \''.$cfgUser.'\';
136$conf[\'db_password\'] = \''.$cfgPassword.'\';
137$conf[\'db_host\'] = \''.$cfgHote.'\';
138
139$prefixeTable = \''.$prefixeTable.'\';
140
141define(\'PHPWG_INSTALLED\', true);
142define(\'PWG_CHARSET\', \''.PWG_CHARSET.'\');
143define(\'DB_CHARSET\', \''.DB_CHARSET.'\');
144define(\'DB_COLLATE\', \''.DB_COLLATE.'\');
145
146?'.'>';
147}
[367]148// Open config.php ... if it exists
[4423]149elseif (@file_exists($config_file))
[367]150{
[529]151  include($config_file);
[2339]152  // Is Piwigo already installed ?
[529]153  if (defined("PHPWG_INSTALLED"))
154  {
[2339]155    die('Piwigo is already installed');
[529]156  }
[367]157}
158
[682]159$prefixeTable = $table_prefix;
[819]160include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
[1079]161@include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
[4410]162include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
[529]163include(PHPWG_ROOT_PATH . 'include/constants.php');
164include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
[1221]165include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
[2102]166include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
[529]167
[2248]168if (isset($_GET['language']))
[405]169{
[2248]170  $language = strip_tags($_GET['language']);
[367]171}
[2127]172else
[1855]173{
[2127]174  $language = 'en_UK';
[2248]175  // Try to get browser language
176  foreach (get_languages('utf-8') as $language_code => $language_name)
177  {
178    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
179    {
180      $language = $language_code;
181      break;
182    }
183  }
[1855]184}
[367]185
[3197]186if ('fr_FR' == $language) {
187  define('PHPWG_DOMAIN', 'fr.piwigo.org');
188}
[4047]189else if ('de_DE' == $language) {
190  define('PHPWG_DOMAIN', 'de.piwigo.org');
191}
192else if ('es_ES' == $language) {
193  define('PHPWG_DOMAIN', 'es.piwigo.org');
194}
[3197]195else {
196  define('PHPWG_DOMAIN', 'piwigo.org');
197}
198define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
199
[4423]200if ($step != 3)
201{
202  load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
203  load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
204  load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
205}
[529]206
[3203]207//------------------------------------------------- check php version
208if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
209{
210  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
211}
212
[367]213//----------------------------------------------------- template initialization
[3203]214include( PHPWG_ROOT_PATH .'include/template.class.php');
[4410]215$template = new Template(PHPWG_ROOT_PATH.'admin/template/goto', 'roma');
[4423]216$template->set_filenames( array('install' => 'install.tpl') );
217if (!isset($step))
218{
219  $step = 1;
220}
[529]221//---------------------------------------------------------------- form analyze
[367]222if ( isset( $_POST['install'] ))
223{
[4410]224  if (($pwg_db_link = pwg_db_connect($_POST['dbhost'], $_POST['dbuser'], 
225                                     $_POST['dbpasswd'], $_POST['dbname']))!==false) 
[382]226  {
[4410]227
228    array_push( $infos, l10n('step1_confirmation') );
229
230    $required_version = constant('REQUIRED_'.strtoupper($conf['dblayer']).'_VERSION');
231    if ( version_compare(pwg_get_db_version(), $required_version, '>=') )
[367]232    {
[4410]233      $pwg_charset = 'utf-8';
234      $pwg_db_charset = 'utf8';
235      if ($dblayer=='mysql')
236      {
237        $install_charset_collate = "DEFAULT CHARACTER SET $pwg_db_charset";
238      }
239      else 
240      {
241        $install_charset_collate = '';
242      }
[218]243    }
[367]244    else
245    {
[4410]246      $pwg_charset = 'iso-8859-1';
247      $pwg_db_charset = 'latin1';
[2127]248      $install_charset_collate = '';
249      if ( !array_key_exists($language, get_languages($pwg_charset) ) )
250      {
251        $language='en_UK';
252      }
253    }
[382]254  }
255  else
256  {
[2201]257    array_push( $errors, l10n('step1_err_server') );
[382]258  }
[2127]259
[382]260  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
261  if ( empty($webmaster))
[2201]262    array_push( $errors, l10n('step2_err_login1') );
[382]263  else if ( preg_match( '/[\'"]/', $webmaster ) )
[2201]264    array_push( $errors, l10n('step2_err_login3') );
[382]265  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
[2201]266    array_push( $errors, l10n('step2_err_pass') );
[382]267  if ( empty($admin_mail))
[2201]268    array_push( $errors, l10n('reg_err_mail_address') );
[2127]269  else
[382]270  {
[2124]271    $error_mail_address = validate_mail_address(null, $admin_mail);
[382]272    if (!empty($error_mail_address))
273      array_push( $errors, $error_mail_address );
274  }
[2127]275
[382]276  if ( count( $errors ) == 0 )
277  {
278    $step = 2;
[1147]279    $file_content = '<?php
[4410]280$conf[\'dblayer\'] = \''.$dblayer.'\';
[4280]281$conf[\'db_base\'] = \''.$dbname.'\';
282$conf[\'db_user\'] = \''.$dbuser.'\';
283$conf[\'db_password\'] = \''.$dbpasswd.'\';
284$conf[\'db_host\'] = \''.$dbhost.'\';
[1147]285
286$prefixeTable = \''.$table_prefix.'\';
287
288define(\'PHPWG_INSTALLED\', true);
[2127]289define(\'PWG_CHARSET\', \''.$pwg_charset.'\');
290define(\'DB_CHARSET\', \''.$pwg_db_charset.'\');
291define(\'DB_COLLATE\', \'\');
292
[1147]293?'.'>';
[2127]294
[382]295    @umask(0111);
296    // writing the configuration file
297    if ( !($fp = @fopen( $config_file, 'w' )))
[367]298    {
[382]299      $html_content = htmlentities( $file_content, ENT_QUOTES );
300      $html_content = nl2br( $html_content );
[2747]301      $error_copy = l10n('step1_err_copy');
[3185]302      $error_copy .= '<br>--------------------------------------------------------------------<br>';
[2747]303      $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
[3185]304      $error_copy .= '<br>--------------------------------------------------------------------<br>';
[382]305    }
306    @fputs($fp, $file_content, strlen($file_content));
307    @fclose($fp);
[2127]308
[2189]309    // Create empty local files to avoid log errors
310    create_empty_local_files();
311
[2339]312    // tables creation, based on piwigo_structure.sql
[1147]313    execute_sqlfile(
[4410]314      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
[1147]315      DEFAULT_PREFIX_TABLE,
316      $table_prefix
317      );
[382]318    // We fill the tables with basic informations
[1147]319    execute_sqlfile(
320      PHPWG_ROOT_PATH.'install/config.sql',
321      DEFAULT_PREFIX_TABLE,
322      $table_prefix
323      );
[218]324
[4410]325    $query = '
326INSERT INTO piwigo_config (param,value,comment)
327   VALUES (\'secret_key\',\'md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').')\',
328   \'a secret key specific to the gallery for internal use\');';
329    pwg_query($query);
330
[1284]331    // fill $conf global array
332    load_conf_from_db();
333
334    $insert = array(
335      'id' => 1,
336      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
337      );
338    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
[2127]339
[382]340    // webmaster admin user
[1284]341    $inserts = array(
342      array(
343        'id'           => 1,
344        'username'     => $admin_name,
345        'password'     => md5($admin_pass1),
346        'mail_address' => $admin_mail,
347        ),
348      array(
349        'id'           => 2,
350        'username'     => 'guest',
351        ),
352      );
353    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
[801]354
[1930]355    create_user_infos(array(1,2), array('language' => $language));
[808]356
[1027]357    // Available upgrades must be ignored after a fresh installation. To
358    // make PWG avoid upgrading, we must tell it upgrades have already been
359    // made.
[4325]360    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
[1221]361    define('CURRENT_DATE', $dbnow);
362    $datas = array();
[1027]363    foreach (get_available_upgrade_ids() as $upgrade_id)
364    {
[1221]365      array_push(
366        $datas,
367        array(
368          'id'          => $upgrade_id,
369          'applied'     => CURRENT_DATE,
370          'description' => 'upgrade included in installation',
371          )
372        );
[1027]373    }
[1221]374    mass_inserts(
375      UPGRADE_TABLE,
376      array_keys($datas[0]),
377      $datas
378      );
[382]379  }
[367]380}
[218]381
[2248]382//------------------------------------------------------ start template output
[4423]383if ($step == 3)
384{
385  @umask(0111);
386  // writing the new configuration file
387  if ( !($fp = @fopen( $config_file, 'w' )))
388  {
389    $html_content = htmlentities( $file_content, ENT_QUOTES );
390    $html_content = nl2br( $html_content );
391    $error_copy = l10n('Copy the text in pink between hyphens and paste it into the file "include/config_database.inc.php"(Warning : config_database.inc.php must only contain what is in pink, no line return or space character)');
392    $error_copy .= '<br>--------------------------------------------------------------------<br>';
393    $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
394    $error_copy .= '<br>--------------------------------------------------------------------<br>';
395  } 
396  else 
397  {
398    @fputs($fp, $file_content, strlen($file_content));
399    @fclose($fp);
[4410]400
[4423]401    @unlink($old_config_file);
402    header("Location: index.php");
403    exit();
404  }
405
406  $template->assign(
407    array(
408      'T_CONTENT_ENCODING' => 'utf-8',
409      'migration' => true
410          ));
411}
412else
[2248]413{
[4423]414  $dbengines = available_engines();
415
416  foreach (get_languages('utf-8') as $language_code => $language_name)
[2248]417  {
[4423]418    if ($language == $language_code)
419    {
420      $template->assign('language_selection', $language_code);
421    }
422    $languages_options[$language_code] = $language_name;
[2248]423  }
[4423]424  $template->assign('language_options', $languages_options);
425
426  $template->assign(
427    array(
428      'T_CONTENT_ENCODING' => 'utf-8',
429      'RELEASE' => PHPWG_VERSION,
430      'F_ACTION' => 'install.php?language=' . $language,
431      'F_DB_ENGINES' => $dbengines,
432      'F_DB_LAYER' => $dblayer,
433      'F_DB_HOST' => $dbhost,
434      'F_DB_USER' => $dbuser,
435      'F_DB_NAME' => $dbname,
436      'F_DB_PREFIX' => $table_prefix,
437      'F_ADMIN' => $admin_name,
438      'F_ADMIN_EMAIL' => $admin_mail,
439      'L_INSTALL_HELP' => sprintf(l10n('install_help'), PHPWG_URL.'/forum'),
440      ));
[2248]441}
442
[529]443//------------------------------------------------------ errors & infos display
[2747]444if ($step == 1)
445{
446  $template->assign('install', true);
447}
[4423]448elseif ($step == 3)
449{
450  if (isset($error_copy))
451  {
452    array_push($errors, $error_copy);
453  }
454}
[2747]455else
456{
457  array_push($infos, l10n('install_end_message'));
458
459  if (isset($error_copy))
460  {
461    array_push($errors, $error_copy);
462  }
[3715]463  else
464  {
465    session_set_save_handler('pwg_session_open',
466      'pwg_session_close',
467      'pwg_session_read',
468      'pwg_session_write',
469      'pwg_session_destroy',
470      'pwg_session_gc'
471    );
472    if ( function_exists('ini_set') )
473    {
474      ini_set('session.use_cookies', $conf['session_use_cookies']);
475      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
476      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
477      ini_set('session.cookie_httponly', 1);
478    }
479    session_name($conf['session_name']);
480    session_set_cookie_params(0, cookie_path());
481    $user = build_user(1, true);
482    log_user($user['id'], false);
483  }
[3382]484
485  $template->assign(
486    'SUBSCRIBE_BASE_URL',
487    get_newsletter_subscribe_base_url($language)
488    );
[2747]489}
[2248]490if (count($errors) != 0)
[367]491{
[2248]492  $template->assign('errors', $errors);
[367]493}
[218]494
[2248]495if (count($infos) != 0 )
[367]496{
[2248]497  $template->assign('infos', $infos);
[367]498}
[218]499
500//----------------------------------------------------------- html code display
[367]501$template->pparse('install');
[3203]502?>
Note: See TracBrowser for help on using the repository browser.