source: trunk/install.php @ 8349

Last change on this file since 8349 was 8311, checked in by plg, 13 years ago

feature 2087 added: use a checkbox in the installation screen for newsletter subscription

  • Property svn:eol-style set to LF
File size: 14.4 KB
RevLine 
[218]1<?php
[354]2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 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
[3747]27@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
[367]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//
[4006]32if( !@get_magic_quotes_gpc() )
[218]33{
[367]34  if( is_array($_POST) )
[218]35  {
[367]36    while( list($k, $v) = each($_POST) )
[218]37    {
[367]38      if( is_array($_POST[$k]) )
[218]39      {
[367]40        while( list($k2, $v2) = each($_POST[$k]) )
41        {
42          $_POST[$k][$k2] = addslashes($v2);
43        }
44        @reset($_POST[$k]);
[218]45      }
46      else
47      {
[367]48        $_POST[$k] = addslashes($v);
[218]49      }
50    }
[367]51    @reset($_POST);
52  }
53
[1855]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
[367]74  if( is_array($_COOKIE) )
75  {
76    while( list($k, $v) = each($_COOKIE) )
[218]77    {
[367]78      if( is_array($_COOKIE[$k]) )
[218]79      {
[367]80        while( list($k2, $v2) = each($_COOKIE[$k]) )
81        {
82          $_COOKIE[$k][$k2] = addslashes($v2);
83        }
84        @reset($_COOKIE[$k]);
[218]85      }
86      else
87      {
[367]88        $_COOKIE[$k] = addslashes($v);
[218]89      }
90    }
[367]91    @reset($_COOKIE);
[218]92  }
[367]93}
[218]94
[367]95//----------------------------------------------------- variable initialization
[1147]96
[2339]97define('DEFAULT_PREFIX_TABLE', 'piwigo_');
[1147]98
[5239]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
[1147]108if (isset($_POST['install']))
109{
[5220]110  $prefixeTable = $_POST['prefix'];
[1147]111}
112else
113{
[5220]114  $prefixeTable = DEFAULT_PREFIX_TABLE;
[1147]115}
[367]116
[5220]117include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
118@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
119
[5266]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
[5220]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'] : '';
[5239]139$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : DEFAULT_DB_ENGINE;
[5220]140
[367]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
[8311]146$is_newsletter_subscribe = true;
147if (isset($_POST['install']))
148{
149  $is_newsletter_subscribe = isset($_POST['newsletter_subscribe']);
150}
151
[367]152$infos = array();
153$errors = array();
154
[5213]155$config_file = PHPWG_ROOT_PATH . 'local/config/database.inc.php';
[5983]156if (@file_exists($config_file))
[4423]157{
[529]158  include($config_file);
[2339]159  // Is Piwigo already installed ?
[529]160  if (defined("PHPWG_INSTALLED"))
161  {
[2339]162    die('Piwigo is already installed');
[529]163  }
[367]164}
165
[529]166include(PHPWG_ROOT_PATH . 'include/constants.php');
167include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
[1221]168include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
[529]169
[5357]170include(PHPWG_ROOT_PATH . 'admin/include/languages.class.php');
171$languages = new languages('utf-8');
172
[2248]173if (isset($_GET['language']))
[405]174{
[2248]175  $language = strip_tags($_GET['language']);
[367]176}
[2127]177else
[1855]178{
[2127]179  $language = 'en_UK';
[2248]180  // Try to get browser language
[5357]181  foreach ($languages->fs_languages as $language_code => $language_name)
[2248]182  {
183    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
184    {
185      $language = $language_code;
186      break;
187    }
188  }
[1855]189}
[367]190
[3197]191if ('fr_FR' == $language) {
192  define('PHPWG_DOMAIN', 'fr.piwigo.org');
193}
[5234]194else if ('it_IT' == $language) {
195  define('PHPWG_DOMAIN', 'it.piwigo.org');
196}
[4047]197else if ('de_DE' == $language) {
198  define('PHPWG_DOMAIN', 'de.piwigo.org');
199}
200else if ('es_ES' == $language) {
201  define('PHPWG_DOMAIN', 'es.piwigo.org');
202}
[4816]203else if ('pl_PL' == $language) {
204  define('PHPWG_DOMAIN', 'pl.piwigo.org');
205}
206else if ('zh_CN' == $language) {
207  define('PHPWG_DOMAIN', 'cn.piwigo.org');
208}
[6152]209else if ('hu_HU' == $language) {
[5234]210  define('PHPWG_DOMAIN', 'hu.piwigo.org');
211}
[6152]212else if ('ru_RU' == $language) {
[5234]213  define('PHPWG_DOMAIN', 'ru.piwigo.org');
214}
[6152]215else if ('nl_NL' == $language) {
216  define('PHPWG_DOMAIN', 'nl.piwigo.org');
217}
[3197]218else {
219  define('PHPWG_DOMAIN', 'piwigo.org');
220}
221define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
222
[5983]223load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
224load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
225load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
226
[4463]227header('Content-Type: text/html; charset=UTF-8');
[3203]228//------------------------------------------------- check php version
229if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
230{
231  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
232}
233
[367]234//----------------------------------------------------- template initialization
[3203]235include( PHPWG_ROOT_PATH .'include/template.class.php');
[8310]236$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'clear');
[4423]237$template->set_filenames( array('install' => 'install.tpl') );
238if (!isset($step))
239{
240  $step = 1;
241}
[529]242//---------------------------------------------------------------- form analyze
[5384]243include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
244include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
[5387]245include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
[5384]246
[367]247if ( isset( $_POST['install'] ))
248{
[5982]249  install_db_connect($infos, $errors);
250  pwg_db_check_charset();
[5384]251
[382]252  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
253  if ( empty($webmaster))
[5021]254    array_push( $errors, l10n('enter a login for webmaster') );
[382]255  else if ( preg_match( '/[\'"]/', $webmaster ) )
[5207]256    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
[382]257  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
[5021]258    array_push( $errors, l10n('please enter your password again') );
[382]259  if ( empty($admin_mail))
[5021]260    array_push( $errors, l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)') );
[2127]261  else
[382]262  {
[2124]263    $error_mail_address = validate_mail_address(null, $admin_mail);
[382]264    if (!empty($error_mail_address))
265      array_push( $errors, $error_mail_address );
266  }
[2127]267
[382]268  if ( count( $errors ) == 0 )
269  {
270    $step = 2;
[1147]271    $file_content = '<?php
[4410]272$conf[\'dblayer\'] = \''.$dblayer.'\';
[4280]273$conf[\'db_base\'] = \''.$dbname.'\';
274$conf[\'db_user\'] = \''.$dbuser.'\';
275$conf[\'db_password\'] = \''.$dbpasswd.'\';
276$conf[\'db_host\'] = \''.$dbhost.'\';
[1147]277
[5220]278$prefixeTable = \''.$prefixeTable.'\';
[1147]279
280define(\'PHPWG_INSTALLED\', true);
[5982]281define(\'PWG_CHARSET\', \'utf-8\');
282define(\'DB_CHARSET\', \'utf8\');
[2127]283define(\'DB_COLLATE\', \'\');
284
[1147]285?'.'>';
[2127]286
[382]287    @umask(0111);
288    // writing the configuration file
289    if ( !($fp = @fopen( $config_file, 'w' )))
[367]290    {
[5266]291      $tmp_filename = md5(uniqid(time()));
292      $fh = @fopen( $conf['local_data_dir'] . '/pwg_' . $tmp_filename, 'w' );
293      @fputs($fh, $file_content, strlen($file_content));
294      @fclose($fh);
295
[5571]296      $template->assign(
297        array(
298          'config_creation_failed' => true,
299          'config_url' => 'install.php?dl='.$tmp_filename,
300          'config_file_content' => $file_content,
301          )
[5266]302        );
[382]303    }
304    @fputs($fp, $file_content, strlen($file_content));
305    @fclose($fp);
[2127]306
[2339]307    // tables creation, based on piwigo_structure.sql
[1147]308    execute_sqlfile(
[4410]309      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
[1147]310      DEFAULT_PREFIX_TABLE,
[5982]311      $prefixeTable,
312      $dblayer
[1147]313      );
[382]314    // We fill the tables with basic informations
[1147]315    execute_sqlfile(
316      PHPWG_ROOT_PATH.'install/config.sql',
317      DEFAULT_PREFIX_TABLE,
[5982]318      $prefixeTable,
319      $dblayer
[1147]320      );
[218]321
[4410]322    $query = '
[5220]323INSERT INTO '.$prefixeTable.'config (param,value,comment)
[6130]324   VALUES (\'secret_key\',md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').'),
[4410]325   \'a secret key specific to the gallery for internal use\');';
326    pwg_query($query);
327
[5341]328    // fill languages table
[5982]329    foreach ($languages->get_fs_languages() as $language_code => $language_name)
[5341]330    {
[5357]331      $languages->perform_action('activate', $language_code);
[5341]332    }
333
[1284]334    // fill $conf global array
335    load_conf_from_db();
336
[5340]337    // PWG_CHARSET is required for building the fs_themes array in the
338    // themes class
[5452]339    if (!defined('PWG_CHARSET'))
340    {
[5982]341      define('PWG_CHARSET', 'utf-8');
[5452]342    }
[5982]343    activate_core_themes();
[5340]344
[1284]345    $insert = array(
346      'id' => 1,
347      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
348      );
349    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
[2127]350
[382]351    // webmaster admin user
[1284]352    $inserts = array(
353      array(
354        'id'           => 1,
355        'username'     => $admin_name,
356        'password'     => md5($admin_pass1),
357        'mail_address' => $admin_mail,
358        ),
359      array(
360        'id'           => 2,
361        'username'     => 'guest',
362        ),
363      );
364    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
[801]365
[1930]366    create_user_infos(array(1,2), array('language' => $language));
[808]367
[1027]368    // Available upgrades must be ignored after a fresh installation. To
369    // make PWG avoid upgrading, we must tell it upgrades have already been
370    // made.
[4325]371    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
[1221]372    define('CURRENT_DATE', $dbnow);
373    $datas = array();
[1027]374    foreach (get_available_upgrade_ids() as $upgrade_id)
375    {
[1221]376      array_push(
377        $datas,
378        array(
379          'id'          => $upgrade_id,
380          'applied'     => CURRENT_DATE,
381          'description' => 'upgrade included in installation',
382          )
383        );
[1027]384    }
[1221]385    mass_inserts(
386      UPGRADE_TABLE,
387      array_keys($datas[0]),
388      $datas
389      );
[8311]390
391    if ($is_newsletter_subscribe)
392    {
393      fetchRemote(
394        get_newsletter_subscribe_base_url($language).$admin_mail,
395        $result,
396        array(),
397        array('origin' => 'installation')
398        );
399    }
[382]400  }
[367]401}
[218]402
[2248]403//------------------------------------------------------ start template output
[5983]404$dbengines = available_engines();
405
406foreach ($languages->fs_languages as $language_code => $language_name)
[4423]407{
[5983]408  if ($language == $language_code)
[4423]409  {
[5983]410    $template->assign('language_selection', $language_code);
[4423]411  }
[5983]412  $languages_options[$language_code] = $language_name;
[4423]413}
[5983]414$template->assign('language_options', $languages_options);
[4423]415
[5983]416$template->assign(
417  array(
418    'T_CONTENT_ENCODING' => 'utf-8',
419    'RELEASE' => PHPWG_VERSION,
420    'F_ACTION' => 'install.php?language=' . $language,
421    'F_DB_ENGINES' => $dbengines,
422    'F_DB_LAYER' => $dblayer,
423    'F_DB_HOST' => $dbhost,
424    'F_DB_USER' => $dbuser,
425    'F_DB_NAME' => $dbname,
426    'F_DB_PREFIX' => $prefixeTable,
427    'F_ADMIN' => $admin_name,
428    'F_ADMIN_EMAIL' => $admin_mail,
[8311]429    'EMAIL' => '<span class="adminEmail">'.$admin_mail.'</span>',
430    'F_NEWSLETTER_SUBSCRIBE' => $is_newsletter_subscribe,
[5983]431    'L_INSTALL_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
432    ));
[4423]433
[529]434//------------------------------------------------------ errors & infos display
[2747]435if ($step == 1)
436{
437  $template->assign('install', true);
438}
439else
440{
[5408]441  array_push(
442    $infos,
443    l10n('Congratulations, Piwigo installation is completed')
444    );
[2747]445
446  if (isset($error_copy))
447  {
448    array_push($errors, $error_copy);
449  }
[3715]450  else
451  {
452    session_set_save_handler('pwg_session_open',
453      'pwg_session_close',
454      'pwg_session_read',
455      'pwg_session_write',
456      'pwg_session_destroy',
457      'pwg_session_gc'
458    );
459    if ( function_exists('ini_set') )
460    {
461      ini_set('session.use_cookies', $conf['session_use_cookies']);
462      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
463      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
464      ini_set('session.cookie_httponly', 1);
465    }
466    session_name($conf['session_name']);
467    session_set_cookie_params(0, cookie_path());
468    $user = build_user(1, true);
469    log_user($user['id'], false);
470  }
[2747]471}
[2248]472if (count($errors) != 0)
[367]473{
[2248]474  $template->assign('errors', $errors);
[367]475}
[218]476
[2248]477if (count($infos) != 0 )
[367]478{
[2248]479  $template->assign('infos', $infos);
[367]480}
[218]481
482//----------------------------------------------------------- html code display
[367]483$template->pparse('install');
[3203]484?>
Note: See TracBrowser for help on using the repository browser.