Bug 27655: Add barcode "columnname" to "column_settings.yml"
[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         my $es_status->{version} = $es->info->{version}->{number};
345
346         foreach my $index ( @indexes ) {
347             my $count;
348             try {
349                 $count = $es->indices->stats( index => $index )
350                       ->{_all}{primaries}{docs}{count};
351             }
352             catch {
353                 if ( ref($_) eq 'Search::Elasticsearch::Error::Missing' ) {
354                     push @{ $es_status->{errors} }, "Index not found ($index)";
355                     $count = -1;
356                 }
357                 elsif ( ref($_) eq 'Search::Elasticsearch::Error::NoNodes' ) {
358                     $es_running = 0;
359                 }
360                 else {
361                     # TODO: when time comes, we will cover more use cases
362                     die $_;
363                 }
364             };
365
366             push @{ $es_status->{indexes} },
367               {
368                 index_name => $index,
369                 count      => $count
370               };
371         }
372         $es_status->{running} = $es_running;
373
374         $template->param( elasticsearch_status => $es_status );
375     }
376 }
377
378 if ( C4::Context->preference('RESTOAuth2ClientCredentials') ) {
379     # Do we have the required deps?
380     unless ( can_load( modules => { 'Net::OAuth2::AuthorizationServer' => undef }) ) {
381         $template->param( oauth2_missing_deps => 1 );
382     }
383 }
384
385 # Sco Patron should not contain any other perms than circulate => self_checkout
386 if (  C4::Context->preference('WebBasedSelfCheck')
387       and C4::Context->preference('AutoSelfCheckAllowed')
388 ) {
389     my $userid = C4::Context->preference('AutoSelfCheckID');
390     my $all_permissions = C4::Auth::get_user_subpermissions( $userid );
391     my ( $has_self_checkout_perm, $has_other_permissions );
392     while ( my ( $module, $permissions ) = each %$all_permissions ) {
393         if ( $module eq 'self_check' ) {
394             while ( my ( $permission, $flag ) = each %$permissions ) {
395                 if ( $permission eq 'self_checkout_module' ) {
396                     $has_self_checkout_perm = 1;
397                 } else {
398                     $has_other_permissions = 1;
399                 }
400             }
401         } else {
402             $has_other_permissions = 1;
403         }
404     }
405     $template->param(
406         AutoSelfCheckPatronDoesNotHaveSelfCheckPerm => not ( $has_self_checkout_perm ),
407         AutoSelfCheckPatronHasTooManyPerm => $has_other_permissions,
408     );
409 }
410
411 if ( C4::Context->preference('EnablePayPalOpacPayments') ) {
412     $template->param( paypal_enabled => 1 );
413 }
414
415 # Test YAML system preferences
416 # FIXME: This is list of current YAML formatted prefs, should by type of preference
417 my @yaml_prefs = (
418     "UpdateNotForLoanStatusOnCheckin",
419     "OpacHiddenItems",
420     "BibtexExportAdditionalFields",
421     "RisExportAdditionalFields",
422     "UpdateItemWhenLostFromHoldList",
423     "MarcFieldsToOrder",
424     "MarcItemFieldsToOrder",
425     "UpdateitemLocationOnCheckin",
426     "ItemsDeniedRenewal"
427 );
428 my @bad_yaml_prefs;
429 foreach my $syspref (@yaml_prefs) {
430     my $yaml = C4::Context->preference( $syspref );
431     if ( $yaml ) {
432         eval { YAML::Load( "$yaml\n\n" ); };
433         if ($@) {
434             push @bad_yaml_prefs, $syspref;
435         }
436     }
437 }
438 $template->param( 'bad_yaml_prefs' => \@bad_yaml_prefs ) if @bad_yaml_prefs;
439
440 {
441     my $dbh       = C4::Context->dbh;
442     my $patrons = $dbh->selectall_arrayref(
443         q|select b.borrowernumber from borrowers b join deletedborrowers db on b.borrowernumber=db.borrowernumber|,
444         { Slice => {} }
445     );
446     my $biblios = $dbh->selectall_arrayref(
447         q|select b.biblionumber from biblio b join deletedbiblio db on b.biblionumber=db.biblionumber|,
448         { Slice => {} }
449     );
450     my $items = $dbh->selectall_arrayref(
451         q|select i.itemnumber from items i join deleteditems di on i.itemnumber=di.itemnumber|,
452         { Slice => {} }
453     );
454     my $checkouts = $dbh->selectall_arrayref(
455         q|select i.issue_id from issues i join old_issues oi on i.issue_id=oi.issue_id|,
456         { Slice => {} }
457     );
458     my $holds = $dbh->selectall_arrayref(
459         q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|,
460         { Slice => {} }
461     );
462     if ( @$patrons or @$biblios or @$items or @$checkouts or @$holds ) {
463         $template->param(
464             has_ai_issues => 1,
465             ai_patrons    => $patrons,
466             ai_biblios    => $biblios,
467             ai_items      => $items,
468             ai_checkouts  => $checkouts,
469             ai_holds      => $holds,
470         );
471     }
472 }
473
474 # Circ rule warnings
475 {
476     my $dbh   = C4::Context->dbh;
477     my $units = Koha::CirculationRules->search({ rule_name => 'lengthunit', rule_value => { -not_in => ['days', 'hours'] } });
478
479     if ( $units->count ) {
480         $template->param(
481             warnIssuingRules => 1,
482             ir_units         => $units,
483         );
484     }
485 }
486
487 # Guarantor relationships warnings
488 {
489     my $dbh   = C4::Context->dbh;
490     my ($bad_relationships_count) = $dbh->selectall_arrayref(q{
491         SELECT COUNT(*)
492         FROM (
493             SELECT relationship FROM borrower_relationships WHERE relationship='_bad_data'
494             UNION ALL
495             SELECT relationship FROM borrowers WHERE relationship='_bad_data') a
496     });
497
498     $bad_relationships_count = $bad_relationships_count->[0]->[0];
499
500     my $existing_relationships = $dbh->selectall_arrayref(q{
501           SELECT DISTINCT(relationship)
502           FROM (
503               SELECT relationship FROM borrower_relationships WHERE relationship IS NOT NULL
504               UNION ALL
505               SELECT relationship FROM borrowers WHERE relationship IS NOT NULL) a
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     errZebraConnection => $errZebraConnection,
596     warnIsRootUser => $warnIsRootUser,
597     warnNoActiveCurrency => $warnNoActiveCurrency,
598     warnNoTemplateCaching => ( C4::Context->config('template_cache_dir') ? 0 : 1 ),
599     xml_config_warnings => \@xml_config_warnings,
600     warnStatisticsFieldsError => $warnStatisticsFieldsError,
601 );
602
603 my @components = ();
604
605 my $perl_modules = C4::Installer::PerlModules->new;
606 $perl_modules->versions_info;
607
608 my @pm_types = qw(missing_pm upgrade_pm current_pm);
609
610 foreach my $pm_type(@pm_types) {
611     my $modules = $perl_modules->get_attr($pm_type);
612     foreach (@$modules) {
613         my ($module, $stats) = each %$_;
614         push(
615             @components,
616             {
617                 name    => $module,
618                 version => $stats->{'cur_ver'},
619                 missing => ($pm_type eq 'missing_pm' ? 1 : 0),
620                 upgrade => ($pm_type eq 'upgrade_pm' ? 1 : 0),
621                 current => ($pm_type eq 'current_pm' ? 1 : 0),
622                 require => $stats->{'required'},
623                 reqversion => $stats->{'min_ver'},
624                 maxversion => $stats->{'max_ver'},
625                 excversion => $stats->{'exc_ver'}
626             }
627         );
628     }
629 }
630
631 @components = sort {$a->{'name'} cmp $b->{'name'}} @components;
632
633 my $counter=0;
634 my $row = [];
635 my $table = [];
636 foreach (@components) {
637     push (@$row, $_);
638     unless (++$counter % 4) {
639         push (@$table, {row => $row});
640         $row = [];
641     }
642 }
643 # Processing the last line (if there are any modules left)
644 if (scalar(@$row) > 0) {
645     # Extending $row to the table size
646     $$row[3] = '';
647     # Pushing the last line
648     push (@$table, {row => $row});
649 }
650 ## ## $table
651
652 $template->param( table => $table );
653
654
655 ## ------------------------------------------
656 ## Koha contributions
657 my $docdir;
658 if ( defined C4::Context->config('docdir') ) {
659     $docdir = C4::Context->config('docdir');
660 } else {
661     # if no <docdir> is defined in koha-conf.xml, use the default location
662     # this is a work-around to stop breakage on upgraded Kohas, bug 8911
663     $docdir = C4::Context->config('intranetdir') . '/docs';
664 }
665
666 ## Release teams
667 my $teams =
668   -e "$docdir" . "/teams.yaml"
669   ? LoadFile( "$docdir" . "/teams.yaml" )
670   : {};
671 my $dev_team = (sort {$b <=> $a} (keys %{$teams->{team}}))[0];
672 my $short_version = substr($versions{'kohaVersion'},0,5);
673 my $minor = substr($versions{'kohaVersion'},3,2);
674 my $development_version = ( $minor eq '05' || $minor eq '11' ) ? 0 : 1;
675 $template->param( short_version => $short_version );
676 $template->param( development_version => $development_version );
677
678 ## Contributors
679 my $contributors =
680   -e "$docdir" . "/contributors.yaml"
681   ? LoadFile( "$docdir" . "/contributors.yaml" )
682   : {};
683 for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) {
684     for my $role ( keys %{ $teams->{team}->{$version} } ) {
685         my $normalized_role = "$role";
686         $normalized_role =~ s/s$//;
687         if ( ref( $teams->{team}->{$version}->{$role} ) eq 'ARRAY' ) {
688             for my $contributor ( @{ $teams->{team}->{$version}->{$role} } ) {
689                 my $name = $contributor->{name};
690                 # Add role to contributors
691                 push @{ $contributors->{$name}->{roles}->{$normalized_role} },
692                   $version;
693                 # Add openhub to teams
694                 if ( exists( $contributors->{$name}->{openhub} ) ) {
695                     $contributor->{openhub} = $contributors->{$name}->{openhub};
696                 }
697             }
698         }
699         elsif ( $role ne 'release_date' ) {
700             my $name = $teams->{team}->{$version}->{$role}->{name};
701             # Add role to contributors
702             push @{ $contributors->{$name}->{roles}->{$normalized_role} },
703               $version;
704             # Add openhub to teams
705             if ( exists( $contributors->{$name}->{openhub} ) ) {
706                 $teams->{team}->{$version}->{$role}->{openhub} =
707                   $contributors->{$name}->{openhub};
708             }
709         }
710         else {
711             $teams->{team}->{$version}->{$role} = DateTime->from_epoch( epoch => $teams->{team}->{$version}->{$role});
712         }
713     }
714 }
715
716 ## Create last name ordered array of people from contributors
717 my @people = map {
718     { name => $_, ( $contributors->{$_} ? %{ $contributors->{$_} } : () ) }
719 } sort {
720     my ($alast) = ( split( /\s/, $a ) )[-1];
721     my ($blast) = ( split( /\s/, $b ) )[-1];
722     lc($alast) cmp lc($blast)
723 } keys %{$contributors};
724
725 $template->param( contributors => \@people );
726 $template->param( maintenance_team => $teams->{team}->{$dev_team} );
727 $template->param( release_team => $teams->{team}->{$short_version} );
728
729 ## Timeline
730 if ( open( my $file, "<:encoding(UTF-8)", "$docdir" . "/history.txt" ) ) {
731
732     my $i = 0;
733
734     my @rows2 = ();
735     my $row2  = [];
736
737     my @lines = <$file>;
738     close($file);
739
740     shift @lines; #remove header row
741
742     foreach (@lines) {
743         my ( $epoch, $date, $desc, $tag ) = split(/\t/);
744         if(!$desc && $date=~ /(?<=\d{4})\s+/) {
745             ($date, $desc)= ($`, $');
746         }
747         push(
748             @rows2,
749             {
750                 date => $date,
751                 desc => $desc,
752             }
753         );
754     }
755
756     my $table2 = [];
757     #foreach my $row2 (@rows2) {
758     foreach  (@rows2) {
759         push (@$row2, $_);
760         push( @$table2, { row2 => $row2 } );
761         $row2 = [];
762     }
763
764     $template->param( table2 => $table2 );
765 } else {
766     $template->param( timeline_read_error => 1 );
767 }
768
769 output_html_with_http_headers $query, $cookie, $template->output;