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