Bug 25898: Prohibit indirect object notation
[koha.git] / C4 / Context.pm
blob58a6ad5e05624e4da5578811e3b8c9d357867bfc
1 package C4::Context;
3 # Copyright 2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use vars qw($AUTOLOAD $context @context_stack);
23 BEGIN {
24 if ($ENV{'HTTP_USER_AGENT'}) {
25 require CGI::Carp;
26 # FIXME for future reference, CGI::Carp doc says
27 # "Note that fatalsToBrowser does not work with mod_perl version 2.0 and higher."
28 import CGI::Carp qw(fatalsToBrowser);
29 sub handle_errors {
30 my $msg = shift;
31 my $debug_level;
32 eval {C4::Context->dbh();};
33 if ($@){
34 $debug_level = 1;
36 else {
37 $debug_level = C4::Context->preference("DebugLevel");
40 print q(<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
41 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
42 <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
43 <head><title>Koha Error</title></head>
44 <body>
46 if ($debug_level eq "2"){
47 # debug 2 , print extra info too.
48 my %versions = get_versions();
50 # a little example table with various version info";
51 print "
52 <h1>Koha error</h1>
53 <p>The following fatal error has occurred:</p>
54 <pre><code>$msg</code></pre>
55 <table>
56 <tr><th>Apache</th><td> $versions{apacheVersion}</td></tr>
57 <tr><th>Koha</th><td> $versions{kohaVersion}</td></tr>
58 <tr><th>Koha DB</th><td> $versions{kohaDbVersion}</td></tr>
59 <tr><th>MySQL</th><td> $versions{mysqlVersion}</td></tr>
60 <tr><th>OS</th><td> $versions{osVersion}</td></tr>
61 <tr><th>Perl</th><td> $versions{perlVersion}</td></tr>
62 </table>";
64 } elsif ($debug_level eq "1"){
65 print "
66 <h1>Koha error</h1>
67 <p>The following fatal error has occurred:</p>
68 <pre><code>$msg</code></pre>";
69 } else {
70 print "<p>production mode - trapped fatal error</p>";
72 print "</body></html>";
74 #CGI::Carp::set_message(\&handle_errors);
75 ## give a stack backtrace if KOHA_BACKTRACES is set
76 ## can't rely on DebugLevel for this, as we're not yet connected
77 if ($ENV{KOHA_BACKTRACES}) {
78 $main::SIG{__DIE__} = \&CGI::Carp::confess;
81 # Redefine multi_param if cgi version is < 4.08
82 # Remove the "CGI::param called in list context" warning in this case
83 require CGI; # Can't check version without the require.
84 if (!defined($CGI::VERSION) || $CGI::VERSION < 4.08) {
85 no warnings 'redefine';
86 *CGI::multi_param = \&CGI::param;
87 use warnings 'redefine';
88 $CGI::LIST_CONTEXT_WARN = 0;
90 } # else there is no browser to send fatals to!
93 use Carp;
94 use DateTime::TimeZone;
95 use Encode;
96 use File::Spec;
97 use Module::Load::Conditional qw(can_load);
98 use POSIX ();
99 use YAML qw/Load/;
100 use ZOOM;
102 use C4::Boolean;
103 use C4::Debug;
104 use Koha::Caches;
105 use Koha::Config::SysPref;
106 use Koha::Config::SysPrefs;
107 use Koha::Config;
108 use Koha;
110 =head1 NAME
112 C4::Context - Maintain and manipulate the context of a Koha script
114 =head1 SYNOPSIS
116 use C4::Context;
118 use C4::Context("/path/to/koha-conf.xml");
120 $config_value = C4::Context->config("config_variable");
122 $koha_preference = C4::Context->preference("preference");
124 $db_handle = C4::Context->dbh;
126 $Zconn = C4::Context->Zconn;
128 =head1 DESCRIPTION
130 When a Koha script runs, it makes use of a certain number of things:
131 configuration settings in F</etc/koha/koha-conf.xml>, a connection to the Koha
132 databases, and so forth. These things make up the I<context> in which
133 the script runs.
135 This module takes care of setting up the context for a script:
136 figuring out which configuration file to load, and loading it, opening
137 a connection to the right database, and so forth.
139 Most scripts will only use one context. They can simply have
141 use C4::Context;
143 at the top.
145 Other scripts may need to use several contexts. For instance, if a
146 library has two databases, one for a certain collection, and the other
147 for everything else, it might be necessary for a script to use two
148 different contexts to search both databases. Such scripts should use
149 the C<&set_context> and C<&restore_context> functions, below.
151 By default, C4::Context reads the configuration from
152 F</etc/koha/koha-conf.xml>. This may be overridden by setting the C<$KOHA_CONF>
153 environment variable to the pathname of a configuration file to use.
155 =head1 METHODS
157 =cut
160 # In addition to what is said in the POD above, a Context object is a
161 # reference-to-hash with the following fields:
163 # config
164 # A reference-to-hash whose keys and values are the
165 # configuration variables and values specified in the config
166 # file (/etc/koha/koha-conf.xml).
167 # dbh
168 # A handle to the appropriate database for this context.
169 # dbh_stack
170 # Used by &set_dbh and &restore_dbh to hold other database
171 # handles for this context.
172 # Zconn
173 # A connection object for the Zebra server
175 $context = undef; # Initially, no context is set
176 @context_stack = (); # Initially, no saved contexts
178 =head2 db_scheme2dbi
180 my $dbd_driver_name = C4::Context::db_schema2dbi($scheme);
182 This routines translates a database type to part of the name
183 of the appropriate DBD driver to use when establishing a new
184 database connection. It recognizes 'mysql' and 'Pg'; if any
185 other scheme is supplied it defaults to 'mysql'.
187 =cut
189 sub db_scheme2dbi {
190 my $scheme = shift // '';
191 return $scheme eq 'Pg' ? $scheme : 'mysql';
194 sub import {
195 # Create the default context ($C4::Context::Context)
196 # the first time the module is called
197 # (a config file can be optionaly passed)
199 # default context already exists?
200 return if $context;
202 # no ? so load it!
203 my ($pkg,$config_file) = @_ ;
204 my $new_ctx = __PACKAGE__->new($config_file);
205 return unless $new_ctx;
207 # if successfully loaded, use it by default
208 $new_ctx->set_context;
212 =head2 new
214 $context = new C4::Context;
215 $context = new C4::Context("/path/to/koha-conf.xml");
217 Allocates a new context. Initializes the context from the specified
218 file, which defaults to either the file given by the C<$KOHA_CONF>
219 environment variable, or F</etc/koha/koha-conf.xml>.
221 It saves the koha-conf.xml values in the declared memcached server(s)
222 if currently available and uses those values until them expire and
223 re-reads them.
225 C<&new> does not set this context as the new default context; for
226 that, use C<&set_context>.
228 =cut
231 # Revision History:
232 # 2004-08-10 A. Tarallo: Added check if the conf file is not empty
233 sub new {
234 my $class = shift;
235 my $conf_fname = shift; # Config file to load
236 my $self = {};
238 # check that the specified config file exists and is not empty
239 undef $conf_fname unless
240 (defined $conf_fname && -s $conf_fname);
241 # Figure out a good config file to load if none was specified.
242 unless ( defined $conf_fname ) {
243 $conf_fname = Koha::Config->guess_koha_conf;
244 unless ( $conf_fname ) {
245 warn "unable to locate Koha configuration file koha-conf.xml";
246 return;
250 my $conf_cache = Koha::Caches->get_instance('config');
251 if ( $conf_cache->cache ) {
252 $self = $conf_cache->get_from_cache('koha_conf');
254 unless ( $self and %$self ) {
255 $self = Koha::Config->read_from_file($conf_fname);
256 if ( $conf_cache->memcached_cache ) {
257 # FIXME it may be better to use the memcached servers from the config file
258 # to cache it
259 $conf_cache->set_in_cache('koha_conf', $self)
262 unless ( exists $self->{config} or defined $self->{config} ) {
263 warn "The config file ($conf_fname) has not been parsed correctly";
264 return;
267 $self->{"Zconn"} = undef; # Zebra Connections
268 $self->{"userenv"} = undef; # User env
269 $self->{"activeuser"} = undef; # current active user
270 $self->{"shelves"} = undef;
271 $self->{tz} = undef; # local timezone object
273 bless $self, $class;
274 $self->{db_driver} = db_scheme2dbi($self->config('db_scheme')); # cache database driver
275 return $self;
278 =head2 set_context
280 $context = new C4::Context;
281 $context->set_context();
283 set_context C4::Context $context;
286 restore_context C4::Context;
288 In some cases, it might be necessary for a script to use multiple
289 contexts. C<&set_context> saves the current context on a stack, then
290 sets the context to C<$context>, which will be used in future
291 operations. To restore the previous context, use C<&restore_context>.
293 =cut
296 sub set_context
298 my $self = shift;
299 my $new_context; # The context to set
301 # Figure out whether this is a class or instance method call.
303 # We're going to make the assumption that control got here
304 # through valid means, i.e., that the caller used an instance
305 # or class method call, and that control got here through the
306 # usual inheritance mechanisms. The caller can, of course,
307 # break this assumption by playing silly buggers, but that's
308 # harder to do than doing it properly, and harder to check
309 # for.
310 if (ref($self) eq "")
312 # Class method. The new context is the next argument.
313 $new_context = shift;
314 } else {
315 # Instance method. The new context is $self.
316 $new_context = $self;
319 # Save the old context, if any, on the stack
320 push @context_stack, $context if defined($context);
322 # Set the new context
323 $context = $new_context;
326 =head2 restore_context
328 &restore_context;
330 Restores the context set by C<&set_context>.
332 =cut
335 sub restore_context
337 my $self = shift;
339 if ($#context_stack < 0)
341 # Stack underflow.
342 die "Context stack underflow";
345 # Pop the old context and set it.
346 $context = pop @context_stack;
348 # FIXME - Should this return something, like maybe the context
349 # that was current when this was called?
352 =head2 config
354 $value = C4::Context->config("config_variable");
356 $value = C4::Context->config_variable;
358 Returns the value of a variable specified in the configuration file
359 from which the current context was created.
361 The second form is more compact, but of course may conflict with
362 method names. If there is a configuration variable called "new", then
363 C<C4::Config-E<gt>new> will not return it.
365 =cut
367 sub _common_config {
368 my $var = shift;
369 my $term = shift;
370 return if !defined($context->{$term});
371 # Presumably $self->{$term} might be
372 # undefined if the config file given to &new
373 # didn't exist, and the caller didn't bother
374 # to check the return value.
376 # Return the value of the requested config variable
377 return $context->{$term}->{$var};
380 sub config {
381 return _common_config($_[1],'config');
383 sub zebraconfig {
384 return _common_config($_[1],'server');
387 =head2 preference
389 $sys_preference = C4::Context->preference('some_variable');
391 Looks up the value of the given system preference in the
392 systempreferences table of the Koha database, and returns it. If the
393 variable is not set or does not exist, undef is returned.
395 In case of an error, this may return 0.
397 Note: It is impossible to tell the difference between system
398 preferences which do not exist, and those whose values are set to NULL
399 with this method.
401 =cut
403 my $syspref_cache = Koha::Caches->get_instance('syspref');
404 my $use_syspref_cache = 1;
405 sub preference {
406 my $self = shift;
407 my $var = shift; # The system preference to return
409 return $ENV{"OVERRIDE_SYSPREF_$var"}
410 if defined $ENV{"OVERRIDE_SYSPREF_$var"};
412 $var = lc $var;
414 if ($use_syspref_cache) {
415 $syspref_cache = Koha::Caches->get_instance('syspref') unless $syspref_cache;
416 my $cached_var = $syspref_cache->get_from_cache("syspref_$var");
417 return $cached_var if defined $cached_var;
420 my $syspref;
421 eval { $syspref = Koha::Config::SysPrefs->find( lc $var ) };
422 my $value = $syspref ? $syspref->value() : undef;
424 if ( $use_syspref_cache ) {
425 $syspref_cache->set_in_cache("syspref_$var", $value);
427 return $value;
430 sub boolean_preference {
431 my $self = shift;
432 my $var = shift; # The system preference to return
433 my $it = preference($self, $var);
434 return defined($it)? C4::Boolean::true_p($it): undef;
437 =head2 yaml_preference
439 Retrieves the required system preference value, and converts it
440 from YAML into a Perl data structure. It throws an exception if
441 the value cannot be properly decoded as YAML.
443 =cut
445 sub yaml_preference {
446 my ( $self, $preference ) = @_;
448 my $yaml = eval { YAML::Load( $self->preference( $preference ) ); };
449 if ($@) {
450 warn "Unable to parse $preference syspref : $@";
451 return;
454 return $yaml;
457 =head2 enable_syspref_cache
459 C4::Context->enable_syspref_cache();
461 Enable the in-memory syspref cache used by C4::Context. This is the
462 default behavior.
464 =cut
466 sub enable_syspref_cache {
467 my ($self) = @_;
468 $use_syspref_cache = 1;
469 # We need to clear the cache to have it up-to-date
470 $self->clear_syspref_cache();
473 =head2 disable_syspref_cache
475 C4::Context->disable_syspref_cache();
477 Disable the in-memory syspref cache used by C4::Context. This should be
478 used with Plack and other persistent environments.
480 =cut
482 sub disable_syspref_cache {
483 my ($self) = @_;
484 $use_syspref_cache = 0;
485 $self->clear_syspref_cache();
488 =head2 clear_syspref_cache
490 C4::Context->clear_syspref_cache();
492 cleans the internal cache of sysprefs. Please call this method if
493 you update the systempreferences table. Otherwise, your new changes
494 will not be seen by this process.
496 =cut
498 sub clear_syspref_cache {
499 return unless $use_syspref_cache;
500 $syspref_cache->flush_all;
503 =head2 set_preference
505 C4::Context->set_preference( $variable, $value, [ $explanation, $type, $options ] );
507 This updates a preference's value both in the systempreferences table and in
508 the sysprefs cache. If the optional parameters are provided, then the query
509 becomes a create. It won't update the parameters (except value) for an existing
510 preference.
512 =cut
514 sub set_preference {
515 my ( $self, $variable, $value, $explanation, $type, $options ) = @_;
517 my $variable_case = $variable;
518 $variable = lc $variable;
520 my $syspref = Koha::Config::SysPrefs->find($variable);
521 $type =
522 $type ? $type
523 : $syspref ? $syspref->type
524 : undef;
526 $value = 0 if ( $type && $type eq 'YesNo' && $value eq '' );
528 # force explicit protocol on OPACBaseURL
529 if ( $variable eq 'opacbaseurl' && $value && substr( $value, 0, 4 ) !~ /http/ ) {
530 $value = 'http://' . $value;
533 if ($syspref) {
534 $syspref->set(
535 { ( defined $value ? ( value => $value ) : () ),
536 ( $explanation ? ( explanation => $explanation ) : () ),
537 ( $type ? ( type => $type ) : () ),
538 ( $options ? ( options => $options ) : () ),
540 )->store;
541 } else {
542 $syspref = Koha::Config::SysPref->new(
543 { variable => $variable_case,
544 value => $value,
545 explanation => $explanation || undef,
546 type => $type,
547 options => $options || undef,
549 )->store();
552 if ( $use_syspref_cache ) {
553 $syspref_cache->set_in_cache( "syspref_$variable", $value );
556 return $syspref;
559 =head2 delete_preference
561 C4::Context->delete_preference( $variable );
563 This deletes a system preference from the database. Returns a true value on
564 success. Failure means there was an issue with the database, not that there
565 was no syspref of the name.
567 =cut
569 sub delete_preference {
570 my ( $self, $var ) = @_;
572 if ( Koha::Config::SysPrefs->find( $var )->delete ) {
573 if ( $use_syspref_cache ) {
574 $syspref_cache->clear_from_cache("syspref_$var");
577 return 1;
579 return 0;
582 =head2 Zconn
584 $Zconn = C4::Context->Zconn
586 Returns a connection to the Zebra database
588 C<$self>
590 C<$server> one of the servers defined in the koha-conf.xml file
592 C<$async> whether this is a asynchronous connection
594 =cut
596 sub Zconn {
597 my ($self, $server, $async ) = @_;
598 my $cache_key = join ('::', (map { $_ // '' } ($server, $async )));
599 if ( (!defined($ENV{GATEWAY_INTERFACE})) && defined($context->{"Zconn"}->{$cache_key}) && (0 == $context->{"Zconn"}->{$cache_key}->errcode()) ) {
600 # if we are running the script from the commandline, lets try to use the caching
601 return $context->{"Zconn"}->{$cache_key};
603 $context->{"Zconn"}->{$cache_key}->destroy() if defined($context->{"Zconn"}->{$cache_key}); #destroy old connection before making a new one
604 $context->{"Zconn"}->{$cache_key} = &_new_Zconn( $server, $async );
605 return $context->{"Zconn"}->{$cache_key};
608 =head2 _new_Zconn
610 $context->{"Zconn"} = &_new_Zconn($server,$async);
612 Internal function. Creates a new database connection from the data given in the current context and returns it.
614 C<$server> one of the servers defined in the koha-conf.xml file
616 C<$async> whether this is a asynchronous connection
618 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
620 =cut
622 sub _new_Zconn {
623 my ( $server, $async ) = @_;
625 my $tried=0; # first attempt
626 my $Zconn; # connection object
627 my $elementSetName;
628 my $syntax;
630 $server //= "biblioserver";
632 $syntax = 'xml';
633 $elementSetName = 'marcxml';
635 my $host = $context->{'listen'}->{$server}->{'content'};
636 my $user = $context->{"serverinfo"}->{$server}->{"user"};
637 my $password = $context->{"serverinfo"}->{$server}->{"password"};
638 eval {
639 # set options
640 my $o = ZOOM::Options->new();
641 $o->option(user => $user) if $user && $password;
642 $o->option(password => $password) if $user && $password;
643 $o->option(async => 1) if $async;
644 $o->option(cqlfile=> $context->{"server"}->{$server}->{"cql2rpn"});
645 $o->option(cclfile=> $context->{"serverinfo"}->{$server}->{"ccl2rpn"});
646 $o->option(preferredRecordSyntax => $syntax);
647 $o->option(elementSetName => $elementSetName) if $elementSetName;
648 $o->option(databaseName => $context->{"config"}->{$server}||"biblios");
650 # create a new connection object
651 $Zconn= create ZOOM::Connection($o);
653 # forge to server
654 $Zconn->connect($host, 0);
656 # check for errors and warn
657 if ($Zconn->errcode() !=0) {
658 warn "something wrong with the connection: ". $Zconn->errmsg();
661 return $Zconn;
664 # _new_dbh
665 # Internal helper function (not a method!). This creates a new
666 # database connection from the data given in the current context, and
667 # returns it.
668 sub _new_dbh
671 Koha::Database->schema({ new => 1 })->storage->dbh;
674 =head2 dbh
676 $dbh = C4::Context->dbh;
678 Returns a database handle connected to the Koha database for the
679 current context. If no connection has yet been made, this method
680 creates one, and connects to the database.
682 This database handle is cached for future use: if you call
683 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
684 times. If you need a second database handle, use C<&new_dbh> and
685 possibly C<&set_dbh>.
687 =cut
690 sub dbh
692 my $self = shift;
693 my $params = shift;
695 unless ( $params->{new} ) {
696 return Koha::Database->schema->storage->dbh;
699 return Koha::Database->schema({ new => 1 })->storage->dbh;
702 =head2 new_dbh
704 $dbh = C4::Context->new_dbh;
706 Creates a new connection to the Koha database for the current context,
707 and returns the database handle (a C<DBI::db> object).
709 The handle is not saved anywhere: this method is strictly a
710 convenience function; the point is that it knows which database to
711 connect to so that the caller doesn't have to know.
713 =cut
716 sub new_dbh
718 my $self = shift;
720 return &dbh({ new => 1 });
723 =head2 set_dbh
725 $my_dbh = C4::Connect->new_dbh;
726 C4::Connect->set_dbh($my_dbh);
728 C4::Connect->restore_dbh;
730 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
731 C<&set_context> and C<&restore_context>.
733 C<&set_dbh> saves the current database handle on a stack, then sets
734 the current database handle to C<$my_dbh>.
736 C<$my_dbh> is assumed to be a good database handle.
738 =cut
741 sub set_dbh
743 my $self = shift;
744 my $new_dbh = shift;
746 # Save the current database handle on the handle stack.
747 # We assume that $new_dbh is all good: if the caller wants to
748 # screw himself by passing an invalid handle, that's fine by
749 # us.
750 push @{$context->{"dbh_stack"}}, $context->{"dbh"};
751 $context->{"dbh"} = $new_dbh;
754 =head2 restore_dbh
756 C4::Context->restore_dbh;
758 Restores the database handle saved by an earlier call to
759 C<C4::Context-E<gt>set_dbh>.
761 =cut
764 sub restore_dbh
766 my $self = shift;
768 if ($#{$context->{"dbh_stack"}} < 0)
770 # Stack underflow
771 die "DBH stack underflow";
774 # Pop the old database handle and set it.
775 $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
777 # FIXME - If it is determined that restore_context should
778 # return something, then this function should, too.
781 =head2 userenv
783 C4::Context->userenv;
785 Retrieves a hash for user environment variables.
787 This hash shall be cached for future use: if you call
788 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
790 =cut
793 sub userenv {
794 my $var = $context->{"activeuser"};
795 if (defined $var and defined $context->{"userenv"}->{$var}) {
796 return $context->{"userenv"}->{$var};
797 } else {
798 return;
802 =head2 set_userenv
804 C4::Context->set_userenv($usernum, $userid, $usercnum,
805 $userfirstname, $usersurname,
806 $userbranch, $branchname, $userflags,
807 $emailaddress, $shibboleth
808 $desk_id, $desk_name);
810 Establish a hash of user environment variables.
812 set_userenv is called in Auth.pm
814 =cut
817 sub set_userenv {
818 shift @_;
819 my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $branchname, $userflags, $emailaddress, $shibboleth, $desk_id, $desk_name)=
820 map { Encode::is_utf8( $_ ) ? $_ : Encode::decode('UTF-8', $_) } # CGI::Session doesn't handle utf-8, so we decode it here
822 my $var=$context->{"activeuser"} || '';
823 my $cell = {
824 "number" => $usernum,
825 "id" => $userid,
826 "cardnumber" => $usercnum,
827 "firstname" => $userfirstname,
828 "surname" => $usersurname,
829 #possibly a law problem
830 "branch" => $userbranch,
831 "branchname" => $branchname,
832 "desk_id" => $desk_id,
833 "desk_name" => $desk_name,
834 "flags" => $userflags,
835 "emailaddress" => $emailaddress,
836 "shibboleth" => $shibboleth,
838 $context->{userenv}->{$var} = $cell;
839 return $cell;
842 sub set_shelves_userenv {
843 my ($type, $shelves) = @_ or return;
844 my $activeuser = $context->{activeuser} or return;
845 $context->{userenv}->{$activeuser}->{barshelves} = $shelves if $type eq 'bar';
846 $context->{userenv}->{$activeuser}->{pubshelves} = $shelves if $type eq 'pub';
847 $context->{userenv}->{$activeuser}->{totshelves} = $shelves if $type eq 'tot';
850 sub get_shelves_userenv {
851 my $active;
852 unless ($active = $context->{userenv}->{$context->{activeuser}}) {
853 $debug and warn "get_shelves_userenv cannot retrieve context->{userenv}->{context->{activeuser}}";
854 return;
856 my $totshelves = $active->{totshelves} or undef;
857 my $pubshelves = $active->{pubshelves} or undef;
858 my $barshelves = $active->{barshelves} or undef;
859 return ($totshelves, $pubshelves, $barshelves);
862 =head2 _new_userenv
864 C4::Context->_new_userenv($session); # FIXME: This calling style is wrong for what looks like an _internal function
866 Builds a hash for user environment variables.
868 This hash shall be cached for future use: if you call
869 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
871 _new_userenv is called in Auth.pm
873 =cut
876 sub _new_userenv
878 shift; # Useless except it compensates for bad calling style
879 my ($sessionID)= @_;
880 $context->{"activeuser"}=$sessionID;
883 =head2 _unset_userenv
885 C4::Context->_unset_userenv;
887 Destroys the hash for activeuser user environment variables.
889 =cut
893 sub _unset_userenv
895 my ($sessionID)= @_;
896 undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
900 =head2 get_versions
902 C4::Context->get_versions
904 Gets various version info, for core Koha packages, Currently called from carp handle_errors() sub, to send to browser if 'DebugLevel' syspref is set to '2'.
906 =cut
910 # A little example sub to show more debugging info for CGI::Carp
911 sub get_versions {
912 my %versions;
913 $versions{kohaVersion} = Koha::version();
914 $versions{kohaDbVersion} = C4::Context->preference('version');
915 $versions{osVersion} = join(" ", POSIX::uname());
916 $versions{perlVersion} = $];
918 no warnings qw(exec); # suppress warnings if unable to find a program in $PATH
919 $versions{mysqlVersion} = `mysql -V`;
920 $versions{apacheVersion} = (`apache2ctl -v`)[0];
921 $versions{apacheVersion} = `httpd -v` unless $versions{apacheVersion} ;
922 $versions{apacheVersion} = `httpd2 -v` unless $versions{apacheVersion} ;
923 $versions{apacheVersion} = `apache2 -v` unless $versions{apacheVersion} ;
924 $versions{apacheVersion} = `/usr/sbin/apache2 -v` unless $versions{apacheVersion} ;
926 return %versions;
929 =head2 timezone
931 my $C4::Context->timzone
933 Returns a timezone code for the instance of Koha
935 =cut
937 sub timezone {
938 my $self = shift;
940 my $timezone = C4::Context->config('timezone') || $ENV{TZ} || 'local';
941 if ( !DateTime::TimeZone->is_valid_name( $timezone ) ) {
942 warn "Invalid timezone in koha-conf.xml ($timezone)";
943 $timezone = 'local';
946 return $timezone;
949 =head2 tz
951 C4::Context->tz
953 Returns a DateTime::TimeZone object for the system timezone
955 =cut
957 sub tz {
958 my $self = shift;
959 if (!defined $context->{tz}) {
960 my $timezone = $self->timezone;
961 $context->{tz} = DateTime::TimeZone->new(name => $timezone);
963 return $context->{tz};
967 =head2 IsSuperLibrarian
969 C4::Context->IsSuperLibrarian();
971 =cut
973 sub IsSuperLibrarian {
974 my $userenv = C4::Context->userenv;
976 unless ( $userenv and exists $userenv->{flags} ) {
977 # If we reach this without a user environment,
978 # assume that we're running from a command-line script,
979 # and act as a superlibrarian.
980 carp("C4::Context->userenv not defined!");
981 return 1;
984 return ($userenv->{flags}//0) % 2;
987 =head2 interface
989 Sets the current interface for later retrieval in any Perl module
991 C4::Context->interface('opac');
992 C4::Context->interface('intranet');
993 my $interface = C4::Context->interface;
995 =cut
997 sub interface {
998 my ($class, $interface) = @_;
1000 if (defined $interface) {
1001 $interface = lc $interface;
1002 if ( $interface eq 'api'
1003 || $interface eq 'opac'
1004 || $interface eq 'intranet'
1005 || $interface eq 'sip'
1006 || $interface eq 'cron'
1007 || $interface eq 'commandline' )
1009 $context->{interface} = $interface;
1010 } else {
1011 warn "invalid interface : '$interface'";
1015 return $context->{interface} // 'opac';
1018 # always returns a string for OK comparison via "eq" or "ne"
1019 sub mybranch {
1020 C4::Context->userenv or return '';
1021 return C4::Context->userenv->{branch} || '';
1024 =head2 only_my_library
1026 my $test = C4::Context->only_my_library;
1028 Returns true if you enabled IndependentBranches and the current user
1029 does not have superlibrarian permissions.
1031 =cut
1033 sub only_my_library {
1034 return
1035 C4::Context->preference('IndependentBranches')
1036 && C4::Context->userenv
1037 && !C4::Context->IsSuperLibrarian()
1038 && C4::Context->userenv->{branch};
1041 =head3 temporary_directory
1043 Returns root directory for temporary storage
1045 =cut
1047 sub temporary_directory {
1048 my ( $class ) = @_;
1049 return C4::Context->config('tmp_path') || File::Spec->tmpdir;
1052 =head3 set_remote_address
1054 set_remote_address should be called at the beginning of every script
1055 that is *not* running under plack in order to the REMOTE_ADDR environment
1056 variable to be set correctly.
1058 =cut
1060 sub set_remote_address {
1061 if ( C4::Context->config('koha_trusted_proxies') ) {
1062 require CGI;
1063 my $header = CGI->http('HTTP_X_FORWARDED_FOR');
1065 if ($header) {
1066 require Koha::Middleware::RealIP;
1067 $ENV{REMOTE_ADDR} = Koha::Middleware::RealIP::get_real_ip( $ENV{REMOTE_ADDR}, $header );
1072 =head3 https_enabled
1074 https_enabled should be called when checking if a HTTPS connection
1075 is used.
1077 Note that this depends on a HTTPS environmental variable being defined
1078 by the web server. This function may not return the expected result,
1079 if your web server or reverse proxies are not setting the correct
1080 X-Forwarded-Proto headers and HTTPS environmental variable.
1082 Note too that the HTTPS value can vary from web server to web server.
1083 We are relying on the convention of the value being "on" or "ON" here.
1085 =cut
1087 sub https_enabled {
1088 my $https_enabled = 0;
1089 my $env_https = $ENV{HTTPS};
1090 if ($env_https){
1091 if ($env_https =~ /^ON$/i){
1092 $https_enabled = 1;
1095 return $https_enabled;
1100 =head3 needs_install
1102 if ( $context->needs_install ) { ... }
1104 This method returns a boolean representing the install status of the Koha instance.
1106 =cut
1108 sub needs_install {
1109 my ($self) = @_;
1110 return ($self->preference('Version')) ? 0 : 1;
1113 __END__
1115 =head1 ENVIRONMENT
1117 =head2 C<KOHA_CONF>
1119 Specifies the configuration file to read.
1121 =head1 SEE ALSO
1123 XML::Simple
1125 =head1 AUTHORS
1127 Andrew Arensburger <arensb at ooblick dot com>
1129 Joshua Ferraro <jmf at liblime dot com>