install: handle spaces in file names
[koha.git] / Makefile.PL
1 # Copyright 2007 MJ Ray
2 #
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Current maintainer MJR http://mjr.towers.org.uk/
19 # See http://www.koha.org/wiki/?page=KohaInstaller
20 #
21
22 use strict;
23 use warnings;
24 use ExtUtils::MakeMaker;
25 use POSIX;
26 use File::Spec;
27
28 my $DEBUG = 0;
29 die "perl 5.6.1 or later required" unless ($] >= 5.006001);
30
31 # Hash up directory structure & files beginning with the directory we were called from (should be the base of koha)...
32
33 my $dirtree = hashdir('.');
34 my %result = ();
35
36 =head1 NAME
37
38 Makefile.PL - Koha packager and installer
39
40 =head1 SYNOPSIS
41
42 =head2 BASIC INSTALLATION
43
44         perl Makefile.PL
45         make
46         sudo make install
47
48 =head2 PACKAGING RELEASE TARBALLS
49
50         make manifest tardist
51         make manifest zipdist
52
53 =head2 CLEANING UP
54
55         make clean
56
57 =head1 DESCRIPTION
58
59 This is a packager and installer that uses
60 ExtUtils::MakeMaker, which is fairly common
61 on perl systems.
62 As well as building tar or zip files
63 and installing with the above commands,
64 it allows us to check pre-requisites
65 and generate configuration files.
66
67 =head1 VARIABLES
68
69 =head2 NAME, VERSION_FROM, ABSTRACT, AUTHOR
70
71 Basic metadata about this software.
72
73 =head2 NO_META
74
75 Suppress generation of META.yml file.
76
77 =head2 PREREQ_PM
78
79 Hash of perl modules and versions required.
80
81 =head2 PM
82
83 Hash of file mappings
84
85 =head2 CONFIGURE
86
87 Maybe use prompt() here in future to get configuration values 
88 interactively at installation time.
89
90 =head2 PL_FILES
91
92 This is a hash of PL scripts to run after installation and
93 the files to ask them to generate.
94 Maybe use the values from CONFIGURE
95 to generate initial configuration files in future.
96
97 =cut
98
99 =head2 target_map
100
101 This is a hash mapping directories and files in the
102 source tree to installation target directories.  The rules
103 for this mapping are:
104
105 =over 4
106
107 =item If a directory or file is specified, it and its
108 contents will be copied to the installation target directory.
109
110 =item If a subdirectory of a mapped directory is specified,
111 its target overrides the parent's target for that subdirectory.
112
113 =item The value of each map entry may either be a scalar containing 
114 one target or a reference to an array of targets, in which case
115 the directory or file is copied to each target.
116
117 =item Any files at the top level of the source tree that are
118 not included in the map will not be installed.
119
120 =item Any directories at the top level of the source tree
121 that are not included in the map will be installed in
122 INTRANET_CGI_DIR.  This is a sensible default given the
123 current organization of the source tree, but (FIXME) it
124 would be better to reorganize the source tree to better
125 match the installation system, to allow adding new directories
126 without having to adjust Makefile.PL each time.  The idea
127 is to make the C<$target_map> hash as minimal as possible.
128
129 =back
130
131 The permitted installation targets are:
132
133 =over 4
134
135 =item INTRANET_CGI_DIR 
136
137 CGI scripts for intranet (staff) interface.
138
139 =item INTRANET_TMPL_DIR
140
141 HTML templates for the intranet interface.
142
143 =item INTRANET_WWW_DIR
144
145 HTML files, images, etc. for DocumentRoot for the intranet interface.
146
147 =item OPAC_CGI_DIR
148
149 CGI scripts for OPAC (public) interface.
150
151 =item OPAC_TMPL_DIR
152
153 HTML templates for the OPAC interface.
154
155 =item OPAC_WWW_DIR
156
157 HTML files, images, etc. for DocumentRoot for the OPAC interface.
158
159 =item PERL_MODULE_DIR
160
161 Perl modules (at present just the C4 modules) that are intimately
162 tied to Koha.  Depending on the installation options, these
163 may or may not be installed one of the standard directories
164 in Perl's default @LIB.
165
166 =item KOHA_CONF_DIR
167
168 Directory for Koha configuration files.
169
170 =item ZEBRA_CONF_DIR
171
172 Directory for Zebra configuration files.
173
174 =item ZEBRA_LOCK_DIR
175
176 Directory for Zebra's lock files.
177
178 =item ZEBRA_DATA_DIR
179
180 Directory for Zebra's data files.
181
182 =item ZEBRA_RUN_DIR
183
184 Directory for Zebra's UNIX-domain sockets.
185
186 =item EXAMPLE_DIR
187
188 Directory for example configuration files.  This directory
189 exists primarily to make it easier to change the
190 MARC format or language of the active Zebra
191 indexes.
192
193 =item SCRIPT_DIR
194
195 Directory for command-line scripts and daemons.
196
197 =item MAN_DIR
198
199 Directory for man pages created from POD -- will mostly
200 contain information of interest to Koha developers.
201
202 =item DOC_DIR
203
204 Directory for Koha documentation accessed from the 
205 command-line, e.g., READMEs.
206
207 =item LOG_DIR
208
209 Directory for Apache and Zebra logs produced by Koha.
210
211 =item NONE
212
213 This is a dummy target used to explicitly state
214 that a given file or directory is not to be installed.
215 This is used either for parts of the installer itself
216 or for development tools that are not applicable to a
217 production installation.
218
219 =back
220
221 =cut
222
223 my $target_map = {
224   './about.pl'                  => 'INTRANET_CGI_DIR',
225   './acqui'                     => 'INTRANET_CGI_DIR',
226   './admin'                     => 'INTRANET_CGI_DIR',
227   './authorities'               => 'INTRANET_CGI_DIR',
228   './C4'                        => 'PERL_MODULE_DIR',
229   './C4/SIP/t'                  => 'NONE',
230   './C4/SIP/koha_test'          => 'NONE',
231   './C4/tests'                  => 'NONE',
232   './catalogue'                 => 'INTRANET_CGI_DIR',
233   './cataloguing'               => 'INTRANET_CGI_DIR',
234   './changelanguage.pl'         => [ 'INTRANET_CGI_DIR', 'OPAC_CGI_DIR' ],
235   './check_sysprefs.pl'         => 'NONE',
236   './circ'                      => 'INTRANET_CGI_DIR',
237   './edithelp.pl'               => 'INTRANET_CGI_DIR',
238   './etc'                       => { target => 'KOHA_CONF_DIR', trimdir => -1 },
239   './etc/zebradb'               => { target => 'ZEBRA_CONF_DIR', trimdir => -1 },
240   './installer-CPAN.pl'         => 'NONE',
241   './installer'                 => 'INTRANET_CGI_DIR',
242   './koha-tmpl'                 => 'NONE',
243   './koha-tmpl/intranet-tmpl'   => {target => 'INTRANET_TMPL_DIR', trimdir => -1},
244   './koha-tmpl/opac-tmpl'       => {target => 'OPAC_TMPL_DIR', trimdir => -11},
245   './koha-version.pl'           => 'INTRANET_CGI_DIR', # FIXME this may need to be in OPAC_CGI_DIR as well, with an update to C4::Context
246   './labels'                    => 'INTRANET_CGI_DIR',
247   './mainpage.pl'               => 'INTRANET_CGI_DIR',
248   './Makefile.PL'               => 'NONE',
249   './MANIFEST.SKIP'             => 'NONE',
250   './members'                   => 'INTRANET_CGI_DIR',
251   './misc'                      => { target => 'SCRIPT_DIR', trimdir => -1 }, 
252   './misc/info'                 => { target => 'DOC_DIR', trimdir => 2 },
253   './misc/release notes'        => { target => 'DOC_DIR', trimdir => 2 },
254   './misc/translator'           => { target => 'EXAMPLE_DIR', trimdir => 2 }, 
255   './misc/installer_devel_notes' => 'NONE',
256   './opac'                      => 'OPAC_CGI_DIR',
257   './README.txt'                => 'NONE',
258   './reports'                   => 'INTRANET_CGI_DIR',
259   './reserve'                   => 'INTRANET_CGI_DIR',
260   './reviews'                   => 'INTRANET_CGI_DIR',
261   './rewrite-config.PL'         => 'NONE',
262   './reviews'                   => 'INTRANET_CGI_DIR',
263   './rss'                       => 'NONE', # FIXME deal with a little later
264   './serials'                   => 'INTRANET_CGI_DIR',
265   './sms'                       => 'INTRANET_CGI_DIR',
266   './suggestion'                => 'INTRANET_CGI_DIR',
267   './svc'                       => 'INTRANET_CGI_DIR',
268   './t'                         => 'NONE',
269   './tmp'                       => 'NONE', # FIXME deal with later
270   './tools'                     => 'INTRANET_CGI_DIR',
271   './virtualshelves'            => 'INTRANET_CGI_DIR',
272   # ignore files and directories created by the install itself
273   './pm_to_blib'                => 'NONE',
274   './blib'                      => 'NONE',
275 };
276
277 =head1 CONFIGURATION OPTIONS
278
279 The following configuration options are used by the installer.
280
281 =over 4
282
283 =item INSTALL_MODE
284
285 Specifies whether installation will be FHS-compliant (default,
286 assumes user has root), put everything under
287 a single directory (for users installing on a web host
288 that allows CGI scripts and a MySQL database but not root 
289 access), or development (for a developer who wants to run
290 Koha from a git clone with no fuss).
291
292 =item INSTALL_BASE
293
294 Directory under which most components will go.  Default
295 value will vary depending on INSTALL_MODE.
296
297 =item INSTALL_ZEBRA
298
299 Whether to install Zebra configuration files and data
300 directories.
301
302 =item ZEBRA_MARC_FORMAT
303
304 Specifies format of MARC records to be indexed by Zebra.
305
306 =item ZEBRA_LANGUAGE
307
308 Specifies primary language of records that will be 
309 indexed by Zebra.
310
311 =back
312
313 =cut
314
315 # default configuration options
316 my %config_defaults = (
317   'INSTALL_MODE'      => 'standard',
318   'INSTALL_BASE'      => '/usr/share/koha',
319   'INSTALL_ZEBRA'     => 'yes',
320   'ZEBRA_MARC_FORMAT' => 'marc21',
321   'ZEBRA_LANGUAGE'    => 'en',
322 );
323
324 # valid values for certain configuration options
325 my %valid_config_values = (
326   'INSTALL_MODE'  => { 'standard' => 1, 'single' => 1, 'dev' => 1 },
327   'INSTALL_ZEBRA' => { 'yes' => 1, 'no' => 1 },
328   'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
329   'ZEBRA_LANGUAGE'    => { 'en' => 1, 'fr' => 1 }, # FIXME should generate from contents of distribution
330 );
331
332 my %config = get_configuration(\%config_defaults, \%valid_config_values);
333 my %target_directories = get_target_directories(\%config);
334 my $file_map = {};
335 get_file_map($target_map, $dirtree, $file_map);
336
337 WriteMakefile(
338     NAME => 'koha',
339     #VERSION => strftime('2.9.%Y%m%d%H',gmtime),
340     VERSION_FROM => 'C4/Context.pm',
341     ABSTRACT => 'Award-winning integrated library system (ILS) and Web OPAC',
342     AUTHOR => 'Koha Developers <koha-devel@nongnu.org>',
343     NO_META => 1,
344     PREREQ_PM => {
345 'CGI' => 3.15,
346 'CGI::Carp' => 1.29,
347 'CGI::Session' => '4.10',
348 'Class::Factory::Util' => 1.7,
349 'Class::Accessor' => 0.30,
350 'DBD::mysql' => 3.0008,
351 'DBI' => 1.53,
352 'Data::Dumper' => 2.121_08,
353 'Date::Calc' => 5.4,
354 'Date::Manip' => 5.44,
355 'Digest::MD5' => 2.36,
356 'File::Temp' => 0.16,
357 'GD::Barcode::UPCE' => 1.1,
358 'Getopt::Long' => 2.35,
359 'Getopt::Std' => 1.05,
360 'HTML::Template::Pro' => 0.65,
361 'HTTP::Cookies' => 1.39,
362 'HTTP::Request::Common' => 1.26,
363 'LWP::Simple' => 1.41,
364 'LWP::UserAgent' => 2.033,
365 'Lingua::Stem' => 0.82,
366 'List::Util' => 1.18,
367 'Locale::Language' => 2.07,
368 'MARC::Charset' => 0.98,
369 'MARC::Crosswalk::DublinCore' => 0.03,
370 'MARC::File::XML' => 0.88,
371 'MARC::Record' => 2.00,
372 'MIME::Base64' => 3.07,
373 'MIME::QuotedPrint' => 3.07,
374 'Mail::Sendmail' => 0.79,
375 'PDF::API2' => 2.000,
376 'PDF::API2::Page' => 2.000,
377 'PDF::API2::Util' => 2.000,
378 'PDF::Reuse' => 0.33,
379 'PDF::Reuse::Barcode' => 0.05,
380 'POSIX' => 1.09,
381 'Schedule::At' => 1.06,
382 'Term::ANSIColor' => 1.10,
383 'Test' => 1.25,
384 'Test::Harness' => 2.56,
385 'Test::More' => 0.62,
386 'Text::CSV' => 0.01,
387 'Text::CSV_XS' => 0.32,
388 'Text::Wrap' => 2005.082401,
389 'Time::HiRes' => 1.86,
390 'Time::localtime' => 1.02,
391 'Unicode::Normalize' => 0.32,
392 'XML::Dumper' => 0.81,
393 'XML::LibXML' => 1.59,
394 'XML::SAX::ParserFactory' => 1.01,
395 'XML::Simple' => 2.14,
396 'XML::RSS' => 1.31,
397 'ZOOM' => 1.16,
398         },
399
400         # File tree mapping
401         PM => $file_map,
402
403     # Man pages generated from POD
404     INSTALLMAN1DIR => File::Spec->catdir($target_directories{'MAN_DIR'}, 'man1'),
405     INSTALLMAN3DIR => File::Spec->catdir($target_directories{'MAN_DIR'}, 'man3'),
406
407 #   CONFIGURE => sub {
408 #     # Ask for options with prompt($question,$default) calls here?
409 #     return { macro => { 'export TEST' => '755' } }
410 #     },
411
412    PL_FILES => { # generator => target(s)
413       'rewrite-config.PL' => [
414          'blib/KOHA_CONF_DIR/koha-conf.xml',
415          'blib/KOHA_CONF_DIR/koha-httpd.conf',
416          'blib/ZEBRA_CONF_DIR/etc/passwd',
417          'blib/ZEBRA_CONF_DIR/zebra-biblios.cfg',
418          'blib/ZEBRA_CONF_DIR/zebra-authorities.cfg'
419          ]
420    }
421 #     'opac/getfromintranet.PL' => ['$(INST_LIBDIR)/opac/cgi-bin/detail.pl','$(INST_LIBDIR)/opac/cgi-bin/moredetail.pl','$(INST_LIBDIR)/opac/cgi-bin/search.pl','$(INST_LIBDIR)/opac/cgi-bin/subjectsearch.pl','$(INST_LIBDIR)/opac/cgi-bin/logout.pl'],
422 #     'misc/koha.conf.PL' => '$(INST_LIBDIR)/../etc/koha.conf',
423 #     'misc/apache-koha.conf.PL' => '$(INST_LIBDIR)/../etc/apache-koha.conf',
424 #     'misc/koha.sql.PL' => '$(INST_LIBDIR)/intranet/scripts/koha.sql',
425 #     'z3950/z3950-daemon-options.PL' => '$(INST_LIBDIR)/intranet/scripts/z3950daemon/z3950-daemon-options',
426 #     # fake target to check permissions
427 #     'misc/chmod.PL' => '$(INST_LIBDIR)/fake-target'
428 #     }
429    # need to set ownerships
430    # need to load koha.sql
431    # need to link koha-httpd.conf
432    # need to start z3950-daemon
433 );
434
435 =head1 FUNCTIONS
436
437 =head2 hashdir
438
439 This function recurses through the directory structure and builds
440 a hash of hashes containing the structure with arrays holding filenames.
441 This directory hashing routine was taken from BrowserUK @ http://www.perlmonks.org/?node_id=219919
442
443 =cut
444
445 sub hashdir{
446     my $dir = shift;
447     opendir my $dh, $dir or die $!;
448     my $tree = {}->{$dir} = {};
449     while( my $file = readdir($dh) ) {
450         next if $file =~ m/^\.{1,2}/;
451         my $path = $dir .'/' . $file;
452         $tree->{$file} = hashdir($path), next if -d $path;
453         push @{$tree->{'.'}}, $file;
454     }
455     return $tree;
456 }
457
458 =head2 get_file_map 
459
460 This function combines the target_map and file hash to
461 map each source file to its destination relative to
462 the set of installation targets.
463
464 Output will be a hash mapping from each source file
465 to its destination value, like this:
466
467 'mainpage.pl' => '$(INTRANET_CGI_DIR)/mainpage.pl'
468
469 =cut
470
471 sub get_file_map {
472     my $target_map = shift;
473     my $dirtree = shift;
474     my $file_map = shift;
475     my $curr_path = @_ ? shift : ['.'];
476
477     # Traverse the directory tree.
478     # For each file or directory, identify the
479     # most specific match in the target_map
480     foreach my $dir (sort keys %{ $dirtree }) {
481         if ($dir eq '.') {
482             # deal with files in directory
483             foreach my $file (sort @{ $dirtree->{$dir} }) {
484                 my $targetdir = undef;
485                 my $matchlevel = undef;
486                 # first, see if there is a match on this specific
487                 # file in the target map
488                 my $filepath = join("/", @$curr_path, $file);
489                 if (exists $target_map->{$filepath}) {
490                     $targetdir = $target_map->{$filepath};
491                     $matchlevel = scalar(@$curr_path) + 1;
492                 } else {
493                     # no match on the specific file; look for
494                     # a directory match
495                     for (my $i = scalar(@$curr_path) - 1; $i >= 0; $i--)  {
496                         my $dirpath = join("/", @$curr_path[0..$i]);
497                         if (exists $target_map->{$dirpath}) {
498                             $targetdir = $target_map->{$dirpath};
499                             $matchlevel = $i + 1;
500                             last;
501                         }
502                     }
503                 }
504                 if (defined $targetdir) {
505                      _add_to_file_map($file_map, $targetdir, $curr_path, $file, $matchlevel);
506                 } else {
507                     my $path = join("/", @$curr_path);
508                     print "failed to map: $path/$file\n" if $DEBUG;
509                 }
510             }
511         } else {
512             # dealing with subdirectory
513             push @$curr_path, $dir;
514             get_file_map($target_map, $dirtree->{$dir}, $file_map, $curr_path);
515             pop @$curr_path;
516         }
517     }
518 }
519
520 sub _add_to_file_map {
521     my $file_map = shift;
522     my $targetdir = shift;
523     my $curr_path = shift;
524     my $file = shift;
525     my $matchlevel = shift;
526     my $dest_path = @_ ? shift : $curr_path;
527
528     # The target can be one of the following:
529     # 1. scalar representing target symbol
530     # 2. hash ref containing target and trimdir keys
531     # 3. array ref containing list of #1 and #2
532     #
533     # Consequently, this routine traverses this structure,
534     # calling itself recursively, until it deals with
535     # all of the scalar target symbols.
536     if (ref $targetdir eq 'ARRAY') {
537         foreach my $subtarget (sort @$targetdir) {
538             _add_to_file_map($file_map, $subtarget, $curr_path, $file, $matchlevel);
539         }
540     } elsif (ref $targetdir eq 'HASH') {
541         my $subtarget = $targetdir->{target};
542         if (exists $targetdir->{trimdir}) {
543             # if we get here, we've specified that
544             # rather than installing the file to
545             # $(TARGET)/matching/dirs/subdirs/file,
546             # we want to install it to
547             # $(TARGET)/subdirs/file
548             #
549             # Note that this the only place where
550             # $matchlevel is used.
551             my @new_dest_path = @$dest_path;
552             if ($targetdir->{trimdir} == -1)  {
553                 splice @new_dest_path, 0, $matchlevel;
554             } else {
555                 splice @new_dest_path, 0, $targetdir->{trimdir};
556             }
557             _add_to_file_map($file_map, $subtarget, $curr_path, $file, $matchlevel, \@new_dest_path);
558         } else {
559             # actually getting here means that the
560             # target was unnecessarily listed
561             # as a hash, but we'll forgive that
562             _add_to_file_map($file_map, $subtarget, $curr_path, $file, $matchlevel);
563         }
564     } elsif ($targetdir ne 'NONE' and $targetdir ne '') {
565         my $source = File::Spec->catfile(@$curr_path, $file);
566         my $destination = File::Spec->catfile('blib', $targetdir, @$dest_path, $file);
567         #print "$source => $destination\n"; # DEBUG
568         # quote spaces in file names
569         # FIXME: this is of questionable portability and
570         # probably depends on user's make recognizing this
571         # quoting syntax -- probably better to remove
572         # spaces and shell metacharacters from all file names
573         $source =~ s/ /\\ /g;
574         $destination =~ s/ /\\ /g;
575         
576         $file_map->{$source} = $destination;
577     }
578 }
579
580 =head2 unhashdir
581
582 This function unhashes the hash of hashes generated by hashdir().
583 This directory unhashing routine is the personal work of Chris Nighswonger (fbcit).
584 Modified here to build koha makefile. It lists all files and where to install each one.
585 It then returns a hash reference suitable for the PM variable above.
586
587 =cut
588
589 sub unhashdir{
590         my $dirhash = shift;
591         my $dirlevel = shift;
592         my $toplevel = $dirlevel;
593         for my $k1 ( sort keys %$dirhash ) {
594                 if ($k1 ne '.' && $k1 ne '') {
595                         $dirlevel = ( $dirlevel ? $dirlevel . '/' . $k1 : $k1 );
596                         &unhashdir($dirhash->{ $k1 }, $dirlevel);
597                         $dirlevel = $toplevel;
598                 }
599                 elsif ( $k1 eq '.' ) {
600                         foreach my $file ( @{$dirhash->{ $k1 }} ) {
601 #                               TODO: There are some hacks here that may be able to be improved... -fbcit
602                                 if ( $file =~ /^./ ) { next; } # skip hidden files and directories.
603
604                                 elsif ( $file =~ /\.pm/ && $dirlevel =~ /C4/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(INST_LIBDIR)/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # C4/*.pm is copied to perl's lib namespace.
605
606                                 elsif ( $dirlevel !~ /koha-tmpl/ && $dirlevel =~ /(installer|errors)/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(PREFIX)/lib/cgi-bin/koha/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # error templates are copied to $(PREFIX)/lib/cgi-bin/koha/
607
608                                 elsif ( $dirlevel =~ /koha-tmpl/ && $dirlevel !~ /errors/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(INST_LIBDIR)/koha/templates/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # error templates are copied to $(INST_LIBDIR)/koha/templates/
609
610                                 elsif ( $dirlevel =~ /(misc|rss)/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(INST_LIBDIR)/koha/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # misc & rss are copied to koha,
611
612 #                               elsif ( $dirlevel =~ /(intranet-tmpl|opac-tmpl)/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(INST_LIBDIR)/koha/templates/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # Templates are copied to koha/templates,
613
614                                 elsif ( $file !~ /\.pl/ && $dirlevel =~ /etc/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(PREFIX)/share/koha/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # Misc etc to koha/etc
615
616                                 elsif ( $file =~ /\.pl/ ) { $result{ ($dirlevel ? $dirlevel . '/' . $file : $file) } = '$(PREFIX)/lib/cgi-bin/koha/' . ($dirlevel ? $dirlevel . '/' . $file : $file); } # CGIs are copied to $(PREFIX)/lib/cgi-bin/koha/ print $result{ ($dirlevel ? $dirlevel . '/' . $file : $file)},"\n\n"; 
617
618                         }
619                         next;
620                 }
621         }
622         return \%result;
623 }
624
625 =head2 get_configuration_options
626
627 This prompts the user for various configuration options.
628
629 =cut
630
631 sub get_configuration {
632   my $defaults = shift;
633   my $valid_values = shift;
634   my %config = ();
635
636   my $msg = q(
637 By default, Koha can be installed in one of three ways:
638
639 standard: Install files in conformance with the Filesystem
640           Hierarchy Standard (FHS).  This is the default mode
641           and should be used when installing a production
642           Koha system.  On Unix systems, root access is 
643           needed to complete a standard installation.
644
645 single:   Install files under a single directory.  This option
646           is useful for installing Koha without root access, e.g.,
647           on a web host that allows CGI scripts and MySQL databases
648           but requires the user to keep all files under the user's
649           HOME directory.
650
651 dev:      Create a set of symbolic links and configuration files to
652           allow Koha to run directly from the source distribution.
653           This mode is useful for developers who want to run
654           Koha from a git clone.
655
656 Please choose the installation mode);
657     $msg .= _add_valid_values_disp('INSTALL_MODE', $valid_values);
658     $config{'INSTALL_MODE'} = _get_value('INSTALL_MODE', $msg, $defaults->{'INSTALL_MODE'}, $valid_values);
659
660     # set message and default value for INSTALL_BASE
661     # depending on value of INSTALL_MODE
662     my $install_base_default = $defaults->{'INSTALL_BASE'};
663     if ($config{'INSTALL_MODE'} eq 'dev') {
664         $msg = q(
665 Please specify the directory in which to install Koha's
666 active configuration files and (if applicable) the
667 Zebra database.  Koha's CGI scripts and templates will
668 be run from the current directory.);
669         # FIXME - home directory portability consideration apply
670         $install_base_default = (exists $ENV{'HOME'}) ? "$ENV{'HOME'}/koha-dev" : "/usr/share/koha-dev";
671     } elsif ($config{'INSTALL_MODE'} eq 'single') {
672         $msg = "\nPlease specify the directory in which to install Koha";
673         # FIXME -- we're assuming under a 'single' mode install
674         # that user will likely want to install under the home
675         # directory.  This is OK in and of itself, but we should
676         # use File::HomeDir to locate the home directory portably.  
677         # This is deferred for now because File::HomeDir is not yet
678         # core.
679         $install_base_default = (exists $ENV{'HOME'}) ? "$ENV{'HOME'}/koha" : "/usr/share/koha";
680     } else {
681         # must be standard
682         $msg = q(
683 Please specify the directory under which most Koha files 
684 will be installed.
685
686 Note that if you are planning in installing more than 
687 one instance of Koha, you may want to modify the last
688 component of the directory path, which will be used
689 as the package name in the FHS layout.);
690     }
691     $config{'INSTALL_BASE'} = _get_value('INSTALL_BASE', $msg, $install_base_default, $valid_values);
692     $config{'INSTALL_BASE'} = File::Spec->rel2abs($config{'INSTALL_BASE'});
693
694     $msg = q(
695 Koha can use the Zebra search engine for high-performance
696 searching of bibliographic and authority records.  If you
697 have installed the Zebra software and would like to use it,
698 please answer 'yes' to the following question.  Otherwise, 
699 Koha will default to using its internal search engine.
700
701 Please specify whether to install the Zebra configuration files);
702     $msg .= _add_valid_values_disp('INSTALL_ZEBRA', $valid_values);
703     $config{'INSTALL_ZEBRA'} = _get_value('INSTALL_ZEBRA', $msg, $defaults->{'INSTALL_ZEBRA'}, $valid_values);
704
705     if ($config{'INSTALL_ZEBRA'} eq 'yes') {
706         $msg = q(
707 Since you've chosen to use Zebra with Koha,
708 you must specify the primary MARC format of the
709 records to be indexed by Zebra.
710
711 Koha provides Zebra configuration files for MARC 21
712 and UNIMARC.
713
714 Please specify the MARC format);
715         $msg .= _add_valid_values_disp('ZEBRA_MARC_FORMAT', $valid_values);
716         $config{'ZEBRA_MARC_FORMAT'} = _get_value('ZEBRA_MARC_FORMAT', $msg, $defaults->{'ZEBRA_MARC_FORMAT'}, $valid_values);
717         $msg = q(
718 Koha supplies Zebra configuration files tuned for
719 searching either English (en) or French (fr) MARC
720 records.
721
722 Please specify the primary language of the MARC records);
723         $msg .= _add_valid_values_disp('ZEBRA_LANGUAGE', $valid_values);
724         $config{'ZEBRA_LANGUAGE'} = _get_value('ZEBRA_LANGUAGE', $msg, $defaults->{'ZEBRA_LANGUAGE'}, $valid_values);
725     }
726     return %config;
727 }
728
729 sub _add_valid_values_disp {
730     my $key = shift;
731     my $valid_values = shift;
732    
733     my $disp = "";
734     if (exists $valid_values->{$key}) {
735         $disp = " (" . join(", ", sort keys %{ $valid_values->{$key} }) . ")";
736     }
737     return $disp;
738 }
739
740 sub _get_value {
741     my $key = shift;
742     my $msg = shift;
743     my $default = shift;
744     my $valid_values = shift;
745
746     my $val = prompt($msg, $default);
747     while (exists $valid_values->{$key} and not exists $valid_values->{$key}->{$val}) {
748         my $retry_msg = "Value '$val' is not a valid option.\n";
749         $retry_msg .= "Please enter a value";
750         $retry_msg .= _add_valid_values_disp($key, $valid_values);
751         $val = prompt($retry_msg, $default);
752     }
753     return $val;
754 }
755
756 =head2 get_target_directories 
757
758 Creates a hash mapping from symbols for installation target
759 directories to actual directory paths.
760
761 =cut
762
763 sub get_target_directories {
764     my $config = shift;
765
766     my $base = $config->{'INSTALL_BASE'};
767     my $mode = $config->{'INSTALL_MODE'};
768
769     # get last component of install base directory
770     # to treat as package name
771     my ($volume, $directories, $file) = File::Spec->splitpath($base, 1);
772     my @basedir = File::Spec->splitdir($directories);
773     my $package = pop @basedir;
774
775     my %dirmap = ();
776     if ($mode eq 'single') {
777         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'cgi-bin');
778         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'templates');
779         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'www');
780         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'cgi-bin');
781         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'templates');
782         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'www');
783         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir(@basedir, $package, 'lib');
784         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc');
785         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'zebradb');
786         $dirmap{'EXAMPLE_DIR'} = File::Spec->catdir(@basedir, $package, 'example');
787         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
788         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
789         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
790         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(@basedir, $package, 'var', 'lock', 'zebradb');
791         $dirmap{'LOG_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'log');
792         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'lib', 'zebradb');
793         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'run', 'zebradb');
794     } elsif ($mode eq 'dev') {
795         my $curdir = File::Spec->rel2abs(File::Spec->curdir());
796         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir($curdir);
797         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'intranet-tmpl');
798         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'intranet-tmpl');
799         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir($curdir, 'opac');
800         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'opac-tmpl');
801         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'opac-tmpl');
802         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir($curdir);
803         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc');
804         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'zebradb');
805         $dirmap{'EXAMPLE_DIR'} = File::Spec->catdir(@basedir, $package, 'example');
806         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
807         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
808         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
809         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(@basedir, $package, 'var', 'lock', 'zebradb');
810         $dirmap{'LOG_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'log');
811         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'lib', 'zebradb');
812         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'run', 'zebradb');
813     } else {
814         # mode is standard, i.e., 'fhs'
815         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'cgi-bin');
816         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'templates');
817         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'www');
818         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'cgi-bin');
819         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'templates');
820         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'www');
821         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir(@basedir, $package, 'lib');
822         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'etc', $package);
823         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'etc', $package, 'zebradb');
824         $dirmap{'EXAMPLE_DIR'} = File::Spec->catdir(@basedir, $package, 'example');
825         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
826         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
827         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
828         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'var', 'lock', $package, 'zebradb');
829         $dirmap{'LOG_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'log', $package);
830         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'lib', $package, 'zebradb');
831         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'run', $package, 'zebradb');
832     }
833
834     foreach my $key (sort keys %dirmap) {
835         print sprintf("%-25.25s%s\n", $key, $dirmap{$key});
836     }
837     return %dirmap;
838 }
839
840 package MY;
841
842 sub test {
843     my $self = shift;
844     my $test = $self->SUPER::test(@_);
845     $test =~ s!\$\(INST_LIB\)!blib/PERL_MODULE_DIR!g;
846     return $test;
847 }
848
849 sub install {
850     my $self = shift;
851     my $install = ""; 
852     # NOTE: we're *not* doing this: my $install = $self->SUPER::install(@_);
853     # This means that we're completely overriding EU::MM's default
854     # installation and uninstallation targets.
855     foreach my $key (sort keys %target_directories) {
856         $install .= qq(
857 KOHA_INST_$key = blib/$key
858 KOHA_DEST_$key = $target_directories{$key}
859 );
860     }
861
862     $install .= qq(
863 install :: all install_koha
864 \t\$(NOECHO) \$(NOOP)
865 );
866     $install .= "install_koha ::\n";      
867     $install .= "\t\$(NOECHO) umask 022; \$(MOD_INSTALL) \\\n";
868     foreach my $key (sort keys %target_directories) {
869         $install .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n";
870     }
871     $install .= "\t\t\$(INST_MAN1DIR) \$(DESTINSTALLMAN1DIR) \\\n";
872     $install .= "\t\t\$(INST_MAN3DIR) \$(DESTINSTALLMAN3DIR)\n";
873     return $install;
874 }
875
876 sub postamble {
877     # put directory mappings into Makefile
878     # so that Make will export as environment
879     # variables -- this is for the use of
880     # rewrite-confg.PL
881     my $env = join("\n", map { "export __${_}__ = $target_directories{$_}" } keys %target_directories); 
882     return "$env\n";
883 }
884
885 __END__
886
887
888 =head1 SEE ALSO
889
890 ExtUtils::MakeMaker(3)
891
892 =head1 AUTHORS
893
894 MJ Ray mjr at phonecoop.coop
895
896 =cut
897 FIXME: Zebra lang/MARC mapping
898 FIXME: deal with .htaccess