aboutsummaryrefslogtreecommitdiffstats
path: root/install.php
blob: 4e358b775fed6ace5db8b9b0251b9ecb4aee38c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<?php
// +-----------------------------------------------------------------------+
// |                              install.php                              |
// +-----------------------------------------------------------------------+
// | application   : PhpWebGallery <http://phpwebgallery.net>              |
// | branch        : BSF (Best So Far)                                     |
// +-----------------------------------------------------------------------+
// | file          : $RCSfile$
// | last update   : $Date$
// | last modifier : $Author$
// | revision      : $Revision$
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify  |
// | it under the terms of the GNU General Public License as published by  |
// | the Free Software Foundation                                          |
// |                                                                       |
// | This program is distributed in the hope that it will be useful, but   |
// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
// | General Public License for more details.                              |
// |                                                                       |
// | You should have received a copy of the GNU General Public License     |
// | along with this program; if not, write to the Free Software           |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA.                                                                  |
// +-----------------------------------------------------------------------+

//-------------------------------------------------------------------- includes
define( 'PREFIX_INCLUDE', '' );
include( './include/vtemplate.class.php' );
include( './include/functions.inc.php' );

$config_file = './config.php';
//----------------------------------------------------- template initialization
$vtp = new VTemplate;
$handle = $vtp->Open( './template/default/install.vtp' );
$vtp->setGlobalVar( $handle, 'release', '1.4' );
//-------------------------------------------------------------------- language
if ( isset( $_GET['language'] ) )
{
  $isadmin = true;
  $lang = array();
  include( './language/'.$_GET['language'].'.php' );
  $tpl = array( 'step1_err_copy', 'step1_err_copy_2', 'step1_err_copy_next',
                'errors_title', 'step1_title','step1_host','step1_host_info',
                'step1_user','step1_user_info','step1_pass','step1_pass_info',
                'step1_database','step1_database_info','step1_prefix',
                'step1_prefix_info','submit','infos_title','step2_title',
                'conf_general_webmaster','conf_general_webmaster_info',
                'step2_pwd','step2_pwd_info','step2_pwd_conf',
                'step2_pwd_conf_info','conf_general_mail',
                'conf_general_mail_info','install_end_title',
                'install_end_message','install_help');
  templatize_array( $tpl, 'lang', $handle );
  $vtp->setGlobalVar( $handle, 'language', $_GET['language'] );
}
//---------------------- Step 1 : connection informations, write of config file
if ( isset($_GET['step']) && $_GET['step'] == 1 )
{
  $errors = array();
  $infos  = array();
  // creation of ./include/mysql.inc.php : file containing database
  // connection informations
  if ( isset( $_POST['cfgBase'] )
       and isset( $_POST['cfgUser'] )
       and isset( $_POST['cfgPassword'] )
       and isset( $_POST['cfgHote'] ) )
  {
    if ( @mysql_connect( $_POST['cfgHote'],
                         $_POST['cfgUser'],
                         $_POST['cfgPassword'] ) )
    {
      if ( @mysql_select_db($_POST['cfgBase'] ) )
      {
        array_push( $infos, $lang['step1_confirmation'] );
      }
      else
      {
        array_push( $errors, $lang['step1_err_db'] );
      }
    }
    else
    {
      array_push( $errors, $lang['step1_err_server'] );
    }
	
    if ( count( $errors ) == 0 )
    {
      $file_content = "<?php";
      $file_content.= "\n\$cfgBase = '".     $_POST['cfgBase']."';";
      $file_content.= "\n\$cfgUser = '".     $_POST['cfgUser']."';";
      $file_content.= "\n\$cfgPassword = '". $_POST['cfgPassword']."';";
      $file_content.= "\n\$cfgHote = '".     $_POST['cfgHote']."';";
	  $file_content.= "\n";
      $file_content.= "\n\$table_prefix = '".$_POST['prefixeTable']."';";
	  $file_content.= "\n";
	  $file_content.= "\ndefine('PHPWG_INSTALLED', true);";
      $file_content.= "\n?>";
      // writting the configuration file
      if ( $fp = @fopen( $config_file, 'a+' ) )
      {
	  	ftruncate($fp, 0);
        fwrite( $fp, $file_content ); 
        fclose( $fp );
      }
      $cfgHote     = '';
      $cfgUser     = '';
      $cfgPassword = '';
      $cfgBase     = '';
      if ( is_file( $config_file ) ) include( $config_file );
      $file_OK = false;
      if ( @mysql_connect( $cfgHote, $cfgUser, $cfgPassword ) )
      {
        if ( @mysql_select_db( $cfgBase ) ) $file_OK = true;
      }
      if ( !$file_OK )
      {
        $vtp->addSession( $handle, 'error_copy' );
        $html_content = htmlentities( $file_content, ENT_QUOTES );
        $html_content = nl2br( $html_content );
        $vtp->setVar( $handle, 'error_copy.file_content', $html_content );
        $vtp->closeSession( $handle, 'error_copy' );
      }
      else
      {
        $url = 'install.php?step=2&language='.$_GET['language'];
        header( 'Request-URI: '.$url );  
        header( 'Content-Location: '.$url);  
        header( 'Location: '.$url );
        exit();
      }
    }
  }
  // errors display
  if ( sizeof( $errors ) != 0 )
  {
    $vtp->addSession( $handle, 'errors' );
    foreach ( $errors as $error ) {
      $vtp->addSession( $handle, 'error' );
      $vtp->setVar( $handle, 'error.content', $error );
      $vtp->closeSession( $handle, 'error' );
    }
    $vtp->closeSession( $handle, 'errors' );
  }
  // infos display
  if ( sizeof( $infos ) != 0 )
  {
    $vtp->addSession( $handle, 'infos' );
    foreach ( $infos as $info ) {
      $vtp->addSession( $handle, 'info' );
      $vtp->setVar( $handle, 'info.content', $info );
      $vtp->closeSession( $handle, 'info' );
    }
    $vtp->closeSession( $handle, 'infos' );
  }
  // form display (if necessary)
  if ( !isset( $_POST['submit'] ) or sizeof( $errors ) > 0 )
  {
    $vtp->addSession( $handle, 'step1' );

    // host
    if ( !isset( $_POST['cfgHote'] ) )
      $vtp->setVar( $handle, 'step1.f_host', 'localhost' );
    else
      $vtp->setVar( $handle, 'step1.f_host', $_POST['cfgHote'] );
    // user
	if ( isset( $_POST['cfgUser'] ) )
	    $vtp->setVar( $handle, 'step1.f_user', $_POST['cfgUser'] );
    // base
	if ( isset( $_POST['cfgBase'] ) )
	    $vtp->setVar( $handle, 'step1.f_base', $_POST['cfgBase'] );
    // prefixeTable
    if ( !isset( $_POST['prefixeTable'] ) )
      $vtp->setVar( $handle, 'step1.f_prefixeTable', 'phpwebgallery_' );
    else
      $vtp->setVar( $handle, 'step1.f_prefixeTable', $_POST['prefixeTable'] );

    $vtp->closeSession( $handle, 'step1' );
  }
}
//------------------------------------- Step 2 : creation of tables in database
else if (  isset($_GET['step']) && $_GET['step'] == 2 )
{
  $errors = array();
  $infos  = array();

  include( $config_file );
  mysql_connect( $cfgHote, $cfgUser, $cfgPassword )
    or die ( "Can't connect to database host" );
  mysql_select_db( $cfgBase )
    or die ( "Connection to host succeeded, but database selection failed" );
		
  if ( !isset( $_POST['submit'] ) )
  {
    // tables creation, based on phpwebgallery_structure.sql
    $sql_lines = file( './admin/phpwebgallery_structure.sql' );
    $query = '';
    foreach ( $sql_lines as $sql_line ) {
      $sql_line = trim( $sql_line );
      if ( preg_match( '/(^--|^$)/', $sql_line ) ) continue;
      $query.= ' '.$sql_line;
      // if we reached the end of query, we execute it and reinitialize the
      // variable "query"
      if ( preg_match( '/;$/', $sql_line ) )
      {
        $query = trim( $query );
        $query = str_replace( 'phpwebgallery_', $table_prefix, $query );
        // we don't execute "DROP TABLE" queries
        if ( !preg_match( '/^DROP TABLE/i', $query ) )
          mysql_query( $query );
        $query = '';
      }
    }
  }

  if ( isset( $_POST['submit'] ) )
  {
    // webmaster login must be
    // 1. non empty
    // 2. without characters ' or "
    $webmaster = preg_replace( '/\s{2,}/', ' ', $_POST['webmaster'] );
    $webmaster = trim( $webmaster );
    if ( $webmaster == '' )
      array_push( $errors, $lang['step2_err_login1'] );
    if ( preg_match( '/[\'"]/', $webmaster ) )
      array_push( $errors, $lang['step2_err_login3'] );
    // the webmaster string must be the same as its confirmation
    if ( $_POST['pwdWebmaster'] != $_POST['pwdWebmasterConf'] )
      array_push( $errors, $lang['step2_err_pass'] );
    // mail address must have this format : name@server.com
    $error_mail_address = validate_mail_address( $_POST['mail_webmaster'] );
    if ( $error_mail_address != '' )
      array_push( $errors, $error_mail_address );
    if ( $_POST['mail_webmaster'] == '' )
      array_push( $errors, $lang['reg_err_mail_address'] );

    // if no error found till here : insertion of data in tables
    if ( count( $errors ) == 0 )
    {
      $query = 'DELETE FROM '.$table_prefix.'config';
      mysql_query( $query );

      $query = 'INSERT INTO '.$table_prefix.'config';
      $query.= ' (webmaster,mail_webmaster) VALUES ';
      $query.= " ('".$webmaster."','".$_POST['mail_webmaster']."')";
      $query.= ';';
      mysql_query( $query );

      $query = 'INSERT INTO '.$table_prefix.'sites';
      $query.= " (id,galleries_url) VALUES (1, './galleries/')";
      $query.= ';';
      mysql_query( $query );

      // webmaster admin user
      $query = 'INSERT INTO '.$table_prefix.'users';
      $query.= ' (id,username,password,status,language,mail_address) VALUES ';
      $query.= "(1,'".$webmaster."','".md5( $_POST['pwdWebmaster'] )."'";
      $query.= ",'admin','".$_GET['language']."'";
      $query.= ",'".$_POST['mail_webmaster']."')";
      $query.= ';';
      mysql_query($query);

      // guest user
      $query = 'INSERT INTO '.$table_prefix.'users';
      $query.= '(id,username,password,status,language) VALUES ';
      $query.= "(2,'guest','','guest','".$_GET['language']."')";
      $query.= ';';
      mysql_query( $query );
    }
  }

  // errors display
  if ( sizeof( $errors ) != 0 )
  {
    $vtp->addSession( $handle, 'errors' );
    foreach ( $errors as $error ) {
      $vtp->addSession( $handle, 'error' );
      $vtp->setVar( $handle, 'error.content', $error );
      $vtp->closeSession( $handle, 'error' );
      }
    $vtp->closeSession( $handle, 'errors' );
  }

  if ( !isset( $_POST['submit'] ) or sizeof( $errors ) > 0 )
  {
    $vtp->addSession( $handle, 'step2' );
	if ( isset( $_POST['webmaster'] ))
    $vtp->setVar( $handle, 'step2.f_webmaster', $_POST['webmaster'] );
	if ( isset( $_POST['mail_webmaster'] ))
    $vtp->setVar( $handle, 'step2.f_mail_webmaster', $_POST['mail_webmaster']);
    $vtp->closeSession( $handle, 'step2' );
  }

  // end of installation message
  if ( isset( $_POST['submit'] ) and count( $errors ) == 0 )
  {
    $vtp->addSession( $handle, 'install_end' );
    $vtp->closeSession( $handle, 'install_end' );
  }
}
//---------------------------------------------------- Step 0 : language choice
else
{
  $vtp->addSession( $handle, 'step0' );
  $languages = get_languages( './language/' );
  foreach ( $languages as $language ) {
    $vtp->addSession( $handle, 'language' );
    $vtp->setVar( $handle, 'language.name', $language );
    $vtp->closeSession( $handle, 'language' );
  }
  $vtp->closeSession( $handle, 'step0' );
}
//----------------------------------------------------------- html code display
$code = $vtp->Display( $handle, 0 );
echo $code;
?>