web installer: improve DB permissions check
[koha.git] / installer / install.pl
1 #!/usr/bin/perl -w # please develop with -w
2
3 #use diagnostics;
4
5 # use Install;
6 use InstallAuth;
7 use C4::Context;
8 use C4::Output;
9 use C4::Languages;
10
11 use strict;    # please develop with the strict pragma
12
13 use CGI;
14
15 my $query = new CGI;
16 my $step  = $query->param('step');
17
18 my $language = $query->param('language');
19 my ( $template, $loggedinuser, $cookie );
20
21 my $all_languages = getAllLanguages();
22
23 if ( defined($language) ) {
24     setlanguagecookie( $query, $language, "install.pl?step=1" );
25 }
26 ( $template, $loggedinuser, $cookie ) = get_template_and_user(
27     {
28         template_name => "installer/step" . ( $step ? $step : 1 ) . ".tmpl",
29         query         => $query,
30         type          => "intranet",
31         authnotrequired => 0,
32         debug           => 1,
33     }
34 );
35
36 my %info;
37 $info{'dbname'} = C4::Context->config("database");
38 $info{'dbms'} =
39   (   C4::Context->config("db_scheme")
40     ? C4::Context->config("db_scheme")
41     : "mysql" );
42 $info{'hostname'} = C4::Context->config("hostname");
43 $info{'port'}     = C4::Context->config("port");
44 $info{'user'}     = C4::Context->config("user");
45 $info{'password'} = C4::Context->config("pass");
46 my $dbh = DBI->connect(
47     "DBI:$info{dbms}:dbname=$info{dbname};host=$info{hostname}"
48       . ( $info{port} ? ";port=$info{port}" : "" ),
49     $info{'user'}, $info{'password'}
50 );
51
52 if ( $step && $step == 1 ) {
53     #First Step
54     #Checking ALL perl Modules and services needed are installed.
55     #Whenever there is an error, adding a report to the page
56     $template->param( language => 1 );
57     my $problem;
58
59     unless ( $] >= 5.006001 ) {    # Bug 179
60         $template->param( "problems" => 1, "perlversion" => 1 );
61         $problem = 1;
62     }
63
64     # We could here use a special find
65     my @missing = ();
66     unless ( eval { require ZOOM } ) {
67         push @missing, { name => "ZOOM" };
68     }
69     unless ( eval { require LWP::Simple } ) {
70         push @missing, { name => "LWP::Simple" };
71     }
72     unless ( eval { require XML::Simple } ) {
73         push @missing, { name => "XML::Simple" };
74     }
75     unless ( eval { require MARC::File::XML } ) {
76         push @missing, { name => "MARC::File::XML" };
77     }
78     unless ( eval { require MARC::File::USMARC } ) {
79         push @missing, { name => "MARC::File::USMARC" };
80     }
81     unless ( eval { require DBI } ) {
82         push @missing, { name => "DBI" };
83     }
84     unless ( eval { require Date::Manip } ) {
85         push @missing, { name => "Date::Manip" };
86     }
87     unless ( eval { require DBD::mysql } ) {
88         push @missing, { name => "DBD::mysql" };
89     }
90     unless ( eval { require HTML::Template::Pro } ) {
91         push @missing, { name => "HTML::Template::Pro" };
92     }
93     unless ( eval { require Date::Calc } ) {
94         push @missing, { name => "Date::Calc" };
95     }
96     unless ( eval { require Digest::MD5 } ) {
97         push @missing, { name => "Digest::MD5" };
98     }
99     unless ( eval { require MARC::Record } ) {
100         push @missing, { name => "MARC::Record" };
101     }
102     unless ( eval { require Mail::Sendmail } ) {
103         push @missing, { name => "Mail::Sendmail", usagemail => 1 };
104     }
105     unless ( eval { require List::MoreUtils } ) {
106         push @missing, { name => "List::MoreUtils" };
107     }
108     unless ( eval { require XML::RSS } ) {
109         push @missing, { name => "XML::RSS" };
110     }
111     unless ( eval { require CGI::Carp } ) {
112         push @missing, { name => "CGI::Carp" };
113     }
114
115
116 # The following modules are not mandatory, depends on how the library want to use Koha
117     unless ( eval { require PDF::API2 } ) {
118         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
119             push @missing, { name => "PDF::API2", usagebarcode => 1 };
120         }
121     }
122     unless ( eval { require GD::Barcorde } ) {
123         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
124             push @missing,
125               { name => "GD::Barcode", usagebarcode => 1, usagespine => 1 };
126         }
127     }
128     unless ( eval { require Data::Random } ) {
129         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
130             push @missing, { name => "Data::Random", usagebarcode => 1 };
131         }
132     }
133     unless ( eval { require PDF::Reuse::Barcode } ) {
134         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
135             push @missing, { name => "PDF::Reuse::Barcode", usagebarcode => 1 };
136         }
137     }
138     unless ( eval { require PDF::Report } ) {
139         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
140             push @missing, { name => "PDF::Report", usagebarcode => 1 };
141         }
142     }
143     unless ( eval { require Algorithm::CheckDigits } ) {
144         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
145             push @missing, { name => "Algorithm::CheckDigits", usagebarcode => 1 };
146         }
147     }
148     unless ( eval { require GD::Barcode::UPCE } ) {
149         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
150             push @missing, { name => "GD::Barcode::UPCE", usagepine => 1 };
151         }
152     }
153     unless ( eval { require Net::LDAP } ) {
154         if ( $#missing >= 0 ) {   # only when $#missing >= 0 so this isn't fatal
155             push @missing, { name => "Net::LDAP", usageLDAP => 1 };
156         }
157     }
158     $template->param( missings => \@missing ) if ( scalar(@missing) > 0 );
159     $template->param( 'checkmodule' => 1 )
160       unless ( scalar(@missing) && $problem );
161
162 }
163 elsif ( $step && $step == 2 ) {
164 #
165 #STEP 2 Check Database connection and access
166 #
167     $template->param(%info);
168     my $checkdb = $query->param("checkdb");
169     $template->param( 'dbconnection' => $checkdb );
170     if ($checkdb) {
171         if ($dbh) {
172
173             # Can connect to the mysql
174             $template->param( "checkdatabaseaccess" => 1 );
175             if ( $info{dbms} eq "mysql" ) {
176
177                 #Check if database created
178                 my $rv = $dbh->do("SHOW DATABASES LIKE \'$info{dbname}\'");
179                 if ( $rv == 1 ) {
180                     $template->param( 'checkdatabasecreated' => 1 );
181                 }
182
183                 #Check if user have all necessary grants on this database.
184                 my $rq =
185                   $dbh->prepare(
186                     "SHOW GRANTS FOR \'$info{user}\'\@'$info{hostname}'");
187                 $rq->execute;
188                 my $grantaccess;
189                 while ( my ($line) = $rq->fetchrow ) {
190                     my $dbname = $info{dbname};
191                     if ( $line =~ m/^GRANT (.*?) ON `$dbname`\.\*/ || index( $line, '*.*' ) > 0 ) {
192                         $grantaccess = 1
193                           if (
194                             index( $line, 'ALL PRIVILEGES' ) > 0
195                             || (   ( index( $line, 'SELECT' ) > 0 )
196                                 && ( index( $line, 'INSERT' ) > 0 )
197                                 && ( index( $line, 'UPDATE' ) > 0 )
198                                 && ( index( $line, 'DELETE' ) > 0 )
199                                 && ( index( $line, 'CREATE' ) > 0 )
200                                 && ( index( $line, 'DROP' ) > 0 ) )
201                           );
202                     }
203                 }
204                 unless ($grantaccess) {
205                     $rq =
206                       $dbh->prepare("SHOW GRANTS FOR \'$info{user}\'\@'\%'");
207                     $rq->execute;
208                     while ( my ($line) = $rq->fetchrow ) {
209                         my $dbname = $info{dbname};
210                         if ( $line =~ m/$dbname/ || index( $line, '*.*' ) > 0 )
211                         {
212                             $grantaccess = 1
213                               if (
214                                 index( $line, 'ALL PRIVILEGES' ) > 0
215                                 || (   ( index( $line, 'SELECT' ) > 0 )
216                                     && ( index( $line, 'INSERT' ) > 0 )
217                                     && ( index( $line, 'UPDATE' ) > 0 )
218                                     && ( index( $line, 'DELETE' ) > 0 )
219                                     && ( index( $line, 'CREATE' ) > 0 )
220                                     && ( index( $line, 'DROP' ) > 0 ) )
221                               );
222                         }
223                     }
224                 }
225                 $template->param( "checkgrantaccess" => $grantaccess );
226             }   # End mysql connect check...
227             
228             elsif ( $info{dbms} eq "Pg" ) {
229                 # Check if database has been created...
230                 my $rv = $dbh->do( "SELECT * FROM pg_catalog.pg_database WHERE datname = \'$info{dbname}\';" );
231                 if ( $rv == 1 ) {
232                         $template->param( 'checkdatabasecreated' => 1 );
233                 }
234
235                 # Check if user has all necessary grants on this database...
236                 my $rq = $dbh->do( "SELECT u.usesuper
237                                     FROM pg_catalog.pg_user as u
238                                     WHERE u.usename = \'$info{user}\';" );
239                 if ( $rq == 1 ) {
240                         $template->param( "checkgrantaccess" => 1 );
241                 }
242             }   # End Pg connect check...
243         }
244         else {
245             $template->param( "error" => DBI::err, "message" => DBI::errstr );
246         }
247     }
248 }
249 elsif ( $step && $step == 3 ) {
250 #
251 #
252 # STEP 3 : database setup
253 #
254
255     my $op = $query->param('op');
256     if ( $op && $op eq 'finished' ) {
257         #
258         # we have finished, just redirect to mainpage.
259         #
260         print $query->redirect("/cgi-bin/koha/mainpage.pl");
261         exit 1;
262     }
263     elsif ( $op && $op eq 'finish' ) {
264         my $kohaversion=C4::Context::KOHAVERSION;
265         # remove the 3 last . to have a Perl number
266         $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
267         if (C4::Context->preference('Version')) {
268             warn "UPDATE Version";
269             my $finish=$dbh->prepare("UPDATE systempreferences SET value=? WHERE variable='Version'");
270             $finish->execute($kohaversion);
271         } else {
272             warn "INSERT Version";
273             my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. Don t change this value manually, it s holded by the webinstaller')");
274             $finish->execute($kohaversion);
275         }
276
277         # Installation is finished.
278         # We just deny anybody access to install
279         # And we redirect people to mainpage.
280         # The installer will have to relogin since we do not pass cookie to redirection.
281         $template->param( "$op" => 1 );
282     }
283     elsif ( $op && $op eq 'Nozebra' ) {
284     warn "OP : $op";
285         if ($query->param('NoZebra')) {
286         warn "HERE";
287             $dbh->do("UPDATE systempreferences SET value=1 WHERE variable='NoZebra'");
288             $dbh->do("UPDATE systempreferences SET value=0 WHERE variable in ('QueryFuzzy','QueryWeightFields','QueryStemming')");
289         } else {
290         warn "WRONG";
291             $dbh->do("UPDATE systempreferences SET value=0 WHERE variable='NoZebra'");
292         }
293         $template->param( "$op" => 1 );
294     }
295     elsif ( $op && $op eq 'addframeworks' ) {
296     #
297     # 1ST install, 3rd sub-step : insert the SQL files the user has selected
298     #
299
300         #Framework importing and reports
301         my $lang;
302         my %hashlevel;
303
304        # sort by filename -> prepend with numbers to specify order of insertion.
305         my @fnames = sort {
306             my @aa = split /\/|\\/, ($a);
307             my @bb = split /\/|\\/, ($b);
308             $aa[-1] cmp $bb[-1]
309         } $query->param('framework');
310         if ( $info{dbms} eq 'mysql' ) { $dbh->do('SET FOREIGN_KEY_CHECKS=0'); }
311         elsif ( $info{dbms} eq 'Pg' ) { $dbh->do('SET CONSTRAINTS ALL DEFERRED;'); }
312         my $request =
313           $dbh->prepare(
314             "SELECT value FROM systempreferences WHERE variable='FrameworksLoaded'"
315           );
316         $request->execute;
317         my ($systempreference) = $request->fetchrow;
318         foreach my $file (@fnames) {
319
320             #      warn $file;
321             undef $/;
322             my $error;
323             if ( $info{dbms} eq 'mysql' ) {
324                 my $strcmd = "mysql "
325                         . ( $info{hostname} ? " -h $info{hostname} " : "" )
326                         . ( $info{port}     ? " -P $info{port} "     : "" )
327                         . ( $info{user}     ? " -u $info{user} "     : "" )
328                         . ( $info{password} ? " -p$info{password}"   : "" )
329                         . " $info{dbname} ";
330                 $error = qx($strcmd < $file 2>&1 1>/dev/null);                  # We want to send stdout to null and return only stderr... -fbcit
331             }
332             elsif ( $info{dbms} eq 'Pg' ) { 
333                 my $strcmd = "psql "
334                         . ( $info{hostname} ? " -h $info{hostname} " : "" )
335                         . ( $info{port}     ? " -p $info{port} "     : "" )
336                         . ( $info{user}     ? " -U $info{user} "     : "" )
337 #                        . ( $info{password} ? " -W $info{password}"   : "" )
338                         . " $info{dbname} ";
339                 $error = qx($strcmd -f $file 2>&1 1>/dev/null);                 # ...even more so with psql...
340             }
341             my @file = split qr(\/|\\), $file;
342             $lang = $file[ scalar(@file) - 3 ] unless ($lang);
343             my $level = $file[ scalar(@file) - 2 ];
344             unless ($error) {
345                 $systempreference .= "$file[scalar(@file)-1]|"
346                   unless (
347                     index( $systempreference, $file[ scalar(@file) - 1 ] ) >=
348                     0 );
349             }
350
351             #Bulding here a hierarchy to display files by level.
352             push @{ $hashlevel{$level} },
353               { "fwkname" => $file[ scalar(@file) - 1 ], "error" => $error };
354         }
355
356         #systempreference contains an ending |
357         chop $systempreference;
358         my @list;
359         map { push @list, { "level" => $_, "fwklist" => $hashlevel{$_} } }
360           keys %hashlevel;
361         my $fwk_language;
362         for my $each_language (@$all_languages) {
363
364             #           warn "CODE".$each_language->{'language_code'};
365             #           warn "LANG:".$lang;
366             if ( $lang eq $each_language->{'language_code'} ) {
367                 $fwk_language = $each_language->{language_locale_name};
368             }
369         }
370         my $updateflag =
371           $dbh->do(
372             "UPDATE systempreferences set value=\"$systempreference\" where variable='FrameworksLoaded'"
373           );
374         unless ( $updateflag == 1 ) {
375             my $string =
376                 "INSERT INTO systempreferences (value, variable, explanation, type) VALUES (\"$systempreference\",'FrameworksLoaded','Frameworks loaded through webinstaller','choice')";
377             my $rq = $dbh->prepare($string);
378             $rq->execute;
379         }
380         $template->param(
381             "fwklanguage" => $fwk_language,
382             "list"        => \@list
383         );
384         $template->param( "$op" => 1 );
385         if ( $info{dbms} eq 'mysql' ) { $dbh->do('SET FOREIGN_KEY_CHECKS=1'); }
386         elsif ( $info{dbms} eq 'Pg' ) { $dbh->do('SET CONSTRAINTS ALL IMMEDIATE;'); }
387     }
388     elsif ( $op && $op eq 'selectframeworks' ) {
389         #
390         #
391         # 1ST install, 2nd sub-step : show the user the sql datas he can insert in the database.
392         #
393         #
394         # (note that the term "selectframeworks is not correct. The user can select various files, not only frameworks)
395         
396         #Framework Selection
397         #sql data for import are supposed to be located in installer/data/<language>/<level>
398         # Where <language> is en|fr or any international abbreviation (provided language hash is updated... This will be a problem with internationlisation.)
399         # Where <level> is a category of requirement : required, recommended optional
400         # level should contain :
401         #   SQL File for import With a readable name.
402         #   txt File taht explains what this SQL File is meant for.
403         # Could be VERY useful to have A Big file for a kind of library.
404         # But could also be useful to have some Authorised values data set prepared here.
405         # Framework Selection is achieved through checking boxes.
406         my $langchoice = $query->param('fwklanguage');
407         $langchoice = $query->cookie('KohaOpacLanguage') unless ($langchoice);
408         my $marcflavour = $query->param('marcflavour');
409         if ($marcflavour){
410             # we can have some variants of marc flavour, by having different directories, like : unimarc_small and unimarc_full, for small and complete unimarc frameworks.
411             # marc_cleaned finds the marcflavour, without the variant.
412             my $marc_cleaned = 'MARC21';
413             $marc_cleaned = 'UNIMARC' if $marcflavour =~ /unimarc/;
414           my $request =
415             $dbh->prepare(
416               "INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES('marcflavour','$marc_cleaned','Define global MARC flavor (MARC21 or UNIMARC) used for character encoding','MARC21|UNIMARC','Choice');"
417             );     
418           $request->execute;
419         };    
420         $marcflavour = C4::Context->preference('marcflavour') unless ($marcflavour);
421         #Insert into database the selected marcflavour
422     
423         undef $/;
424         my $dir =
425           C4::Context->config('intranetdir') . "/installer/data/$info{dbms}/$langchoice/marcflavour/".lc($marcflavour);
426         opendir( MYDIR, $dir ) || warn "no open $dir";
427         my @listdir = sort grep { !/^\.|marcflavour/ && -d "$dir/$_" } readdir(MYDIR);
428         closedir MYDIR;
429                   
430         my @fwklist;
431         my $request =
432           $dbh->prepare(
433             "SELECT value FROM systempreferences WHERE variable='FrameworksLoaded'"
434           );
435         $request->execute;
436         my ($frameworksloaded) = $request->fetchrow;
437         my %frameworksloaded;
438         foreach ( split( /\|/, $frameworksloaded ) ) {
439             $frameworksloaded{$_} = 1;
440         }
441         
442         foreach my $requirelevel (@listdir) {
443             opendir( MYDIR, "$dir/$requirelevel" );
444             my @listname =
445               grep { !/^\./ && -f "$dir/$requirelevel/$_" && $_ =~ m/\.sql$/ }
446               readdir(MYDIR);
447             closedir MYDIR;
448             my %cell;
449             my @frameworklist;
450             map {
451                 my $name = substr( $_, 0, -4 );
452                 open FILE, "<:utf8","$dir/$requirelevel/$name.txt";
453                 my $lines = <FILE>;
454                 $lines =~ s/\n|\r/<br \/>/g;
455                 use utf8;
456                 utf8::encode($lines) unless ( utf8::is_utf8($lines) );
457                 push @frameworklist,
458                   {
459                     'fwkname'        => $name,
460                     'fwkfile'        => "$dir/$requirelevel/$_",
461                     'fwkdescription' => $lines,
462                     'checked'        => (
463                         (
464                             $frameworksloaded{$_}
465                               || ( $requirelevel =~
466                                 /(mandatory|requi|oblig|necess)/i )
467                         ) ? 1 : 0
468                     )
469                   };
470             } @listname;
471             my @fwks =
472               sort { $a->{'fwkname'} lt $b->{'fwkname'} } @frameworklist;
473
474 #             $cell{"mandatory"}=($requirelevel=~/(mandatory|requi|oblig|necess)/i);
475             $cell{"frameworks"} = \@fwks;
476             $cell{"label"}      = ucfirst($requirelevel);
477             $cell{"code"}       = lc($requirelevel);
478             push @fwklist, \%cell;
479         }
480         $template->param( "frameworksloop" => \@fwklist );
481         $template->param( "marcflavour" => ucfirst($marcflavour));
482         
483         $dir =
484           C4::Context->config('intranetdir') . "/installer/data/$info{dbms}/$langchoice";
485         opendir( MYDIR, $dir ) || warn "no open $dir";
486         @listdir = sort grep { !/^\.|marcflavour/ && -d "$dir/$_" } readdir(MYDIR);
487         closedir MYDIR;
488         my @levellist;
489         foreach my $requirelevel (@listdir) {
490             opendir( MYDIR, "$dir/$requirelevel" );
491             my @listname =
492               grep { !/^\./ && -f "$dir/$requirelevel/$_" && $_ =~ m/\.sql$/ }
493               readdir(MYDIR);
494             closedir MYDIR;
495             my %cell;
496             my @frameworklist;
497             map {
498                 my $name = substr( $_, 0, -4 );
499                 open FILE, "<:utf8","$dir/$requirelevel/$name.txt";
500                 my $lines = <FILE>;
501                 $lines =~ s/\n|\r/<br \/>/g;
502                 use utf8;
503                 utf8::encode($lines) unless ( utf8::is_utf8($lines) );
504                 push @frameworklist,
505                   {
506                     'fwkname'        => $name,
507                     'fwkfile'        => "$dir/$requirelevel/$_",
508                     'fwkdescription' => $lines,
509                     'checked'        => (
510                         (
511                             $frameworksloaded{$_}
512                               || ( $requirelevel =~
513                                 /(mandatory|requi|oblig|necess)/i )
514                         ) ? 1 : 0
515                     )
516                   };
517             } @listname;
518             my @fwks =
519               sort { $a->{'fwkname'} lt $b->{'fwkname'} } @frameworklist;
520
521 #             $cell{"mandatory"}=($requirelevel=~/(mandatory|requi|oblig|necess)/i);
522             $cell{"frameworks"} = \@fwks;
523             $cell{"label"}      = ucfirst($requirelevel);
524             $cell{"code"}       = lc($requirelevel);
525             push @levellist, \%cell;
526         }
527         $template->param( "levelloop" => \@levellist );
528         $template->param( "$op"       => 1 );
529     }
530     elsif ( $op && $op eq 'choosemarc' ) {
531         #
532         #
533         # 1ST install, 2nd sub-step : show the user the marcflavour available.
534         #
535         #
536         
537         #Choose Marc Flavour
538         #sql data are supposed to be located in installer/data/<dbms>/<language>/marcflavour/marcflavourname
539         # Where <dbms> is database type according to DBD syntax
540         # Where <language> is en|fr or any international abbreviation (provided language hash is updated... This will be a problem with internationlisation.)
541         # Where <level> is a category of requirement : required, recommended optional
542         # level should contain :
543         #   SQL File for import With a readable name.
544         #   txt File taht explains what this SQL File is meant for.
545         # Could be VERY useful to have A Big file for a kind of library.
546         # But could also be useful to have some Authorised values data set prepared here.
547         # Marcflavour Selection is achieved through radiobuttons.
548         my $langchoice = $query->param('fwklanguage');
549         $langchoice = $query->cookie('KohaOpacLanguage') unless ($langchoice);
550         my $dir =
551           C4::Context->config('intranetdir') . "/installer/data/$info{dbms}/$langchoice/marcflavour";
552         opendir( MYDIR, $dir ) || warn "no open $dir";
553         my @listdir = grep { !/^\./ && -d "$dir/$_" } readdir(MYDIR);
554         closedir MYDIR;
555         my $marcflavour=C4::Context->preference("marcflavour");    
556         my @flavourlist;
557         foreach my $marc (@listdir) {
558             my %cell=(    
559             "label"=> ucfirst($marc),
560             "code"=>uc($marc),
561             "checked"=>uc($marc) eq $marcflavour);      
562 #             $cell{"description"}= do { local $/ = undef; open INPUT "<$dir/$marc.txt"||"";<INPUT> };
563             push @flavourlist, \%cell;
564         }
565         $template->param( "flavourloop" => \@flavourlist );
566         $template->param( "$op"       => 1 );
567     }
568     elsif ( $op && $op eq 'importdatastructure' ) {
569         #
570         #
571         # 1st install, 1st "sub-step" : import kohastructure
572         #
573         #
574         my $datadir = C4::Context->config('intranetdir') . "/installer/data/$info{dbms}";
575         my $error;
576         if ( $info{dbms} eq 'mysql' ) {
577             my $strcmd = "mysql "
578                 . ( $info{hostname} ? " -h $info{hostname} " : "" )
579                 . ( $info{port}     ? " -P $info{port} "     : "" )
580                 . ( $info{user}     ? " -u $info{user} "     : "" )
581                 . ( $info{password} ? " -p$info{password}"   : "" )
582                 . " $info{dbname} ";
583             $error = qx($strcmd <$datadir/kohastructure.sql 2>&1 1>/dev/null);
584         }
585         elsif ( $info{dbms} eq 'Pg' ) { 
586             my $strcmd = "psql "
587                 . ( $info{hostname} ? " -h $info{hostname} " : "" )
588                 . ( $info{port}     ? " -p $info{port} "     : "" )
589                 . ( $info{user}     ? " -U $info{user} "     : "" )
590 #                . ( $info{password} ? " -W $info{password}"   : "" )           # psql will NOT accept a password, but prompts...
591                 . " $info{dbname} ";                                            # Therefore, be sure to run 'trust' on localhost in pg_hba.conf -fbcit
592             $error = qx($strcmd -f $datadir/kohastructure.sql 2>&1 1>/dev/null);# Be sure to set 'client_min_messages = error' in postgresql.conf
593                                                                                 # so that only true errors are returned to stderr or else the installer will
594                                                                                 # report the import a failure although it really succeded -fbcit
595         }
596         $template->param(
597             "error" => $error,
598             "$op"   => 1,
599         );
600     }
601     elsif ( $op && $op eq 'updatestructure' ) {
602         #
603         # Not 1st install, the only sub-step : update database
604         #
605         #Do updatedatabase And report
606         my $execstring =
607           C4::Context->config("intranetdir") . "/installer/data/$info{dbms}/updatedatabase.pl";
608         undef $/;
609         my $string = qx($execstring 2>&1 1>/dev/null);                          # added '1>/dev/null' to return only stderr in $string. Needs testing here. -fbcit
610         if ($string) {
611             $string =~ s/\n|\r/<br \/>/g;
612             $string =~
613                 s/(DBD::mysql.*? failed: .*? line [0-9]*.|=================.*?====================)/<font color=red>$1<\/font>/g;
614             $template->param( "updatereport" => $string );
615         }
616         $template->param( $op => 1 );
617     }
618     else {
619         #
620         # check wether it's a 1st install or an update
621         #
622         #Check if there are enough tables.
623         # Paul has cleaned up tables so reduced the count
624         #I put it there because it implied a data import if condition was not satisfied.
625         my $dbh = DBI->connect(
626                 "DBI:$info{dbms}:dbname=$info{dbname};host=$info{hostname}"
627                 . ( $info{port} ? ";port=$info{port}" : "" ),
628                 $info{'user'}, $info{'password'}
629         );
630         my $rq;
631         if ( $info{dbms} eq 'mysql' ) { $rq = $dbh->prepare( "SHOW TABLES FROM " . $info{'dbname'} ); }
632         elsif ( $info{dbms} eq 'Pg' ) { $rq = $dbh->prepare( "SELECT *
633                                                                 FROM information_schema.tables
634                                                                 WHERE table_schema='public' and table_type='BASE TABLE';" ); }
635         $rq->execute;
636         my $data = $rq->fetchall_arrayref( {} );
637         my $count = scalar(@$data);
638         #
639         # we don't have tables, propose DB import
640         #
641         if ( $count < 70 ) {
642             $template->param( "count" => $count, "proposeimport" => 1 );
643         }
644         else {
645             #
646             # we have tables, propose to select files to upload or updatedatabase
647             #
648             $template->param( "count" => $count, "default" => 1 );
649             #
650             # 1st part of step 3 : check if there is a databaseversion systempreference
651             # if there is, then we just need to upgrade
652             # if there is none, then we need to install the database
653             #
654             if (C4::Context->preference('Version')) {
655                 my $dbversion = C4::Context->preference('Version');
656                 $dbversion =~ /(.*)\.(..)(..)(...)/;
657                 $dbversion = "$1.$2.$3.$4";
658                 $template->param("upgrading" => 1,
659                                 "dbversion" => $dbversion,
660                                 "kohaversion" => C4::Context->KOHAVERSION,
661                                 );
662             }
663         }
664
665         $dbh->disconnect;
666     }
667 }
668 else {
669
670     # LANGUAGE SELECTION page by default
671     # using opendir + language Hash
672
673     my $langavail = getTranslatedLanguages();
674
675     my @languages;
676     foreach (@$langavail) {
677         push @languages,
678           {
679             'value'       => $_->{'language_code'},
680             'description' => $_->{'language_name'}
681           }
682           if ( $_->{'language_code'} );
683     }
684     $template->param( languages => \@languages );
685     if ($dbh) {
686         my $rq =
687           $dbh->prepare(
688             "SELECT * from systempreferences WHERE variable='Version'");
689         if ( $rq->execute ) {
690             my ($version) = $rq->fetchrow;
691             if ($version) {
692                 $query->redirect("install.pl?step=3");
693             }
694         }
695     }
696 }
697 output_html_with_http_headers $query, $cookie, $template->output;