X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=about.pl;h=31b30db17037659ddf10fa451a84d4953fd2ba16;hb=cf1904bb0844da28d49c1543f233afed35ae0554;hp=7ea8acd073cdc3c7662e2019041769f9db988525;hpb=b068259521ebea158e8b664cfbab46d5a65495ff;p=srvgit diff --git a/about.pl b/about.pl index 7ea8acd073..31b30db170 100755 --- a/about.pl +++ b/about.pl @@ -24,12 +24,15 @@ use Modern::Perl; use CGI qw ( -utf8 ); use DateTime::TimeZone; +use File::Spec; use List::MoreUtils qw/ any /; use LWP::Simple; +use Module::Load::Conditional qw(can_load); use XML::Simple; use Config; use Search::Elasticsearch; use Try::Tiny; +use YAML qw/LoadFile/; use C4::Output; use C4::Auth; @@ -37,6 +40,7 @@ use C4::Context; use C4::Installer; use Koha; +use Koha::DateUtils qw(dt_from_string output_pref); use Koha::Acquisition::Currencies; use Koha::Patron::Categories; use Koha::Patrons; @@ -62,9 +66,9 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); -my $config_timezone = C4::Context->config('timezone'); +my $config_timezone = C4::Context->config('timezone') // ''; my $config_invalid = !DateTime::TimeZone->is_valid_name( $config_timezone ); -my $env_timezone = $ENV{TZ}; +my $env_timezone = $ENV{TZ} // ''; my $env_invalid = !DateTime::TimeZone->is_valid_name( $env_timezone ); my $actual_bad_tz_fallback = 0; @@ -81,14 +85,18 @@ elsif ( $config_timezone eq '' && } my $time_zone = { - actual => C4::Context->timezone(), + actual => C4::Context->tz->name, actual_bad_tz_fallback => $actual_bad_tz_fallback, config => $config_timezone, config_invalid => $config_invalid, environment => $env_timezone, environment_invalid => $env_invalid }; -$template->param( 'time_zone' => $time_zone ); + +$template->param( + time_zone => $time_zone, + current_date_and_time => output_pref({ dt => dt_from_string(), dateformat => 'iso' }) +); my $perl_path = $^X; if ($^O ne 'VMS') { @@ -169,58 +177,16 @@ my @xml_config_warnings; my $context = new C4::Context; -if ( ! defined C4::Context->config('zebra_bib_index_mode') ) { - push @xml_config_warnings, { - error => 'zebra_bib_index_mode_warn' - }; - if ($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) { - push @xml_config_warnings, { - error => 'zebra_bib_mode_seems_grs1' - }; - } - else { - push @xml_config_warnings, { - error => 'zebra_bib_mode_seems_dom' - }; - } -} else { - push @xml_config_warnings, { error => 'zebra_bib_grs_warn' } - if C4::Context->config('zebra_bib_index_mode') eq 'grs1'; -} - -if ( (C4::Context->config('zebra_bib_index_mode') eq 'dom') && - ($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) ) { - - push @xml_config_warnings, { - error => 'zebra_bib_index_mode_mismatch_warn' - }; -} - -if ( (C4::Context->config('zebra_bib_index_mode') eq 'grs1') && - ($context->{'server'}->{'biblioserver'}->{'config'} =~ /zebra-biblios-dom.cfg/) ) { - - push @xml_config_warnings, { - error => 'zebra_bib_index_mode_mismatch_warn' - }; +if ( C4::Context->config('zebra_bib_index_mode') + and C4::Context->config('zebra_bib_index_mode') eq 'grs1' ) +{ + push @xml_config_warnings, { error => 'zebra_bib_index_mode_is_grs1' }; } -if ( ! defined C4::Context->config('zebra_auth_index_mode') ) { - push @xml_config_warnings, { - error => 'zebra_auth_index_mode_warn' - }; - if ($context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/) { - push @xml_config_warnings, { - error => 'zebra_auth_mode_seems_grs1' - }; - } - else { - push @xml_config_warnings, { - error => 'zebra_auth_mode_seems_dom' - }; - } -} else { - push @xml_config_warnings, { error => 'zebra_auth_grs_warn' } - if C4::Context->config('zebra_auth_index_mode') eq 'grs1'; +if ( C4::Context->config('zebra_auth_index_mode') + and C4::Context->config('zebra_auth_index_mode') eq 'grs1' ) +{ + push @xml_config_warnings, { error => 'zebra_auth_index_mode_is_grs1' }; } if ( (C4::Context->config('zebra_auth_index_mode') eq 'dom') && ($context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/) ) { @@ -229,12 +195,6 @@ if ( (C4::Context->config('zebra_auth_index_mode') eq 'dom') && ($context->{'ser }; } -if ( (C4::Context->config('zebra_auth_index_mode') eq 'grs1') && ($context->{'server'}->{'authorityserver'}->{'config'} =~ /zebra-authorities-dom.cfg/) ) { - push @xml_config_warnings, { - error => 'zebra_auth_index_mode_mismatch_warn' - }; -} - if ( ! defined C4::Context->config('log4perl_conf') ) { push @xml_config_warnings, { error => 'log4perl_entry_missing' @@ -254,6 +214,14 @@ if ( ! defined C4::Context->config('upload_path') ) { } } +if ( ! C4::Context->config('tmp_path') ) { + my $temporary_directory = C4::Context::temporary_directory; + push @xml_config_warnings, { + error => 'tmp_path_missing', + effective_tmp_dir => $temporary_directory, + } +} + # Test QueryParser configuration sanity if ( C4::Context->preference( 'UseQueryParser' ) ) { # Get the QueryParser configuration file name @@ -286,14 +254,6 @@ if ( C4::Context->preference( 'UseQueryParser' ) ) { # Test Zebra facets configuration if ( !defined C4::Context->config('use_zebra_facets') ) { push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' }; -} else { - if ( C4::Context->config('use_zebra_facets') && - C4::Context->config('zebra_bib_index_mode') ) { - # use_zebra_facets works with DOM - push @xml_config_warnings, { - error => 'use_zebra_facets_needs_dom' - } if C4::Context->config('zebra_bib_index_mode') ne 'dom' ; - } } # ILL module checks @@ -323,6 +283,13 @@ if ( C4::Context->preference('ILLModule') ) { $warnILLConfiguration = 1; } + + if ( !$ill_config_from_file->{branch} ) { + # branch not defined + $template->param( ill_branch_not_defined => 1 ); + $warnILLConfiguration = 1; + } + $template->param( warnILLConfiguration => $warnILLConfiguration ); } @@ -386,6 +353,13 @@ if ( C4::Context->preference('SearchEngine') eq 'Elasticsearch' ) { } } +if ( C4::Context->preference('RESTOAuth2ClientCredentials') ) { + # Do we have the required deps? + unless ( can_load( modules => { 'Net::OAuth2::AuthorizationServer' => undef }) ) { + $template->param( oauth2_missing_deps => 1 ); + } +} + # Sco Patron should not contain any other perms than circulate => self_checkout if ( C4::Context->preference('WebBasedSelfCheck') and C4::Context->preference('AutoSelfCheckAllowed') @@ -412,6 +386,31 @@ if ( C4::Context->preference('WebBasedSelfCheck') ); } +# Test YAML system preferences +# FIXME: This is list of current YAML formatted prefs, should by type of preference +my @yaml_prefs = ( + "UpdateNotForLoanStatusOnCheckin", + "OpacHiddenItems", + "BibtexExportAdditionalFields", + "RisExportAdditionalFields", + "UpdateItemWhenLostFromHoldList", + "MarcFieldsToOrder", + "MarcItemFieldsToOrder", + "UpdateitemLocationOnCheckin", + "ItemsDeniedRenewal" +); +my @bad_yaml_prefs; +foreach my $syspref (@yaml_prefs) { + my $yaml = C4::Context->preference( $syspref ); + if ( $yaml ) { + eval { YAML::Load( "$yaml\n\n" ); }; + if ($@) { + push @bad_yaml_prefs, $syspref; + } + } +} +$template->param( 'bad_yaml_prefs' => \@bad_yaml_prefs ) if @bad_yaml_prefs; + { my $dbh = C4::Context->dbh; my $patrons = $dbh->selectall_arrayref( @@ -445,6 +444,68 @@ if ( C4::Context->preference('WebBasedSelfCheck') ); } } + +# Circ rule warnings +{ + my $dbh = C4::Context->dbh; + my $units = $dbh->selectall_arrayref( + q|SELECT branchcode, categorycode, itemtype, lengthunit FROM issuingrules WHERE lengthunit NOT IN ( 'days', 'hours' ); |, + { Slice => {} } + ); + + if (@$units) { + $template->param( + warnIssuingRules => 1, + ir_units => $units, + ); + } +} + +# Guarantor relationships warnings +{ + my $dbh = C4::Context->dbh; + my ($bad_relationships_count) = $dbh->selectall_arrayref(q{ + SELECT COUNT(*) + FROM ( + SELECT relationship FROM borrower_relationships WHERE relationship='_bad_data' + UNION ALL + SELECT relationship FROM borrowers WHERE relationship='_bad_data') a + }); + + $bad_relationships_count = $bad_relationships_count->[0]->[0]; + + my @existing_relationships = $dbh->selectall_array(q{ + SELECT DISTINCT(relationship) + FROM ( + SELECT relationship FROM borrower_relationships WHERE relationship IS NOT NULL + UNION ALL + SELECT relationship FROM borrowers WHERE relationship IS NOT NULL) a + }); + + my %valid_relationships = map { $_ => 1 } split( /,|\|/, C4::Context->preference('borrowerRelationship') ); + $valid_relationships{ _bad_data } = 1; # we handle this case in another way + + my @wrong_relationships = grep { !$valid_relationships{ $_->[0] } } @existing_relationships; + + if ( @wrong_relationships or $bad_relationships_count ) { + + $template->param( + warnRelationships => 1, + ); + + if ( @wrong_relationships ) { + $template->param( + wrong_relationships => \@wrong_relationships + ); + } + if ($bad_relationships_count) { + $template->param( + bad_relationships_count => $bad_relationships_count, + ); + } + } +} + my %versions = C4::Context::get_versions(); $template->param( @@ -521,9 +582,7 @@ $template->param( table => $table ); ## ------------------------------------------ -## Koha time line code - -#get file location +## Koha contributions my $docdir; if ( defined C4::Context->config('docdir') ) { $docdir = C4::Context->config('docdir'); @@ -533,6 +592,70 @@ if ( defined C4::Context->config('docdir') ) { $docdir = C4::Context->config('intranetdir') . '/docs'; } +## Release teams +my $teams = + -e "$docdir" . "/teams.yaml" + ? LoadFile( "$docdir" . "/teams.yaml" ) + : {}; +my $dev_team = (sort {$b <=> $a} (keys %{$teams->{team}}))[0]; +my $short_version = substr($versions{'kohaVersion'},0,5); +my $minor = substr($versions{'kohaVersion'},3,2); +my $development_version = ( $minor eq '05' || $minor eq '11' ) ? 0 : 1; +$template->param( short_version => $short_version ); +$template->param( development_version => $development_version ); + +## Contributors +my $contributors = + -e "$docdir" . "/contributors.yaml" + ? LoadFile( "$docdir" . "/contributors.yaml" ) + : {}; +for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) { + for my $role ( keys %{ $teams->{team}->{$version} } ) { + my $normalized_role = "$role"; + $normalized_role =~ s/s$//; + if ( ref( $teams->{team}->{$version}->{$role} ) eq 'ARRAY' ) { + for my $contributor ( @{ $teams->{team}->{$version}->{$role} } ) { + my $name = $contributor->{name}; + # Add role to contributors + push @{ $contributors->{$name}->{roles}->{$normalized_role} }, + $version; + # Add openhub to teams + if ( exists( $contributors->{$name}->{openhub} ) ) { + $contributor->{openhub} = $contributors->{$name}->{openhub}; + } + } + } + elsif ( $role ne 'release_date' ) { + my $name = $teams->{team}->{$version}->{$role}->{name}; + # Add role to contributors + push @{ $contributors->{$name}->{roles}->{$normalized_role} }, + $version; + # Add openhub to teams + if ( exists( $contributors->{$name}->{openhub} ) ) { + $teams->{team}->{$version}->{$role}->{openhub} = + $contributors->{$name}->{openhub}; + } + } + else { + $teams->{team}->{$version}->{$role} = DateTime->from_epoch( epoch => $teams->{team}->{$version}->{$role}); + } + } +} + +## Create last name ordered array of people from contributors +my @people = map { + { name => $_, ( $contributors->{$_} ? %{ $contributors->{$_} } : () ) } +} sort { + my ($alast) = ( split( /\s/, $a ) )[-1]; + my ($blast) = ( split( /\s/, $b ) )[-1]; + lc($alast) cmp lc($blast) +} keys %{$contributors}; + +$template->param( contributors => \@people ); +$template->param( maintenance_team => $teams->{team}->{$dev_team} ); +$template->param( release_team => $teams->{team}->{$short_version} ); + +## Timeline if ( open( my $file, "<:encoding(UTF-8)", "$docdir" . "/history.txt" ) ) { my $i = 0;