Bug 14642: (QA followup) Make HoldsLog default to 0
[koha.git] / about.pl
1 #!/usr/bin/perl
2
3 # Copyright Pat Eyler 2003
4 # Copyright Biblibre 2006
5 # Parts Copyright Liblime 2008
6 # Parts Copyright Chris Nighswonger 2010
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 use Modern::Perl;
24
25 use CGI qw ( -utf8 );
26 use List::MoreUtils qw/ any /;
27 use LWP::Simple;
28 use XML::Simple;
29 use Config;
30
31 use C4::Output;
32 use C4::Auth;
33 use C4::Context;
34 use C4::Installer;
35
36 use Koha;
37 use Koha::Acquisition::Currencies;
38 use Koha::Patrons;
39 use Koha::Config::SysPrefs;
40 use C4::Members::Statistics;
41
42 #use Smart::Comments '####';
43
44 my $query = new CGI;
45 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
46     {
47         template_name   => "about.tt",
48         query           => $query,
49         type            => "intranet",
50         authnotrequired => 0,
51         flagsrequired   => { catalogue => 1 },
52         debug           => 1,
53     }
54 );
55
56 my $perl_path = $^X;
57 if ($^O ne 'VMS') {
58     $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
59 }
60
61 my $zebraVersion = `zebraidx -V`;
62
63 # Check running PSGI env
64 if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) {
65     $template->param(
66         is_psgi => 1,
67         psgi_server => ($ENV{ PLACK_ENV }) ? "Plack ($ENV{PLACK_ENV})" :
68                        ($ENV{ MOD_PERL })  ? "mod_perl ($ENV{MOD_PERL})" :
69                                              'Unknown'
70     );
71 }
72
73 # Additional system information for warnings
74
75 my $warnStatisticsFieldsError;
76 my $prefStatisticsFields = C4::Context->preference('StatisticsFields');
77 if ($prefStatisticsFields) {
78     $warnStatisticsFieldsError = $prefStatisticsFields
79         unless ( $prefStatisticsFields eq C4::Members::Statistics->get_fields() );
80 }
81
82 my $prefAutoCreateAuthorities = C4::Context->preference('AutoCreateAuthorities');
83 my $prefBiblioAddsAuthorities = C4::Context->preference('BiblioAddsAuthorities');
84 my $warnPrefBiblioAddsAuthorities = ( $prefAutoCreateAuthorities && ( !$prefBiblioAddsAuthorities) );
85
86 my $prefEasyAnalyticalRecords  = C4::Context->preference('EasyAnalyticalRecords');
87 my $prefUseControlNumber  = C4::Context->preference('UseControlNumber');
88 my $warnPrefEasyAnalyticalRecords  = ( $prefEasyAnalyticalRecords  && $prefUseControlNumber );
89 my $warnPrefAnonymousPatron = (
90     C4::Context->preference('OPACPrivacy')
91         and not C4::Context->preference('AnonymousPatron')
92 );
93
94 my $anonymous_patron = Koha::Patrons->find( C4::Context->preference('AnonymousPatron') );
95 my $warnPrefAnonymousPatron_PatronDoesNotExist = ( not $anonymous_patron and Koha::Patrons->search({ privacy => 2 })->count );
96
97 my $errZebraConnection = C4::Context->Zconn("biblioserver",0)->errcode();
98
99 my $warnIsRootUser   = (! $loggedinuser);
100
101 my $warnNoActiveCurrency = (! defined Koha::Acquisition::Currencies->get_active);
102 my @xml_config_warnings;
103
104 my $context = new C4::Context;
105
106 if ( ! defined C4::Context->config('zebra_bib_index_mode') ) {
107     push @xml_config_warnings, {
108         error => 'zebra_bib_index_mode_warn'
109     };
110     if ($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) {
111         push @xml_config_warnings, {
112             error => 'zebra_bib_mode_seems_grs1'
113         };
114     }
115     else {
116         push @xml_config_warnings, {
117             error => 'zebra_bib_mode_seems_dom'
118         };
119     }
120 } else {
121     push @xml_config_warnings, { error => 'zebra_bib_grs_warn' }
122         if C4::Context->config('zebra_bib_index_mode') eq 'grs1';
123 }
124
125 if ( (C4::Context->config('zebra_bib_index_mode') eq 'dom') &&
126      ($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) ) {
127
128     push @xml_config_warnings, {
129         error => 'zebra_bib_index_mode_mismatch_warn'
130     };
131 }
132
133 if ( (C4::Context->config('zebra_bib_index_mode') eq 'grs1') &&
134      ($context->{'server'}->{'biblioserver'}->{'config'} =~ /zebra-biblios-dom.cfg/) ) {
135
136     push @xml_config_warnings, {
137         error => 'zebra_bib_index_mode_mismatch_warn'
138     };
139 }
140
141 if ( ! defined C4::Context->config('zebra_auth_index_mode') ) {
142     push @xml_config_warnings, {
143         error => 'zebra_auth_index_mode_warn'
144     };
145     if ($context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/) {
146         push @xml_config_warnings, {
147             error => 'zebra_auth_mode_seems_grs1'
148         };
149     }
150     else {
151         push @xml_config_warnings, {
152             error => 'zebra_auth_mode_seems_dom'
153         };
154     }
155 } else {
156     push @xml_config_warnings, { error => 'zebra_auth_grs_warn' }
157         if C4::Context->config('zebra_auth_index_mode') eq 'grs1';
158 }
159
160 if ( (C4::Context->config('zebra_auth_index_mode') eq 'dom') && ($context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/) ) {
161     push @xml_config_warnings, {
162         error => 'zebra_auth_index_mode_mismatch_warn'
163     };
164 }
165
166 if ( (C4::Context->config('zebra_auth_index_mode') eq 'grs1') && ($context->{'server'}->{'authorityserver'}->{'config'} =~ /zebra-authorities-dom.cfg/) ) {
167     push @xml_config_warnings, {
168         error => 'zebra_auth_index_mode_mismatch_warn'
169     };
170 }
171
172 if ( ! defined C4::Context->config('log4perl_conf') ) {
173     push @xml_config_warnings, {
174         error => 'log4perl_entry_missing'
175     }
176 }
177
178 if ( ! defined C4::Context->config('upload_path') ) {
179     if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
180         # OPACBaseURL seems to be set
181         push @xml_config_warnings, {
182             error => 'uploadpath_entry_missing'
183         }
184     } else {
185         push @xml_config_warnings, {
186             error => 'uploadpath_and_opacbaseurl_entry_missing'
187         }
188     }
189 }
190
191 # Test QueryParser configuration sanity
192 if ( C4::Context->preference( 'UseQueryParser' ) ) {
193     # Get the QueryParser configuration file name
194     my $queryparser_file          = C4::Context->config( 'queryparser_config' );
195     my $queryparser_fallback_file = '/etc/koha/searchengine/queryparser.yaml';
196     # Check QueryParser is functional
197     my $QParser = C4::Context->queryparser();
198     my $queryparser_error = {};
199     if ( ! defined $QParser || ref($QParser) ne 'Koha::QueryParser::Driver::PQF' ) {
200         # Error initializing the QueryParser object
201         # Get the used queryparser.yaml file path to report the user
202         $queryparser_error->{ fallback } = ( defined $queryparser_file ) ? 0 : 1;
203         $queryparser_error->{ file }     = ( defined $queryparser_file )
204                                                 ? $queryparser_file
205                                                 : $queryparser_fallback_file;
206         # Report error data to the template
207         $template->param( QueryParserError => $queryparser_error );
208     } else {
209         # Check for an absent queryparser_config entry in koha-conf.xml
210         if ( ! defined $queryparser_file ) {
211             # Not an error but a warning for the missing entry in koha-conf-xml
212             push @xml_config_warnings, {
213                     error => 'queryparser_entry_missing',
214                     file  => $queryparser_fallback_file
215             };
216         }
217     }
218 }
219
220 # Test Zebra facets configuration
221 if ( !defined C4::Context->config('use_zebra_facets') ) {
222     push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
223 } else {
224     if ( C4::Context->config('use_zebra_facets') &&
225          C4::Context->config('zebra_bib_index_mode') ) {
226         # use_zebra_facets works with DOM
227         push @xml_config_warnings, {
228             error => 'use_zebra_facets_needs_dom'
229         } if C4::Context->config('zebra_bib_index_mode') ne 'dom' ;
230     }
231 }
232
233 # Sco Patron should not contain any other perms than circulate => self_checkout
234 if (  C4::Context->preference('WebBasedSelfCheck')
235       and C4::Context->preference('AutoSelfCheckAllowed')
236 ) {
237     my $userid = C4::Context->preference('AutoSelfCheckID');
238     my $all_permissions = C4::Auth::get_user_subpermissions( $userid );
239     my ( $has_self_checkout_perm, $has_other_permissions );
240     while ( my ( $module, $permissions ) = each %$all_permissions ) {
241         if ( $module eq 'circulate' ) {
242             while ( my ( $permission, $flag ) = each %$permissions ) {
243                 if ( $permission eq 'self_checkout' ) {
244                     $has_self_checkout_perm = 1;
245                 } else {
246                     $has_other_permissions = 1;
247                 }
248             }
249         } else {
250             $has_other_permissions = 1;
251         }
252     }
253     $template->param(
254         AutoSelfCheckPatronDoesNotHaveSelfCheckPerm => not ( $has_self_checkout_perm ),
255         AutoSelfCheckPatronHasTooManyPerm => $has_other_permissions,
256     );
257
258
259 }
260
261 my %versions = C4::Context::get_versions();
262
263 $template->param(
264     kohaVersion   => $versions{'kohaVersion'},
265     osVersion     => $versions{'osVersion'},
266     perlPath      => $perl_path,
267     perlVersion   => $versions{'perlVersion'},
268     perlIncPath   => [ map { perlinc => $_ }, @INC ],
269     mysqlVersion  => $versions{'mysqlVersion'},
270     apacheVersion => $versions{'apacheVersion'},
271     zebraVersion  => $zebraVersion,
272     prefBiblioAddsAuthorities => $prefBiblioAddsAuthorities,
273     prefAutoCreateAuthorities => $prefAutoCreateAuthorities,
274     warnPrefBiblioAddsAuthorities => $warnPrefBiblioAddsAuthorities,
275     warnPrefEasyAnalyticalRecords  => $warnPrefEasyAnalyticalRecords,
276     warnPrefAnonymousPatron => $warnPrefAnonymousPatron,
277     warnPrefAnonymousPatron_PatronDoesNotExist => $warnPrefAnonymousPatron_PatronDoesNotExist,
278     errZebraConnection => $errZebraConnection,
279     warnIsRootUser => $warnIsRootUser,
280     warnNoActiveCurrency => $warnNoActiveCurrency,
281     xml_config_warnings => \@xml_config_warnings,
282     warnStatisticsFieldsError => $warnStatisticsFieldsError,
283 );
284
285 my @components = ();
286
287 my $perl_modules = C4::Installer::PerlModules->new;
288 $perl_modules->version_info;
289
290 my @pm_types = qw(missing_pm upgrade_pm current_pm);
291
292 foreach my $pm_type(@pm_types) {
293     my $modules = $perl_modules->get_attr($pm_type);
294     foreach (@$modules) {
295         my ($module, $stats) = each %$_;
296         push(
297             @components,
298             {
299                 name    => $module,
300                 version => $stats->{'cur_ver'},
301                 missing => ($pm_type eq 'missing_pm' ? 1 : 0),
302                 upgrade => ($pm_type eq 'upgrade_pm' ? 1 : 0),
303                 current => ($pm_type eq 'current_pm' ? 1 : 0),
304                 require => $stats->{'required'},
305                 reqversion => $stats->{'min_ver'},
306             }
307         );
308     }
309 }
310
311 @components = sort {$a->{'name'} cmp $b->{'name'}} @components;
312
313 my $counter=0;
314 my $row = [];
315 my $table = [];
316 foreach (@components) {
317     push (@$row, $_);
318     unless (++$counter % 4) {
319         push (@$table, {row => $row});
320         $row = [];
321     }
322 }
323 # Processing the last line (if there are any modules left)
324 if (scalar(@$row) > 0) {
325     # Extending $row to the table size
326     $$row[3] = '';
327     # Pushing the last line
328     push (@$table, {row => $row});
329 }
330 ## ## $table
331
332 $template->param( table => $table );
333
334
335 ## ------------------------------------------
336 ## Koha time line code
337
338 #get file location
339 my $docdir;
340 if ( defined C4::Context->config('docdir') ) {
341     $docdir = C4::Context->config('docdir');
342 } else {
343     # if no <docdir> is defined in koha-conf.xml, use the default location
344     # this is a work-around to stop breakage on upgraded Kohas, bug 8911
345     $docdir = C4::Context->config('intranetdir') . '/docs';
346 }
347
348 if ( open( my $file, "<:encoding(UTF-8)", "$docdir" . "/history.txt" ) ) {
349
350     my $i = 0;
351
352     my @rows2 = ();
353     my $row2  = [];
354
355     my @lines = <$file>;
356     close($file);
357
358     shift @lines; #remove header row
359
360     foreach (@lines) {
361         my ( $date, $desc, $tag ) = split(/\t/);
362         if(!$desc && $date=~ /(?<=\d{4})\s+/) {
363             ($date, $desc)= ($`, $');
364         }
365         push(
366             @rows2,
367             {
368                 date => $date,
369                 desc => $desc,
370             }
371         );
372     }
373
374     my $table2 = [];
375     #foreach my $row2 (@rows2) {
376     foreach  (@rows2) {
377         push (@$row2, $_);
378         push( @$table2, { row2 => $row2 } );
379         $row2 = [];
380     }
381
382     $template->param( table2 => $table2 );
383 } else {
384     $template->param( timeline_read_error => 1 );
385 }
386
387 output_html_with_http_headers $query, $cookie, $template->output;