source: trunk/install.php @ 29260

Last change on this file since 29260 was 26461, checked in by mistic100, 10 years ago

Update headers to 2014. Happy new year!!

  • Property svn:eol-style set to LF
File size: 15.7 KB
RevLine 
[218]1<?php
[354]2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[26461]5// | Copyright(C) 2008-2014 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
99if (isset($_POST['install']))
100{
[5220]101  $prefixeTable = $_POST['prefix'];
[1147]102}
103else
104{
[5220]105  $prefixeTable = DEFAULT_PREFIX_TABLE;
[1147]106}
[367]107
[5220]108include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
109@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
[12769]110defined('PWG_LOCAL_DIR') or define('PWG_LOCAL_DIR', 'local/');
[5220]111
[20707]112include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
113
[5266]114// download database config file if exists
[20707]115check_input_parameter('dl', $_GET, false, '/^[a-f0-9]{32}$/');
116
[12802]117if (!empty($_GET['dl']) && file_exists(PHPWG_ROOT_PATH.$conf['data_location'].'pwg_'.$_GET['dl']))
[5266]118{
[12802]119  $filename = PHPWG_ROOT_PATH.$conf['data_location'].'pwg_'.$_GET['dl'];
[5266]120  header('Cache-Control: no-cache, must-revalidate');
121  header('Pragma: no-cache');
122  header('Content-Disposition: attachment; filename="database.inc.php"');
123  header('Content-Transfer-Encoding: binary');
124  header('Content-Length: '.filesize($filename));
125  echo file_get_contents($filename);
126  unlink($filename);
127  exit();
128} 
129
[5220]130// Obtain various vars
131$dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
132$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
133$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
134$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
[20462]135$dblayer = extension_loaded('mysqli') ? 'mysqli' : 'mysql';
[5220]136
[367]137$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
138$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
139$admin_pass2 = (!empty($_POST['admin_pass2'])) ? $_POST['admin_pass2'] : '';
140$admin_mail = (!empty($_POST['admin_mail'])) ? $_POST['admin_mail'] : '';
141
[8311]142$is_newsletter_subscribe = true;
143if (isset($_POST['install']))
144{
145  $is_newsletter_subscribe = isset($_POST['newsletter_subscribe']);
146}
147
[367]148$infos = array();
149$errors = array();
150
[8722]151$config_file = PHPWG_ROOT_PATH.PWG_LOCAL_DIR .'config/database.inc.php';
[5983]152if (@file_exists($config_file))
[4423]153{
[529]154  include($config_file);
[2339]155  // Is Piwigo already installed ?
[529]156  if (defined("PHPWG_INSTALLED"))
157  {
[2339]158    die('Piwigo is already installed');
[529]159  }
[367]160}
161
[529]162include(PHPWG_ROOT_PATH . 'include/constants.php');
[1221]163include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
[529]164
[5357]165include(PHPWG_ROOT_PATH . 'admin/include/languages.class.php');
166$languages = new languages('utf-8');
167
[2248]168if (isset($_GET['language']))
[405]169{
[2248]170  $language = strip_tags($_GET['language']);
[13956]171 
172  if (!in_array($language, array_keys($languages->fs_languages)))
173  {
174    $language = PHPWG_DEFAULT_LANGUAGE;
175  }
[367]176}
[2127]177else
[1855]178{
[2127]179  $language = 'en_UK';
[2248]180  // Try to get browser language
[9518]181  foreach ($languages->fs_languages as $language_code => $fs_language)
[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}
[21166]218else if ('tr_TR' == $language) {
219  define('PHPWG_DOMAIN', 'tr.piwigo.org');
220}
221else if ('da_DK' == $language) {
222  define('PHPWG_DOMAIN', 'da.piwigo.org');
223}
[22570]224else if ('pt_BR' == $language) {
225  define('PHPWG_DOMAIN', 'br.piwigo.org');
226}
[3197]227else {
228  define('PHPWG_DOMAIN', 'piwigo.org');
229}
230define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
231
[5983]232load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
233load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
234load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
235
[4463]236header('Content-Type: text/html; charset=UTF-8');
[3203]237//------------------------------------------------- check php version
238if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
239{
240  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
241}
242
[367]243//----------------------------------------------------- template initialization
[8310]244$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'clear');
[4423]245$template->set_filenames( array('install' => 'install.tpl') );
246if (!isset($step))
247{
248  $step = 1;
249}
[529]250//---------------------------------------------------------------- form analyze
[5384]251include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
252include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
[5387]253include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
[5384]254
[25018]255if (isset($_POST['install']))
[367]256{
[5982]257  install_db_connect($infos, $errors);
258  pwg_db_check_charset();
[5384]259
[25018]260  $webmaster = trim(preg_replace('/\s{2,}/', ' ', $admin_name));
261  if (empty($webmaster))
262  {
263    $errors[] = l10n('enter a login for webmaster');
264  }
265  else if (preg_match( '/[\'"]/', $webmaster))
266  {
267    $errors[] = l10n('webmaster login can\'t contain characters \' or "');
268  }
269  if ($admin_pass1 != $admin_pass2 || empty($admin_pass1))
270  {
271    $errors[] = l10n('please enter your password again');
272  }
273  if (empty($admin_mail))
274  {
275    $errors[] = l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)');
276  }
[2127]277  else
[382]278  {
[2124]279    $error_mail_address = validate_mail_address(null, $admin_mail);
[382]280    if (!empty($error_mail_address))
[25018]281    {
282      $errors[] = $error_mail_address;
283    }
[382]284  }
[2127]285
[382]286  if ( count( $errors ) == 0 )
287  {
288    $step = 2;
[1147]289    $file_content = '<?php
[4410]290$conf[\'dblayer\'] = \''.$dblayer.'\';
[4280]291$conf[\'db_base\'] = \''.$dbname.'\';
292$conf[\'db_user\'] = \''.$dbuser.'\';
293$conf[\'db_password\'] = \''.$dbpasswd.'\';
294$conf[\'db_host\'] = \''.$dbhost.'\';
[1147]295
[5220]296$prefixeTable = \''.$prefixeTable.'\';
[1147]297
298define(\'PHPWG_INSTALLED\', true);
[5982]299define(\'PWG_CHARSET\', \'utf-8\');
300define(\'DB_CHARSET\', \'utf8\');
[2127]301define(\'DB_COLLATE\', \'\');
302
[1147]303?'.'>';
[2127]304
[382]305    @umask(0111);
306    // writing the configuration file
307    if ( !($fp = @fopen( $config_file, 'w' )))
[367]308    {
[20707]309      // make sure nobody can list files of _data directory
310      secure_directory(PHPWG_ROOT_PATH.$conf['data_location']);
311     
[5266]312      $tmp_filename = md5(uniqid(time()));
[12802]313      $fh = @fopen( PHPWG_ROOT_PATH.$conf['data_location'] . 'pwg_' . $tmp_filename, 'w' );
[5266]314      @fputs($fh, $file_content, strlen($file_content));
315      @fclose($fh);
316
[5571]317      $template->assign(
318        array(
319          'config_creation_failed' => true,
320          'config_url' => 'install.php?dl='.$tmp_filename,
321          'config_file_content' => $file_content,
322          )
[5266]323        );
[382]324    }
325    @fputs($fp, $file_content, strlen($file_content));
326    @fclose($fp);
[2127]327
[2339]328    // tables creation, based on piwigo_structure.sql
[1147]329    execute_sqlfile(
[20546]330      PHPWG_ROOT_PATH.'install/piwigo_structure-mysql.sql',
[1147]331      DEFAULT_PREFIX_TABLE,
[5982]332      $prefixeTable,
[20721]333      'mysql'
[1147]334      );
[382]335    // We fill the tables with basic informations
[1147]336    execute_sqlfile(
337      PHPWG_ROOT_PATH.'install/config.sql',
338      DEFAULT_PREFIX_TABLE,
[5982]339      $prefixeTable,
[20721]340      'mysql'
[1147]341      );
[218]342
[4410]343    $query = '
[5220]344INSERT INTO '.$prefixeTable.'config (param,value,comment)
[6130]345   VALUES (\'secret_key\',md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').'),
[4410]346   \'a secret key specific to the gallery for internal use\');';
347    pwg_query($query);
348
[11511]349    conf_update_param('piwigo_db_version', get_branch_from_version(PHPWG_VERSION));
[12008]350    conf_update_param('gallery_title', l10n('Just another Piwigo gallery'));
351    conf_update_param('page_banner', '<h1>%gallery_title%</h1>'."\n\n<p>".l10n('Welcome to my photo gallery').'</p>');
[11511]352
[5341]353    // fill languages table
[9520]354    foreach ($languages->fs_languages as $language_code => $fs_language)
[5341]355    {
[5357]356      $languages->perform_action('activate', $language_code);
[5341]357    }
358
[1284]359    // fill $conf global array
360    load_conf_from_db();
361
[5340]362    // PWG_CHARSET is required for building the fs_themes array in the
363    // themes class
[5452]364    if (!defined('PWG_CHARSET'))
365    {
[5982]366      define('PWG_CHARSET', 'utf-8');
[5452]367    }
[5982]368    activate_core_themes();
[5340]369
[1284]370    $insert = array(
371      'id' => 1,
372      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
373      );
374    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
[2127]375
[382]376    // webmaster admin user
[1284]377    $inserts = array(
378      array(
379        'id'           => 1,
380        'username'     => $admin_name,
381        'password'     => md5($admin_pass1),
382        'mail_address' => $admin_mail,
383        ),
384      array(
385        'id'           => 2,
386        'username'     => 'guest',
387        ),
388      );
389    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
[801]390
[1930]391    create_user_infos(array(1,2), array('language' => $language));
[808]392
[1027]393    // Available upgrades must be ignored after a fresh installation. To
394    // make PWG avoid upgrading, we must tell it upgrades have already been
395    // made.
[4325]396    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
[1221]397    define('CURRENT_DATE', $dbnow);
398    $datas = array();
[1027]399    foreach (get_available_upgrade_ids() as $upgrade_id)
400    {
[25018]401      $datas[] = array(
402        'id'          => $upgrade_id,
403        'applied'     => CURRENT_DATE,
404        'description' => 'upgrade included in installation',
[1221]405        );
[1027]406    }
[1221]407    mass_inserts(
408      UPGRADE_TABLE,
409      array_keys($datas[0]),
410      $datas
411      );
[8311]412
413    if ($is_newsletter_subscribe)
414    {
415      fetchRemote(
416        get_newsletter_subscribe_base_url($language).$admin_mail,
417        $result,
418        array(),
419        array('origin' => 'installation')
420        );
421    }
[382]422  }
[367]423}
[218]424
[2248]425//------------------------------------------------------ start template output
[9518]426foreach ($languages->fs_languages as $language_code => $fs_language)
[4423]427{
[5983]428  if ($language == $language_code)
[4423]429  {
[5983]430    $template->assign('language_selection', $language_code);
[4423]431  }
[9518]432  $languages_options[$language_code] = $fs_language['name'];
[4423]433}
[5983]434$template->assign('language_options', $languages_options);
[4423]435
[5983]436$template->assign(
437  array(
438    'T_CONTENT_ENCODING' => 'utf-8',
439    'RELEASE' => PHPWG_VERSION,
440    'F_ACTION' => 'install.php?language=' . $language,
441    'F_DB_HOST' => $dbhost,
442    'F_DB_USER' => $dbuser,
443    'F_DB_NAME' => $dbname,
444    'F_DB_PREFIX' => $prefixeTable,
445    'F_ADMIN' => $admin_name,
446    'F_ADMIN_EMAIL' => $admin_mail,
[8311]447    'EMAIL' => '<span class="adminEmail">'.$admin_mail.'</span>',
448    'F_NEWSLETTER_SUBSCRIBE' => $is_newsletter_subscribe,
[25005]449    'L_INSTALL_HELP' => l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.', PHPWG_URL.'/forum'),
[5983]450    ));
[4423]451
[529]452//------------------------------------------------------ errors & infos display
[2747]453if ($step == 1)
454{
455  $template->assign('install', true);
456}
457else
458{
[25018]459  $infos[] = l10n('Congratulations, Piwigo installation is completed');
[2747]460
461  if (isset($error_copy))
462  {
[25018]463    $errors[] = $error_copy;
[2747]464  }
[3715]465  else
466  {
467    session_set_save_handler('pwg_session_open',
468      'pwg_session_close',
469      'pwg_session_read',
470      'pwg_session_write',
471      'pwg_session_destroy',
472      'pwg_session_gc'
473    );
474    if ( function_exists('ini_set') )
475    {
476      ini_set('session.use_cookies', $conf['session_use_cookies']);
477      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
478      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
479      ini_set('session.cookie_httponly', 1);
480    }
481    session_name($conf['session_name']);
482    session_set_cookie_params(0, cookie_path());
[20721]483    register_shutdown_function('session_write_close');
484   
[3715]485    $user = build_user(1, true);
486    log_user($user['id'], false);
[12883]487   
488    // email notification
[12885]489    if (isset($_POST['send_password_by_mail']))
490    {
491      include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
492           
493      $keyargs_content = array(
494        get_l10n_args('Hello %s,', $admin_name),
495        get_l10n_args('Welcome to your new installation of Piwigo!', ''),
496        get_l10n_args('', ''),
[12886]497        get_l10n_args('Here are your connection settings', ''),
498        get_l10n_args('Username: %s', $admin_name),
499        get_l10n_args('Password: %s', $admin_pass1),
500        get_l10n_args('Email: %s', $admin_mail),
[12885]501        get_l10n_args('', ''),
502        get_l10n_args('Don\'t hesitate to consult our forums for any help: %s', PHPWG_URL),
503        );
504       
505      pwg_mail(
506        $admin_mail,
507        array(
[12886]508          'subject' => l10n('Just another Piwigo gallery'),
[12885]509          'content' => l10n_args($keyargs_content),
510          'content_format' => 'text/plain',
511          )
512        );
513    }
[3715]514  }
[2747]515}
[2248]516if (count($errors) != 0)
[367]517{
[2248]518  $template->assign('errors', $errors);
[367]519}
[218]520
[2248]521if (count($infos) != 0 )
[367]522{
[2248]523  $template->assign('infos', $infos);
[367]524}
[218]525
526//----------------------------------------------------------- html code display
[367]527$template->pparse('install');
[3203]528?>
Note: See TracBrowser for help on using the repository browser.