3 # Copyright (C) 2008 LibLime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #use warnings; FIXME - Bug 2505
23 use Encode
qw( encode is_utf8 );
24 our $VERSION = 3.07.00.049;
26 use C4
::Installer
::PerlModules
;
35 my $installer = C4::Installer->new();
36 my $all_languages = getAllLanguages();
37 my $error = $installer->load_db_schema();
39 #fill $list with list of sql files
40 my ($fwk_language, $error_list) = $installer->load_sql_in_order($all_languages, @$list);
41 $installer->set_version_syspref();
42 $installer->set_marcflavour_syspref('MARC21');
52 my $installer = C4::Installer->new();
54 Creates a new installer.
63 # get basic information from context
64 $self->{'dbname'} = C4
::Context
->config("database");
65 $self->{'dbms'} = C4
::Context
->config("db_scheme") ? C4
::Context
->config("db_scheme") : "mysql";
66 $self->{'hostname'} = C4
::Context
->config("hostname");
67 $self->{'port'} = C4
::Context
->config("port");
68 $self->{'user'} = C4
::Context
->config("user");
69 $self->{'password'} = C4
::Context
->config("pass");
70 $self->{'dbh'} = DBI
->connect("DBI:$self->{dbms}:dbname=$self->{dbname};host=$self->{hostname}" .
71 ( $self->{port
} ?
";port=$self->{port}" : "" ),
72 $self->{'user'}, $self->{'password'});
73 $self->{'language'} = undef;
74 $self->{'marcflavour'} = undef;
75 $self->{'dbh'}->do('set NAMES "utf8"');
76 $self->{'dbh'}->{'mysql_enable_utf8'}=1;
82 =head2 marc_framework_sql_list
84 my ($defaulted_to_en, $list) =
85 $installer->marc_framework_sql_list($lang, $marcflavour);
87 Returns in C<$list> a structure listing the filename, description, section,
88 and mandatory/optional status of MARC framework scripts available for C<$lang>
91 If the C<$defaulted_to_en> return value is true, no scripts are available
92 for language C<$lang> and the 'en' ones are returned.
96 sub marc_framework_sql_list
{
99 my $marcflavour = shift;
101 my $defaulted_to_en = 0;
104 my $dir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/$lang/marcflavour/".lc($marcflavour);
105 unless (opendir( MYDIR
, $dir )) {
107 warn "cannot open MARC frameworks directory $dir";
109 # if no translated MARC framework is available,
111 $dir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/en/marcflavour/".lc($marcflavour);
112 opendir(MYDIR
, $dir) or warn "cannot open English MARC frameworks directory $dir";
113 $defaulted_to_en = 1;
116 my @listdir = sort grep { !/^\.|marcflavour/ && -d
"$dir/$_" } readdir(MYDIR
);
120 my $request = $self->{'dbh'}->prepare("SELECT value FROM systempreferences WHERE variable='FrameworksLoaded'");
122 my ($frameworksloaded) = $request->fetchrow;
123 $frameworksloaded = '' unless defined $frameworksloaded; # avoid warning
124 my %frameworksloaded;
125 foreach ( split( /\|/, $frameworksloaded ) ) {
126 $frameworksloaded{$_} = 1;
129 foreach my $requirelevel (@listdir) {
130 opendir( MYDIR
, "$dir/$requirelevel" );
131 my @listname = grep { !/^\./ && -f
"$dir/$requirelevel/$_" && $_ =~ m/\.sql$/ } readdir(MYDIR
);
136 my $name = substr( $_, 0, -4 );
137 open my $fh, "<:encoding(UTF-8)", "$dir/$requirelevel/$name.txt";
139 $lines =~ s/\n|\r/<br \/>/g
;
140 $lines = Encode
::encode
('UTF-8', $lines) unless ( Encode
::is_utf8
($lines) );
141 my $mandatory = ($requirelevel =~ /(mandatory|requi|oblig|necess)/i);
145 'fwkfile' => "$dir/$requirelevel/$_",
146 'fwkdescription' => $lines,
147 'checked' => ( ( $frameworksloaded{$_} || $mandatory ) ?
1 : 0 ),
148 'mandatory' => $mandatory,
152 sort { $a->{'fwkname'} cmp $b->{'fwkname'} } @frameworklist;
154 $cell{"frameworks"} = \
@fwks;
155 $cell{"label"} = ucfirst($requirelevel);
156 $cell{"code"} = lc($requirelevel);
157 push @fwklist, \
%cell;
160 return ($defaulted_to_en, \
@fwklist);
163 =head2 sample_data_sql_list
165 my ($defaulted_to_en, $list) = $installer->sample_data_sql_list($lang);
167 Returns in C<$list> a structure listing the filename, description, section,
168 and mandatory/optional status of sample data scripts available for C<$lang>.
169 If the C<$defaulted_to_en> return value is true, no scripts are available
170 for language C<$lang> and the 'en' ones are returned.
174 sub sample_data_sql_list
{
178 my $defaulted_to_en = 0;
181 my $dir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/$lang";
182 unless (opendir( MYDIR
, $dir )) {
184 warn "cannot open sample data directory $dir";
186 # if no sample data is available,
188 $dir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/en";
189 opendir(MYDIR
, $dir) or warn "cannot open English sample data directory $dir";
190 $defaulted_to_en = 1;
193 my @listdir = sort grep { !/^\.|marcflavour/ && -d
"$dir/$_" } readdir(MYDIR
);
197 my $request = $self->{'dbh'}->prepare("SELECT value FROM systempreferences WHERE variable='FrameworksLoaded'");
199 my ($frameworksloaded) = $request->fetchrow;
200 $frameworksloaded = '' unless defined $frameworksloaded; # avoid warning
201 my %frameworksloaded;
202 foreach ( split( /\|/, $frameworksloaded ) ) {
203 $frameworksloaded{$_} = 1;
206 foreach my $requirelevel (@listdir) {
207 opendir( MYDIR
, "$dir/$requirelevel" );
208 my @listname = grep { !/^\./ && -f
"$dir/$requirelevel/$_" && $_ =~ m/\.sql$/ } readdir(MYDIR
);
213 my $name = substr( $_, 0, -4 );
214 open my $fh , "<:encoding(UTF-8)", "$dir/$requirelevel/$name.txt";
216 $lines =~ s/\n|\r/<br \/>/g
;
217 $lines = Encode
::encode
('UTF-8', $lines) unless ( Encode
::is_utf8
($lines) );
218 my $mandatory = ($requirelevel =~ /(mandatory|requi|oblig|necess)/i);
222 'fwkfile' => "$dir/$requirelevel/$_",
223 'fwkdescription' => $lines,
224 'checked' => ( ( $frameworksloaded{$_} || $mandatory ) ?
1 : 0 ),
225 'mandatory' => $mandatory,
228 my @fwks = sort { $a->{'fwkname'} cmp $b->{'fwkname'} } @frameworklist;
230 $cell{"frameworks"} = \
@fwks;
231 $cell{"label"} = ucfirst($requirelevel);
232 $cell{"code"} = lc($requirelevel);
233 push @levellist, \
%cell;
236 return ($defaulted_to_en, \
@levellist);
239 =head2 load_db_schema
241 my $error = $installer->load_db_schema();
243 Loads the SQL script that creates Koha's tables and indexes. The
244 return value is a string containing error messages reported by the
252 my $datadir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}";
253 my $error = $self->load_sql("$datadir/kohastructure.sql");
258 =head2 load_sql_in_order
260 my ($fwk_language, $list) = $installer->load_sql_in_order($all_languages, @sql_list);
262 Given a list of SQL scripts supplied in C<@sql_list>, loads each of them
263 into the database and sets the FrameworksLoaded system preference to names
264 of the scripts that were loaded.
266 The SQL files are loaded in alphabetical order by filename (not including
267 directory path). This means that dependencies among the scripts are to
268 be resolved by carefully naming them, keeping in mind that the directory name
269 does *not* currently count.
271 B<FIXME:> this is a rather delicate way of dealing with dependencies between
274 The return value C<$list> is an arrayref containing a hashref for each
275 "level" or directory containing SQL scripts; the hashref in turns contains
276 a list of hashrefs containing a list of each script load and any error
277 messages associated with the loading of each script.
279 B<FIXME:> The C<$fwk_language> code probably doesn't belong and needs to be
280 moved to a different method.
284 sub load_sql_in_order
{
286 my $all_languages = shift;
292 my @aa = split /\/|\\/, ($a);
293 my @bb = split /\/|\\/, ($b);
296 my $request = $self->{'dbh'}->prepare( "SELECT value FROM systempreferences WHERE variable='FrameworksLoaded'" );
298 my ($systempreference) = $request->fetchrow;
299 $systempreference = '' unless defined $systempreference; # avoid warning
300 # Make sure subtag_registry.sql is loaded second
301 my $subtag_registry = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/mandatory/subtag_registry.sql";
302 unshift(@fnames, $subtag_registry);
303 # Make sure the global sysprefs.sql file is loaded first
304 my $globalsysprefs = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}/sysprefs.sql";
305 unshift(@fnames, $globalsysprefs);
306 foreach my $file (@fnames) {
309 my $error = $self->load_sql($file);
310 my @file = split qr
(\
/|\\), $file;
311 $lang = $file[ scalar(@file) - 3 ] unless ($lang);
312 my $level = $file[ scalar(@file) - 2 ];
314 $systempreference .= "$file[scalar(@file)-1]|"
315 unless ( index( $systempreference, $file[ scalar(@file) - 1 ] ) >= 0 );
318 #Bulding here a hierarchy to display files by level.
319 push @
{ $hashlevel{$level} },
320 { "fwkname" => $file[ scalar(@file) - 1 ], "error" => $error };
323 #systempreference contains an ending |
324 chop $systempreference;
326 map { push @list, { "level" => $_, "fwklist" => $hashlevel{$_} } } keys %hashlevel;
328 for my $each_language (@
$all_languages) {
330 # warn "CODE".$each_language->{'language_code'};
331 # warn "LANG:".$lang;
332 if ( $lang eq $each_language->{'language_code'} ) {
333 $fwk_language = $each_language->{language_locale_name
};
338 "UPDATE systempreferences set value=\"$systempreference\" where variable='FrameworksLoaded'"
341 unless ( $updateflag == 1 ) {
343 "INSERT INTO systempreferences (value, variable, explanation, type) VALUES (\"$systempreference\",'FrameworksLoaded','Frameworks loaded through webinstaller','choice')";
344 my $rq = $self->{'dbh'}->prepare($string);
347 return ($fwk_language, \
@list);
350 =head2 set_marcflavour_syspref
352 $installer->set_marcflavour_syspref($marcflavour);
354 Set the 'marcflavour' system preference. The incoming
355 C<$marcflavour> references to a subdirectory of
356 installer/data/$dbms/$lang/marcflavour, and is
357 normalized to MARC21, UNIMARC or NORMARC.
359 FIXME: this method assumes that the MARC flavour will be either
360 MARC21, UNIMARC or NORMARC.
364 sub set_marcflavour_syspref
{
366 my $marcflavour = shift;
368 # we can have some variants of marc flavour, by having different directories, like : unimarc_small and unimarc_full, for small and complete unimarc frameworks.
369 # marc_cleaned finds the marcflavour, without the variant.
370 my $marc_cleaned = 'MARC21';
371 $marc_cleaned = 'UNIMARC' if $marcflavour =~ /unimarc/i;
372 $marc_cleaned = 'NORMARC' if $marcflavour =~ /normarc/i;
374 $self->{'dbh'}->prepare(
375 "INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES('marcflavour','$marc_cleaned','Define global MARC flavor (MARC21, UNIMARC or NORMARC) used for character encoding','MARC21|UNIMARC|NORMARC','Choice');"
380 =head2 set_version_syspref
382 $installer->set_version_syspref();
384 Set or update the 'Version' system preference to the current
385 Koha software version.
389 sub set_version_syspref
{
392 my $kohaversion=C4
::Context
::KOHAVERSION
;
393 # remove the 3 last . to have a Perl number
394 $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
395 if (C4
::Context
->preference('Version')) {
396 warn "UPDATE Version";
397 my $finish=$self->{'dbh'}->prepare("UPDATE systempreferences SET value=? WHERE variable='Version'");
398 $finish->execute($kohaversion);
400 warn "INSERT Version";
401 my $finish=$self->{'dbh'}->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. WARNING: Do not change this value manually, it is maintained by the webinstaller')");
402 $finish->execute($kohaversion);
404 C4
::Context
->clear_syspref_cache();
409 my $error = $installer->load_sql($filename);
411 Runs a the specified SQL using the DB's command-line
412 SQL tool, and returns any strings sent to STDERR
413 by the command-line tool.
415 B<FIXME:> there has been a long-standing desire to
416 replace this with an SQL loader that goes
417 through DBI; partly for portability issues
418 and partly to improve error handling.
420 B<FIXME:> even using the command-line loader, some more
421 basic error handling should be added - deal
422 with missing files, e.g.
428 my $filename = shift;
430 my $datadir = C4
::Context
->config('intranetdir') . "/installer/data/$self->{dbms}";
434 if ( $self->{dbms
} eq 'mysql' ) {
435 $cmd = qx(which mysql
2>/dev/null
|| whereis mysql
2>/dev/null
);
437 $cmd = $1 if ($cmd && $cmd =~ /^(.+?)[\r\n]+$/);
438 $cmd = 'mysql' if (!$cmd || !-x
$cmd);
440 . ( $self->{hostname
} ?
" -h $self->{hostname} " : "" )
441 . ( $self->{port
} ?
" -P $self->{port} " : "" )
442 . ( $self->{user
} ?
" -u $self->{user} " : "" )
443 . ( $self->{password
} ?
" -p'$self->{password}'" : "" )
444 . " $self->{dbname} ";
445 $error = qx($strcmd --default-character
-set
=utf8
<$filename 2>&1 1>/dev/null
);
446 } elsif ( $self->{dbms
} eq 'Pg' ) {
447 $cmd = qx(which psql
2>/dev/null
|| whereis psql
2>/dev/null
);
449 $cmd = $1 if ($cmd && $cmd =~ /^(.+?)[\r\n]+$/);
450 $cmd = 'psql' if (!$cmd || !-x
$cmd);
452 . ( $self->{hostname
} ?
" -h $self->{hostname} " : "" )
453 . ( $self->{port
} ?
" -p $self->{port} " : "" )
454 . ( $self->{user
} ?
" -U $self->{user} " : "" )
455 # . ( $self->{password} ? " -W $self->{password}" : "" ) # psql will NOT accept a password, but prompts...
456 . " $self->{dbname} "; # Therefore, be sure to run 'trust' on localhost in pg_hba.conf -fbcit
457 $error = qx($strcmd -f
$filename 2>&1 1>/dev/null
);
458 # Be sure to set 'client_min_messages = error' in postgresql.conf
459 # so that only true errors are returned to stderr or else the installer will
460 # report the import a failure although it really succeded -fbcit
462 # errors thrown while loading installer data should be logged
464 warn "C4::Installer::load_sql returned the following errors while attempting to load $filename:\n";
470 =head2 get_file_path_from_name
472 my $filename = $installer->get_file_path_from_name('script_name');
474 searches through the set of known SQL scripts and finds the fully
475 qualified path name for the script that mathches the input.
477 returns undef if no match was found.
482 sub get_file_path_from_name
{
484 my $partialname = shift;
486 my $lang = 'en'; # FIXME: how do I know what language I want?
488 my ($defaulted_to_en, $list) = $self->sample_data_sql_list($lang);
489 # warn( Data::Dumper->Dump( [ $list ], [ 'list' ] ) );
492 foreach my $frameworklist ( @
$list ) {
493 push @found, grep { $_->{'fwkfile'} =~ /$partialname$/ } @
{$frameworklist->{'frameworks'}};
496 # warn( Data::Dumper->Dump( [ \@found ], [ 'found' ] ) );
497 if ( 0 == scalar @found ) {
499 } elsif ( 1 < scalar @found ) {
500 warn "multiple results found for $partialname";
503 return $found[0]->{'fwkfile'};
511 C4::Installer is a refactoring of logic originally from installer/installer.pl, which was
512 originally written by Henri-Damien Laurant.
514 Koha Development Team <http://koha-community.org/>
516 Galen Charlton <galen.charlton@liblime.com>