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