3 # This file is part of Koha.
5 # Copyright 2016 Koha Development Team
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
29 use Koha
::SearchEngine
::Elasticsearch
;
33 populate_db.pl - Load included sample data into the DB
37 populate_db.pl [--marcflavour MARCFLAVOUR]
40 --help Brief help message
41 --marcflavour m Specify the MARC flavour to use (MARC21|UNIMARC). Defaults
51 Prints a brief help message and exits.
53 =item B<--marcflavour>
55 Lets you choose the desired MARC flavour for the sample data. Valid options are MARC21 and UNIMARC.
56 It defaults to MARC21.
60 Make the output more verbose.
68 my $marcflavour = 'MARC21';
72 'verbose' => \
$verbose,
73 'marcflavour=s' => \
$marcflavour
80 $marcflavour = uc($marcflavour);
82 if ( $marcflavour ne 'MARC21'
83 and $marcflavour ne 'UNIMARC' ) {
84 say "Invalid MARC flavour '$marcflavour' passed.";
88 $ENV{KOHA_DB_DO_NOT_RAISE_OR_PRINT_ERROR
} = 1;
89 my $dbh = C4
::Context
->dbh; # At the beginning to die if DB does not exist.
91 my ( $prefs_count ) = $dbh->selectrow_array(q
|SELECT COUNT
(*) FROM systempreferences
|);
92 my ( $patrons_count ) = $dbh->selectrow_array(q
|SELECT COUNT
(*) FROM borrowers
|);
93 if ( $prefs_count or $patrons_count ) {
94 die "Database is not empty!";
97 $ENV{KOHA_DB_DO_NOT_RAISE_OR_PRINT_ERROR
} = 0;
99 our $root = C4
::Context
->config('intranetdir');
100 our $data_dir = "$root/installer/data/mysql";
101 our $installer = C4
::Installer
->new;
103 my $koha_structure_file = "$data_dir/kohastructure.sql";
104 my @sample_files_mandatory = (
105 glob("$data_dir/mandatory/*.sql"),
106 "$data_dir/audio_alerts.sql",
107 "$data_dir/sysprefs.sql",
108 "$data_dir/userflags.sql",
109 "$data_dir/userpermissions.sql",
110 "$data_dir/account_offset_types.sql",
112 my @sample_lang_files_mandatory = ( glob $root . "/installer/data/mysql/$lang/mandatory/*.sql" );
113 my @sample_lang_files_optional = ( glob $root . "/installer/data/mysql/$lang/optional/*.sql" );
114 my @marc21_sample_files_mandatory = ( glob $root . "/installer/data/mysql/$lang/marcflavour/marc21/*/*.sql" );
115 my @unimarc_sample_files_mandatory = ( glob $root . "/installer/data/mysql/$lang/marcflavour/unimarc/*/*.sql" );
117 my $version = get_version
();
122 sub initialize_data
{
123 say "Inserting koha db structure..."
125 my $error = $installer->load_db_schema;
126 die $error if $error;
128 for my $f (@sample_files_mandatory) {
132 for my $f (@sample_lang_files_mandatory) {
136 for my $f (@sample_lang_files_optional) {
140 if ( $marcflavour eq 'UNIMARC' ) {
141 for my $f (@unimarc_sample_files_mandatory) {
145 for my $f (@marc21_sample_files_mandatory) {
150 # set marcflavour (MARC21)
151 my $dbh = C4
::Context
->dbh;
153 say "Setting the MARC flavour on the sysprefs..."
156 INSERT INTO
`systempreferences` (variable
,value
,explanation
,options
,type
)
157 VALUES
('marcflavour',?
,'Define global MARC flavor (MARC21 or UNIMARC) used for character encoding','MARC21|UNIMARC','Choice')
158 },undef,$marcflavour);
161 say "Setting Koha version to $version..."
164 INSERT INTO systempreferences
(variable
, value
, options
, explanation
, type
)
165 VALUES
('Version', '$version', NULL
, 'The Koha database version. WARNING: Do not change this value manually, it is maintained by the webinstaller', NULL
)
168 # Initialize ES mappings
169 Koha
::SearchEngine
::Elasticsearch
->reset_elasticsearch_mappings;
172 sub execute_sqlfile
{
174 say "Inserting $filepath..."
176 my $error = $installer->load_sql($filepath);
177 die $error if $error;
181 do $root . '/kohaversion.pl';
182 my $version = kohaversion
();
183 $version =~ s/(\d)\.(\d{2})\.(\d{2})\.(\d{3})/$1.$2$3$4/;
187 sub update_database
{
188 my $update_db_path = $root . '/installer/data/mysql/updatedatabase.pl';
189 say "Updating database..."
191 my $file = `cat $update_db_path`;
195 die "updatedatabase.pl process failed: $@";
197 say "updatedatabase.pl process succeeded.";