Bug 30477: Add new UNIMARC installer translation files
[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 DateTime::TimeZone;
27 use File::Slurp qw( read_file );
28 use List::MoreUtils qw( any );
29 use Module::Load::Conditional qw( can_load );
30 use Config qw( %Config );
31 use Search::Elasticsearch;
32 use Try::Tiny qw( catch try );
33 use YAML::XS;
34 use Encode;
35
36 use C4::Output qw( output_html_with_http_headers );
37 use C4::Auth qw( get_template_and_user get_user_subpermissions );
38 use C4::Context;
39 use C4::Installer::PerlModules;
40
41 use Koha;
42 use Koha::DateUtils qw( dt_from_string output_pref );
43 use Koha::Acquisition::Currencies;
44 use Koha::BackgroundJob;
45 use Koha::BiblioFrameworks;
46 use Koha::Email;
47 use Koha::Patron::Categories;
48 use Koha::Patrons;
49 use Koha::Caches;
50 use Koha::Config::SysPrefs;
51 use Koha::Illrequest::Config;
52 use Koha::SearchEngine::Elasticsearch;
53 use Koha::Logger;
54 use Koha::Filter::MARC::ViewPolicy;
55
56 use C4::Members::Statistics;
57
58 my $query = CGI->new;
59 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
60     {
61         template_name   => "about.tt",
62         query           => $query,
63         type            => "intranet",
64         flagsrequired   => { catalogue => 1 },
65     }
66 );
67
68 my $config_timezone = C4::Context->config('timezone') // '';
69 my $config_invalid  = !DateTime::TimeZone->is_valid_name( $config_timezone );
70 my $env_timezone    = $ENV{TZ} // '';
71 my $env_invalid     = !DateTime::TimeZone->is_valid_name( $env_timezone );
72 my $actual_bad_tz_fallback = 0;
73
74 if ( $config_timezone ne '' &&
75      $config_invalid ) {
76     # Bad config
77     $actual_bad_tz_fallback = 1;
78 }
79 elsif ( $config_timezone eq '' &&
80         $env_timezone    ne '' &&
81         $env_invalid ) {
82     # No config, but bad ENV{TZ}
83     $actual_bad_tz_fallback = 1;
84 }
85
86 my $time_zone = {
87     actual                 => C4::Context->tz->name,
88     actual_bad_tz_fallback => $actual_bad_tz_fallback,
89     config                 => $config_timezone,
90     config_invalid         => $config_invalid,
91     environment            => $env_timezone,
92     environment_invalid    => $env_invalid
93 };
94
95 { # Logger checks
96     my $log4perl_config = C4::Context->config("log4perl_conf");
97     my @log4perl_errors;
98     if ( ! $log4perl_config ) {
99         push @log4perl_errors, 'missing_config_entry'
100     }
101     else {
102         my @lines = read_file($log4perl_config) or push @log4perl_errors, 'cannot_read_config_file';
103         for my $line ( @lines ) {
104             next unless $line =~ m|log4perl.appender.\w+.filename=(.*)|;
105             push @log4perl_errors, 'logfile_not_writable' unless -w $1;
106         }
107     }
108     eval {Koha::Logger->get};
109     push @log4perl_errors, 'cannot_init_module' and warn $@ if $@;
110     $template->param( log4perl_errors => @log4perl_errors );
111 }
112
113 $template->param(
114     time_zone              => $time_zone,
115     current_date_and_time  => output_pref({ dt => dt_from_string(), dateformat => 'iso' })
116 );
117
118 my $perl_path = $^X;
119 if ($^O ne 'VMS') {
120     $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
121 }
122
123 my $zebraVersion = `zebraidx -V`;
124
125 # Check running PSGI env
126 if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) {
127     $template->param(
128         is_psgi => 1,
129         psgi_server => ($ENV{ PLACK_ENV }) ? "Plack ($ENV{PLACK_ENV})" :
130                        ($ENV{ MOD_PERL })  ? "mod_perl ($ENV{MOD_PERL})" :
131                                              'Unknown'
132     );
133 }
134
135 # Memcached configuration
136 my $memcached_servers   = $ENV{MEMCACHED_SERVERS} || C4::Context->config('memcached_servers');
137 my $memcached_namespace = $ENV{MEMCACHED_NAMESPACE} || C4::Context->config('memcached_namespace') // 'koha';
138
139 my $cache = Koha::Caches->get_instance;
140 my $effective_caching_method = ref($cache->cache);
141 # Memcached may have been running when plack has been initialized but could have been stopped since
142 # FIXME What are the consequences of that??
143 my $is_memcached_still_active = $cache->set_in_cache('test_for_about_page', "just a simple value");
144
145 my $where_is_memcached_config = 'nowhere';
146 if ( $ENV{MEMCACHED_SERVERS} and C4::Context->config('memcached_servers') ) {
147     $where_is_memcached_config = 'both';
148 } elsif ( $ENV{MEMCACHED_SERVERS} and not C4::Context->config('memcached_servers') ) {
149     $where_is_memcached_config = 'ENV_only';
150 } elsif ( C4::Context->config('memcached_servers') ) {
151     $where_is_memcached_config = 'config_only';
152 }
153
154 $template->param(
155     effective_caching_method => $effective_caching_method,
156     memcached_servers   => $memcached_servers,
157     memcached_namespace => $memcached_namespace,
158     is_memcached_still_active => $is_memcached_still_active,
159     where_is_memcached_config => $where_is_memcached_config,
160     memcached_running   => Koha::Caches->get_instance->memcached_cache,
161 );
162
163 # Additional system information for warnings
164
165 my $warnStatisticsFieldsError;
166 my $prefStatisticsFields = C4::Context->preference('StatisticsFields');
167 if ($prefStatisticsFields) {
168     $warnStatisticsFieldsError = $prefStatisticsFields
169         unless ( $prefStatisticsFields eq C4::Members::Statistics->get_fields() );
170 }
171
172 my $prefAutoCreateAuthorities = C4::Context->preference('AutoCreateAuthorities');
173 my $prefBiblioAddsAuthorities = C4::Context->preference('BiblioAddsAuthorities');
174 my $warnPrefBiblioAddsAuthorities = ( $prefAutoCreateAuthorities && ( !$prefBiblioAddsAuthorities) );
175
176 my $prefEasyAnalyticalRecords  = C4::Context->preference('EasyAnalyticalRecords');
177 my $prefUseControlNumber  = C4::Context->preference('UseControlNumber');
178 my $warnPrefEasyAnalyticalRecords  = ( $prefEasyAnalyticalRecords  && $prefUseControlNumber );
179
180 my $AnonymousPatron = C4::Context->preference('AnonymousPatron');
181 my $warnPrefAnonymousPatronOPACPrivacy = (
182     C4::Context->preference('OPACPrivacy')
183         and not $AnonymousPatron
184 );
185 my $warnPrefAnonymousPatronAnonSuggestions = (
186     C4::Context->preference('AnonSuggestions')
187         and not $AnonymousPatron
188 );
189
190 my $anonymous_patron = Koha::Patrons->find( $AnonymousPatron );
191 my $warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist = ( $AnonymousPatron && C4::Context->preference('AnonSuggestions') && not $anonymous_patron );
192
193 my $warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist = ( not $anonymous_patron and Koha::Patrons->search({ privacy => 2 })->count );
194
195 my $warnPrefKohaAdminEmailAddress = !Koha::Email->is_valid(C4::Context->preference('KohaAdminEmailAddress'));
196
197 my $c = Koha::Items->filter_by_visible_in_opac->count;
198 my @warnings = C4::Context->dbh->selectrow_array('SHOW WARNINGS');
199 my $warnPrefOpacHiddenItems = $warnings[2];
200
201 my $invalid_yesno = Koha::Config::SysPrefs->search(
202     {
203         type  => 'YesNo',
204         value => { -or => { 'is' => undef, -not_in => [ "1", "0" ] } }
205     }
206 );
207 $template->param( invalid_yesno => $invalid_yesno );
208
209 my $errZebraConnection = C4::Context->Zconn("biblioserver",0)->errcode();
210
211 my $warnIsRootUser   = (! $loggedinuser);
212
213 my $warnNoActiveCurrency = (! defined Koha::Acquisition::Currencies->get_active);
214
215 my @xml_config_warnings;
216
217 if (    C4::Context->config('zebra_bib_index_mode')
218     and C4::Context->config('zebra_bib_index_mode') eq 'grs1' )
219 {
220     push @xml_config_warnings, { error => 'zebra_bib_index_mode_is_grs1' };
221 }
222
223 if (    C4::Context->config('zebra_auth_index_mode')
224     and C4::Context->config('zebra_auth_index_mode') eq 'grs1' )
225 {
226     push @xml_config_warnings, { error => 'zebra_auth_index_mode_is_grs1' };
227 }
228
229 my $authorityserver = C4::Context->zebraconfig('authorityserver');
230 if( (   C4::Context->config('zebra_auth_index_mode')
231     and C4::Context->config('zebra_auth_index_mode') eq 'dom' )
232     && ( $authorityserver->{config} !~ /zebra-authorities-dom.cfg/ ) )
233 {
234     push @xml_config_warnings, {
235         error => 'zebra_auth_index_mode_mismatch_warn'
236     };
237 }
238
239 if ( ! defined C4::Context->config('log4perl_conf') ) {
240     push @xml_config_warnings, {
241         error => 'log4perl_entry_missing'
242     }
243 }
244
245 if ( ! defined C4::Context->config('lockdir') ) {
246     push @xml_config_warnings, {
247         error => 'lockdir_entry_missing'
248     }
249 }
250 else {
251     unless ( -w C4::Context->config('lockdir') ) {
252         push @xml_config_warnings, {
253             error   => 'lockdir_not_writable',
254             lockdir => C4::Context->config('lockdir')
255         }
256     }
257 }
258
259 if ( ! defined C4::Context->config('upload_path') ) {
260     if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) {
261         # OPACBaseURL seems to be set
262         push @xml_config_warnings, {
263             error => 'uploadpath_entry_missing'
264         }
265     } else {
266         push @xml_config_warnings, {
267             error => 'uploadpath_and_opacbaseurl_entry_missing'
268         }
269     }
270 }
271
272 if ( ! C4::Context->config('tmp_path') ) {
273     my $temporary_directory = C4::Context::temporary_directory;
274     push @xml_config_warnings, {
275         error             => 'tmp_path_missing',
276         effective_tmp_dir => $temporary_directory,
277     }
278 }
279
280 # Test Zebra facets configuration
281 if ( !defined C4::Context->config('use_zebra_facets') ) {
282     push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
283 }
284
285 # ILL module checks
286 if ( C4::Context->preference('ILLModule') ) {
287     my $warnILLConfiguration = 0;
288     my $ill_config_from_file = C4::Context->config("interlibrary_loans");
289     my $ill_config = Koha::Illrequest::Config->new;
290
291     my $available_ill_backends =
292       ( scalar @{ $ill_config->available_backends } > 0 );
293
294     # Check backends
295     if ( !$available_ill_backends ) {
296         $template->param( no_ill_backends => 1 );
297         $warnILLConfiguration = 1;
298     }
299
300     # Check partner_code
301     if ( !Koha::Patron::Categories->find($ill_config->partner_code) ) {
302         $template->param( ill_partner_code_doesnt_exist => $ill_config->partner_code );
303         $warnILLConfiguration = 1;
304     }
305
306     if ( !$ill_config_from_file->{partner_code} ) {
307         # partner code not defined
308         $template->param( ill_partner_code_not_defined => 1 );
309         $warnILLConfiguration = 1;
310     }
311
312
313     if ( !$ill_config_from_file->{branch} ) {
314         # branch not defined
315         $template->param( ill_branch_not_defined => 1 );
316         $warnILLConfiguration = 1;
317     }
318
319     $template->param( warnILLConfiguration => $warnILLConfiguration );
320 }
321
322 {
323     # XSLT sysprefs
324     my @xslt_prefs = qw(
325         OPACXSLTDetailsDisplay
326         OPACXSLTListsDisplay
327         OPACXSLTResultsDisplay
328         XSLTDetailsDisplay
329         XSLTListsDisplay
330         XSLTResultsDisplay
331     );
332     my @warnXSLT;
333     for my $p ( @xslt_prefs ) {
334         my $xsl_filename = C4::XSLT::get_xsl_filename( $p );
335         next if -e $xsl_filename;
336         push @warnXSLT,
337           {
338             syspref  => $p,
339             value    => C4::Context->preference("$p"),
340             filename => $xsl_filename
341           };
342     }
343
344     $template->param( warnXSLT => \@warnXSLT ) if @warnXSLT;
345 }
346
347 if ( C4::Context->preference('SearchEngine') eq 'Elasticsearch' ) {
348     # Check ES configuration health and runtime status
349
350     my $es_status;
351     my $es_config_error;
352     my $es_running = 1;
353
354     my $es_conf;
355     try {
356         $es_conf = Koha::SearchEngine::Elasticsearch::_read_configuration();
357     }
358     catch {
359         if ( ref($_) eq 'Koha::Exceptions::Config::MissingEntry' ) {
360             $template->param( elasticsearch_fatal_config_error => $_->message );
361             $es_config_error = 1;
362         }
363     };
364     if ( !$es_config_error ) {
365
366         my $biblios_index_name     = $es_conf->{index_name} . "_" . $Koha::SearchEngine::BIBLIOS_INDEX;
367         my $authorities_index_name = $es_conf->{index_name} . "_" . $Koha::SearchEngine::AUTHORITIES_INDEX;
368
369         my @indexes = ($biblios_index_name, $authorities_index_name);
370         # TODO: When new indexes get added, we could have other ways to
371         #       fetch the list of available indexes (e.g. plugins, etc)
372         $es_status->{nodes} = $es_conf->{nodes};
373         my $es = Search::Elasticsearch->new({ nodes => $es_conf->{nodes} });
374         my $es_status->{version} = $es->info->{version}->{number};
375
376         foreach my $index ( @indexes ) {
377             my $count;
378             try {
379                 $count = $es->indices->stats( index => $index )
380                       ->{_all}{primaries}{docs}{count};
381             }
382             catch {
383                 if ( ref($_) eq 'Search::Elasticsearch::Error::Missing' ) {
384                     push @{ $es_status->{errors} }, "Index not found ($index)";
385                     $count = -1;
386                 }
387                 elsif ( ref($_) eq 'Search::Elasticsearch::Error::NoNodes' ) {
388                     $es_running = 0;
389                 }
390                 else {
391                     # TODO: when time comes, we will cover more use cases
392                     die $_;
393                 }
394             };
395
396             push @{ $es_status->{indexes} },
397               {
398                 index_name => $index,
399                 count      => $count
400               };
401         }
402         $es_status->{running} = $es_running;
403
404         $template->param( elasticsearch_status => $es_status );
405     }
406 }
407
408 if ( C4::Context->preference('RESTOAuth2ClientCredentials') ) {
409     # Do we have the required deps?
410     unless ( can_load( modules => { 'Net::OAuth2::AuthorizationServer' => undef }) ) {
411         $template->param( oauth2_missing_deps => 1 );
412     }
413 }
414
415 # Sco Patron should not contain any other perms than circulate => self_checkout
416 if (  C4::Context->preference('WebBasedSelfCheck')
417       and C4::Context->preference('AutoSelfCheckAllowed')
418 ) {
419     my $userid = C4::Context->preference('AutoSelfCheckID');
420     my $all_permissions = C4::Auth::get_user_subpermissions( $userid );
421     my ( $has_self_checkout_perm, $has_other_permissions );
422     while ( my ( $module, $permissions ) = each %$all_permissions ) {
423         if ( $module eq 'self_check' ) {
424             while ( my ( $permission, $flag ) = each %$permissions ) {
425                 if ( $permission eq 'self_checkout_module' ) {
426                     $has_self_checkout_perm = 1;
427                 } else {
428                     $has_other_permissions = 1;
429                 }
430             }
431         } else {
432             $has_other_permissions = 1;
433         }
434     }
435     $template->param(
436         AutoSelfCheckPatronDoesNotHaveSelfCheckPerm => not ( $has_self_checkout_perm ),
437         AutoSelfCheckPatronHasTooManyPerm => $has_other_permissions,
438     );
439 }
440
441 # Test YAML system preferences
442 # FIXME: This is list of current YAML formatted prefs, should by type of preference
443 my @yaml_prefs = (
444     "UpdateNotForLoanStatusOnCheckin",
445     "OpacHiddenItems",
446     "BibtexExportAdditionalFields",
447     "RisExportAdditionalFields",
448     "UpdateItemWhenLostFromHoldList",
449     "MarcFieldsToOrder",
450     "MarcItemFieldsToOrder",
451     "UpdateitemLocationOnCheckin",
452     "ItemsDeniedRenewal"
453 );
454 my @bad_yaml_prefs;
455 foreach my $syspref (@yaml_prefs) {
456     my $yaml = C4::Context->preference( $syspref );
457     if ( $yaml ) {
458         eval { YAML::XS::Load( Encode::encode_utf8("$yaml\n\n") ); };
459         if ($@) {
460             push @bad_yaml_prefs, $syspref;
461         }
462     }
463 }
464 $template->param( 'bad_yaml_prefs' => \@bad_yaml_prefs ) if @bad_yaml_prefs;
465
466 {
467     my $dbh       = C4::Context->dbh;
468     my $patrons = $dbh->selectall_arrayref(
469         q|select b.borrowernumber from borrowers b join deletedborrowers db on b.borrowernumber=db.borrowernumber|,
470         { Slice => {} }
471     );
472     my $biblios = $dbh->selectall_arrayref(
473         q|select b.biblionumber from biblio b join deletedbiblio db on b.biblionumber=db.biblionumber|,
474         { Slice => {} }
475     );
476     my $items = $dbh->selectall_arrayref(
477         q|select i.itemnumber from items i join deleteditems di on i.itemnumber=di.itemnumber|,
478         { Slice => {} }
479     );
480     my $checkouts = $dbh->selectall_arrayref(
481         q|select i.issue_id from issues i join old_issues oi on i.issue_id=oi.issue_id|,
482         { Slice => {} }
483     );
484     my $holds = $dbh->selectall_arrayref(
485         q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|,
486         { Slice => {} }
487     );
488     if ( @$patrons or @$biblios or @$items or @$checkouts or @$holds ) {
489         $template->param(
490             has_ai_issues => 1,
491             ai_patrons    => $patrons,
492             ai_biblios    => $biblios,
493             ai_items      => $items,
494             ai_checkouts  => $checkouts,
495             ai_holds      => $holds,
496         );
497     }
498 }
499
500 # Circ rule warnings
501 {
502     my $dbh   = C4::Context->dbh;
503     my $units = Koha::CirculationRules->search({ rule_name => 'lengthunit', rule_value => { -not_in => ['days', 'hours'] } });
504
505     if ( $units->count ) {
506         $template->param(
507             warnIssuingRules => 1,
508             ir_units         => $units,
509         );
510     }
511 }
512
513 # Guarantor relationships warnings
514 {
515     my $dbh   = C4::Context->dbh;
516     my ($bad_relationships_count) = $dbh->selectall_arrayref(q{
517         SELECT COUNT(*)
518         FROM (
519             SELECT relationship FROM borrower_relationships WHERE relationship='_bad_data'
520             UNION ALL
521             SELECT relationship FROM borrowers WHERE relationship='_bad_data') a
522     });
523
524     $bad_relationships_count = $bad_relationships_count->[0]->[0];
525
526     my $existing_relationships = $dbh->selectall_arrayref(q{
527           SELECT DISTINCT(relationship)
528           FROM (
529               SELECT relationship FROM borrower_relationships WHERE relationship IS NOT NULL
530               UNION ALL
531               SELECT relationship FROM borrowers WHERE relationship IS NOT NULL) a
532     });
533
534     my %valid_relationships = map { $_ => 1 } split( /,|\|/, C4::Context->preference('borrowerRelationship') );
535     $valid_relationships{ _bad_data } = 1; # we handle this case in another way
536
537     my $wrong_relationships = [ grep { !$valid_relationships{ $_->[0] } } @{$existing_relationships} ];
538     if ( @$wrong_relationships or $bad_relationships_count ) {
539
540         $template->param(
541             warnRelationships => 1,
542         );
543
544         if ( $wrong_relationships ) {
545             $template->param(
546                 wrong_relationships => $wrong_relationships
547             );
548         }
549         if ($bad_relationships_count) {
550             $template->param(
551                 bad_relationships_count => $bad_relationships_count,
552             );
553         }
554     }
555 }
556
557 {
558     # Test 'bcrypt_settings' config for Pseudonymization
559     $template->param( config_bcrypt_settings_no_set => 1 )
560       if C4::Context->preference('Pseudonymization')
561       and not C4::Context->config('bcrypt_settings');
562 }
563
564 {
565     my @frameworkcodes = Koha::BiblioFrameworks->search->get_column('frameworkcode');
566     my @hidden_biblionumbers;
567     push @frameworkcodes, ""; # it's not in the biblio_frameworks table!
568     for my $frameworkcode ( @frameworkcodes ) {
569         my $shouldhidemarc_opac = Koha::Filter::MARC::ViewPolicy->should_hide_marc(
570             {
571                 frameworkcode => $frameworkcode,
572                 interface     => "opac"
573             }
574         );
575         push @hidden_biblionumbers, { frameworkcode => $frameworkcode, interface => 'opac' }
576           if $shouldhidemarc_opac->{biblionumber};
577
578         my $shouldhidemarc_intranet = Koha::Filter::MARC::ViewPolicy->should_hide_marc(
579             {
580                 frameworkcode => $frameworkcode,
581                 interface     => "intranet"
582             }
583         );
584         push @hidden_biblionumbers, { frameworkcode => $frameworkcode, interface => 'intranet' }
585           if $shouldhidemarc_intranet->{biblionumber};
586     }
587     $template->param( warnHiddenBiblionumbers => \@hidden_biblionumbers );
588 }
589
590 {
591     # BackgroundJob - test connection to message broker
592     eval {
593         Koha::BackgroundJob->connect;
594     };
595     if ( $@ ) {
596         warn $@;
597         $template->param( warnConnectBroker => $@ );
598     }
599 }
600
601 my %versions = C4::Context::get_versions();
602
603 $template->param(
604     kohaVersion   => $versions{'kohaVersion'},
605     osVersion     => $versions{'osVersion'},
606     perlPath      => $perl_path,
607     perlVersion   => $versions{'perlVersion'},
608     perlIncPath   => [ map { perlinc => $_ }, @INC ],
609     mysqlVersion  => $versions{'mysqlVersion'},
610     apacheVersion => $versions{'apacheVersion'},
611     zebraVersion  => $zebraVersion,
612     prefBiblioAddsAuthorities => $prefBiblioAddsAuthorities,
613     prefAutoCreateAuthorities => $prefAutoCreateAuthorities,
614     warnPrefBiblioAddsAuthorities => $warnPrefBiblioAddsAuthorities,
615     warnPrefEasyAnalyticalRecords  => $warnPrefEasyAnalyticalRecords,
616     warnPrefAnonymousPatronOPACPrivacy        => $warnPrefAnonymousPatronOPACPrivacy,
617     warnPrefAnonymousPatronAnonSuggestions    => $warnPrefAnonymousPatronAnonSuggestions,
618     warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist     => $warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist,
619     warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist => $warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist,
620     warnPrefKohaAdminEmailAddress => $warnPrefKohaAdminEmailAddress,
621     warnPrefOpacHiddenItems => $warnPrefOpacHiddenItems,
622     errZebraConnection => $errZebraConnection,
623     warnIsRootUser => $warnIsRootUser,
624     warnNoActiveCurrency => $warnNoActiveCurrency,
625     warnNoTemplateCaching => ( C4::Context->config('template_cache_dir') ? 0 : 1 ),
626     xml_config_warnings => \@xml_config_warnings,
627     warnStatisticsFieldsError => $warnStatisticsFieldsError,
628 );
629
630 my @components = ();
631
632 my $perl_modules = C4::Installer::PerlModules->new;
633 $perl_modules->versions_info;
634
635 my @pm_types = qw(missing_pm upgrade_pm current_pm);
636
637 foreach my $pm_type(@pm_types) {
638     my $modules = $perl_modules->get_attr($pm_type);
639     foreach (@$modules) {
640         my ($module, $stats) = each %$_;
641         push(
642             @components,
643             {
644                 name    => $module,
645                 version => $stats->{'cur_ver'},
646                 missing => ($pm_type eq 'missing_pm' ? 1 : 0),
647                 upgrade => ($pm_type eq 'upgrade_pm' ? 1 : 0),
648                 current => ($pm_type eq 'current_pm' ? 1 : 0),
649                 require => $stats->{'required'},
650                 reqversion => $stats->{'min_ver'},
651                 maxversion => $stats->{'max_ver'},
652                 excversion => $stats->{'exc_ver'}
653             }
654         );
655     }
656 }
657
658 @components = sort {$a->{'name'} cmp $b->{'name'}} @components;
659
660 my $counter=0;
661 my $row = [];
662 my $table = [];
663 foreach (@components) {
664     push (@$row, $_);
665     unless (++$counter % 4) {
666         push (@$table, {row => $row});
667         $row = [];
668     }
669 }
670 # Processing the last line (if there are any modules left)
671 if (scalar(@$row) > 0) {
672     # Extending $row to the table size
673     $$row[3] = '';
674     # Pushing the last line
675     push (@$table, {row => $row});
676 }
677 ## ## $table
678
679 $template->param( table => $table );
680
681
682 ## ------------------------------------------
683 ## Koha contributions
684 my $docdir;
685 if ( defined C4::Context->config('docdir') ) {
686     $docdir = C4::Context->config('docdir');
687 } else {
688     # if no <docdir> is defined in koha-conf.xml, use the default location
689     # this is a work-around to stop breakage on upgraded Kohas, bug 8911
690     $docdir = C4::Context->config('intranetdir') . '/docs';
691 }
692
693 ## Release teams
694 my $teams =
695   -e "$docdir" . "/teams.yaml"
696   ? YAML::XS::LoadFile( "$docdir" . "/teams.yaml" )
697   : {};
698 my $dev_team = (sort {$b <=> $a} (keys %{$teams->{team}}))[0];
699 my $short_version = substr($versions{'kohaVersion'},0,5);
700 my $minor = substr($versions{'kohaVersion'},3,2);
701 my $development_version = ( $minor eq '05' || $minor eq '11' ) ? 0 : 1;
702 $template->param( short_version => $short_version );
703 $template->param( development_version => $development_version );
704
705 ## Contributors
706 my $contributors =
707   -e "$docdir" . "/contributors.yaml"
708   ? YAML::XS::LoadFile( "$docdir" . "/contributors.yaml" )
709   : {};
710 delete $contributors->{_others_};
711 for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) {
712     for my $role ( keys %{ $teams->{team}->{$version} } ) {
713         my $normalized_role = "$role";
714         $normalized_role =~ s/s$//;
715         if ( ref( $teams->{team}->{$version}->{$role} ) eq 'ARRAY' ) {
716             for my $contributor ( @{ $teams->{team}->{$version}->{$role} } ) {
717                 my $name = $contributor->{name};
718                 # Add role to contributors
719                 push @{ $contributors->{$name}->{roles}->{$normalized_role} },
720                   $version;
721                 # Add openhub to teams
722                 if ( exists( $contributors->{$name}->{openhub} ) ) {
723                     $contributor->{openhub} = $contributors->{$name}->{openhub};
724                 }
725             }
726         }
727         elsif ( $role ne 'release_date' ) {
728             my $name = $teams->{team}->{$version}->{$role}->{name};
729             # Add role to contributors
730             push @{ $contributors->{$name}->{roles}->{$normalized_role} },
731               $version;
732             # Add openhub to teams
733             if ( exists( $contributors->{$name}->{openhub} ) ) {
734                 $teams->{team}->{$version}->{$role}->{openhub} =
735                   $contributors->{$name}->{openhub};
736             }
737         }
738         else {
739             $teams->{team}->{$version}->{$role} = DateTime->from_epoch( epoch => $teams->{team}->{$version}->{$role});
740         }
741     }
742 }
743
744 ## Create last name ordered array of people from contributors
745 my @people = map {
746     { name => $_, ( $contributors->{$_} ? %{ $contributors->{$_} } : () ) }
747 } sort {
748   my ($alast) = $a =~ /(\S+)$/;
749   my ($blast) = $b =~ /(\S+)$/;
750   my $cmp = lc($alast||"") cmp lc($blast||"");
751   return $cmp if $cmp;
752
753   my ($a2last) = $a =~ /(\S+)\s\S+$/;
754   my ($b2last) = $b =~ /(\S+)\s\S+$/;
755   lc($a2last||"") cmp lc($b2last||"");
756 } keys %$contributors;
757
758 $template->param( contributors => \@people );
759 $template->param( maintenance_team => $teams->{team}->{$dev_team} );
760 $template->param( release_team => $teams->{team}->{$short_version} );
761
762 ## Timeline
763 if ( open( my $file, "<:encoding(UTF-8)", "$docdir" . "/history.txt" ) ) {
764
765     my $i = 0;
766
767     my @rows2 = ();
768     my $row2  = [];
769
770     my @lines = <$file>;
771     close($file);
772
773     shift @lines; #remove header row
774
775     foreach (@lines) {
776         my ( $epoch, $date, $desc, $tag ) = split(/\t/);
777         if(!$desc && $date=~ /(?<=\d{4})\s+/) {
778             ($date, $desc)= ($`, $');
779         }
780         push(
781             @rows2,
782             {
783                 date => $date,
784                 desc => $desc,
785             }
786         );
787     }
788
789     my $table2 = [];
790     #foreach my $row2 (@rows2) {
791     foreach  (@rows2) {
792         push (@$row2, $_);
793         push( @$table2, { row2 => $row2 } );
794         $row2 = [];
795     }
796
797     $template->param( table2 => $table2 );
798 } else {
799     $template->param( timeline_read_error => 1 );
800 }
801
802 output_html_with_http_headers $query, $cookie, $template->output;