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