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