X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=about.pl;h=ca8ff9f28f57829f67a1cfbf835edcbaf3b51c03;hb=c474b9fd30812b85255795de88e74fd87a1258c1;hp=34c98ef8833d3a4f62c42fd5880db82bf6093ec4;hpb=11049f9d0267f7b1dcf66f148c82b36a25284954;p=koha.git diff --git a/about.pl b/about.pl index 34c98ef883..ca8ff9f28f 100755 --- a/about.pl +++ b/about.pl @@ -20,10 +20,10 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); +use List::MoreUtils qw/ any /; use LWP::Simple; use XML::Simple; use Config; @@ -34,6 +34,10 @@ use C4::Context; use C4::Installer; use Koha; +use Koha::Acquisition::Currencies; +use Koha::Patrons; +use Koha::Config::SysPrefs; +use C4::Members::Statistics; #use Smart::Comments '####'; @@ -49,20 +53,32 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); -my $kohaVersion = Koha::version(); -my $osVersion = `uname -a`; my $perl_path = $^X; if ($^O ne 'VMS') { $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i; } -my $perlVersion = $]; -my $mysqlVersion = `mysql -V`; -my $apacheVersion = `httpd -v 2> /dev/null`; -$apacheVersion = `httpd2 -v 2> /dev/null` unless $apacheVersion; -$apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion; + my $zebraVersion = `zebraidx -V`; +# Check running PSGI env +if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) { + $template->param( + is_psgi => 1, + psgi_server => ($ENV{ PLACK_ENV }) ? "Plack ($ENV{PLACK_ENV})" : + ($ENV{ MOD_PERL }) ? "mod_perl ($ENV{MOD_PERL})" : + 'Unknown' + ); +} + # Additional system information for warnings + +my $warnStatisticsFieldsError; +my $prefStatisticsFields = C4::Context->preference('StatisticsFields'); +if ($prefStatisticsFields) { + $warnStatisticsFieldsError = $prefStatisticsFields + unless ( $prefStatisticsFields eq C4::Members::Statistics->get_fields() ); +} + my $prefAutoCreateAuthorities = C4::Context->preference('AutoCreateAuthorities'); my $prefBiblioAddsAuthorities = C4::Context->preference('BiblioAddsAuthorities'); my $warnPrefBiblioAddsAuthorities = ( $prefAutoCreateAuthorities && ( !$prefBiblioAddsAuthorities) ); @@ -75,11 +91,14 @@ my $warnPrefAnonymousPatron = ( and not C4::Context->preference('AnonymousPatron') ); +my $anonymous_patron = Koha::Patrons->find( C4::Context->preference('AnonymousPatron') ); +my $warnPrefAnonymousPatron_PatronDoesNotExist = ( not $anonymous_patron and Koha::Patrons->search({ privacy => 2 })->count ); + my $errZebraConnection = C4::Context->Zconn("biblioserver",0)->errcode(); my $warnIsRootUser = (! $loggedinuser); -my $warnNoActiveCurrency = (! defined C4::Budgets->GetCurrency()); +my $warnNoActiveCurrency = (! defined Koha::Acquisition::Currencies->get_active); my @xml_config_warnings; my $context = new C4::Context; @@ -150,6 +169,25 @@ if ( (C4::Context->config('zebra_auth_index_mode') eq 'grs1') && ($context->{'se }; } +if ( ! defined C4::Context->config('log4perl_conf') ) { + push @xml_config_warnings, { + error => 'log4perl_entry_missing' + } +} + +if ( ! defined C4::Context->config('upload_path') ) { + if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) { + # OPACBaseURL seems to be set + push @xml_config_warnings, { + error => 'uploadpath_entry_missing' + } + } else { + push @xml_config_warnings, { + error => 'uploadpath_and_opacbaseurl_entry_missing' + } + } +} + # Test QueryParser configuration sanity if ( C4::Context->preference( 'UseQueryParser' ) ) { # Get the QueryParser configuration file name @@ -192,24 +230,56 @@ if ( !defined C4::Context->config('use_zebra_facets') ) { } } +# Sco Patron should not contain any other perms than circulate => self_checkout +if ( C4::Context->preference('WebBasedSelfCheck') + and C4::Context->preference('AutoSelfCheckAllowed') +) { + my $userid = C4::Context->preference('AutoSelfCheckID'); + my $all_permissions = C4::Auth::get_user_subpermissions( $userid ); + my ( $has_self_checkout_perm, $has_other_permissions ); + while ( my ( $module, $permissions ) = each %$all_permissions ) { + if ( $module eq 'circulate' ) { + while ( my ( $permission, $flag ) = each %$permissions ) { + if ( $permission eq 'self_checkout' ) { + $has_self_checkout_perm = 1; + } else { + $has_other_permissions = 1; + } + } + } else { + $has_other_permissions = 1; + } + } + $template->param( + AutoSelfCheckPatronDoesNotHaveSelfCheckPerm => not ( $has_self_checkout_perm ), + AutoSelfCheckPatronHasTooManyPerm => $has_other_permissions, + ); + + +} + +my %versions = C4::Context::get_versions(); + $template->param( - kohaVersion => $kohaVersion, - osVersion => $osVersion, + kohaVersion => $versions{'kohaVersion'}, + osVersion => $versions{'osVersion'}, perlPath => $perl_path, - perlVersion => $perlVersion, + perlVersion => $versions{'perlVersion'}, perlIncPath => [ map { perlinc => $_ }, @INC ], - mysqlVersion => $mysqlVersion, - apacheVersion => $apacheVersion, + mysqlVersion => $versions{'mysqlVersion'}, + apacheVersion => $versions{'apacheVersion'}, zebraVersion => $zebraVersion, prefBiblioAddsAuthorities => $prefBiblioAddsAuthorities, prefAutoCreateAuthorities => $prefAutoCreateAuthorities, warnPrefBiblioAddsAuthorities => $warnPrefBiblioAddsAuthorities, warnPrefEasyAnalyticalRecords => $warnPrefEasyAnalyticalRecords, warnPrefAnonymousPatron => $warnPrefAnonymousPatron, + warnPrefAnonymousPatron_PatronDoesNotExist => $warnPrefAnonymousPatron_PatronDoesNotExist, errZebraConnection => $errZebraConnection, warnIsRootUser => $warnIsRootUser, warnNoActiveCurrency => $warnNoActiveCurrency, xml_config_warnings => \@xml_config_warnings, + warnStatisticsFieldsError => $warnStatisticsFieldsError, ); my @components = ();