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