source: trunk/install.php @ 5341

Last change on this file since 5341 was 5341, checked in by patdenice, 14 years ago

Feature 1535: Add languages table.
Ready for theme manager!

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