Bug 14147: Add unit tests to C4::External::OverDrive
[koha.git] / C4 / Context.pm
bloba51f5c7c51fd9847447de3f79c350a5ab0758bf7
1 package C4::Context;
2 # Copyright 2002 Katipo Communications
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 use strict;
20 use warnings;
21 use vars qw($VERSION $AUTOLOAD $context @context_stack $servers $memcached $ismemcached);
22 BEGIN {
23 if ($ENV{'HTTP_USER_AGENT'}) {
24 require CGI::Carp;
25 # FIXME for future reference, CGI::Carp doc says
26 # "Note that fatalsToBrowser does not work with mod_perl version 2.0 and higher."
27 import CGI::Carp qw(fatalsToBrowser);
28 sub handle_errors {
29 my $msg = shift;
30 my $debug_level;
31 eval {C4::Context->dbh();};
32 if ($@){
33 $debug_level = 1;
35 else {
36 $debug_level = C4::Context->preference("DebugLevel");
39 print q(<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
40 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
41 <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
42 <head><title>Koha Error</title></head>
43 <body>
45 if ($debug_level eq "2"){
46 # debug 2 , print extra info too.
47 my %versions = get_versions();
49 # a little example table with various version info";
50 print "
51 <h1>Koha error</h1>
52 <p>The following fatal error has occurred:</p>
53 <pre><code>$msg</code></pre>
54 <table>
55 <tr><th>Apache</th><td> $versions{apacheVersion}</td></tr>
56 <tr><th>Koha</th><td> $versions{kohaVersion}</td></tr>
57 <tr><th>Koha DB</th><td> $versions{kohaDbVersion}</td></tr>
58 <tr><th>MySQL</th><td> $versions{mysqlVersion}</td></tr>
59 <tr><th>OS</th><td> $versions{osVersion}</td></tr>
60 <tr><th>Perl</th><td> $versions{perlVersion}</td></tr>
61 </table>";
63 } elsif ($debug_level eq "1"){
64 print "
65 <h1>Koha error</h1>
66 <p>The following fatal error has occurred:</p>
67 <pre><code>$msg</code></pre>";
68 } else {
69 print "<p>production mode - trapped fatal error</p>";
71 print "</body></html>";
73 #CGI::Carp::set_message(\&handle_errors);
74 ## give a stack backtrace if KOHA_BACKTRACES is set
75 ## can't rely on DebugLevel for this, as we're not yet connected
76 if ($ENV{KOHA_BACKTRACES}) {
77 $main::SIG{__DIE__} = \&CGI::Carp::confess;
79 } # else there is no browser to send fatals to!
81 # Check if there are memcached servers set
82 $servers = $ENV{'MEMCACHED_SERVERS'};
83 if ($servers) {
84 # Load required libraries and create the memcached object
85 require Cache::Memcached;
86 $memcached = Cache::Memcached->new({
87 servers => [ $servers ],
88 debug => 0,
89 compress_threshold => 10_000,
90 expire_time => 600,
91 namespace => $ENV{'MEMCACHED_NAMESPACE'} || 'koha'
92 });
93 # Verify memcached available (set a variable and test the output)
94 $ismemcached = $memcached->set('ismemcached','1');
97 $VERSION = '3.07.00.049';
100 use DBIx::Connector;
101 use Encode;
102 use ZOOM;
103 use XML::Simple;
104 use C4::Boolean;
105 use C4::Debug;
106 use Koha;
107 use POSIX ();
108 use DateTime::TimeZone;
109 use Module::Load::Conditional qw(can_load);
110 use Carp;
112 =head1 NAME
114 C4::Context - Maintain and manipulate the context of a Koha script
116 =head1 SYNOPSIS
118 use C4::Context;
120 use C4::Context("/path/to/koha-conf.xml");
122 $config_value = C4::Context->config("config_variable");
124 $koha_preference = C4::Context->preference("preference");
126 $db_handle = C4::Context->dbh;
128 $Zconn = C4::Context->Zconn;
130 $stopwordhash = C4::Context->stopwords;
132 =head1 DESCRIPTION
134 When a Koha script runs, it makes use of a certain number of things:
135 configuration settings in F</etc/koha/koha-conf.xml>, a connection to the Koha
136 databases, and so forth. These things make up the I<context> in which
137 the script runs.
139 This module takes care of setting up the context for a script:
140 figuring out which configuration file to load, and loading it, opening
141 a connection to the right database, and so forth.
143 Most scripts will only use one context. They can simply have
145 use C4::Context;
147 at the top.
149 Other scripts may need to use several contexts. For instance, if a
150 library has two databases, one for a certain collection, and the other
151 for everything else, it might be necessary for a script to use two
152 different contexts to search both databases. Such scripts should use
153 the C<&set_context> and C<&restore_context> functions, below.
155 By default, C4::Context reads the configuration from
156 F</etc/koha/koha-conf.xml>. This may be overridden by setting the C<$KOHA_CONF>
157 environment variable to the pathname of a configuration file to use.
159 =head1 METHODS
161 =cut
164 # In addition to what is said in the POD above, a Context object is a
165 # reference-to-hash with the following fields:
167 # config
168 # A reference-to-hash whose keys and values are the
169 # configuration variables and values specified in the config
170 # file (/etc/koha/koha-conf.xml).
171 # dbh
172 # A handle to the appropriate database for this context.
173 # dbh_stack
174 # Used by &set_dbh and &restore_dbh to hold other database
175 # handles for this context.
176 # Zconn
177 # A connection object for the Zebra server
179 # Koha's main configuration file koha-conf.xml
180 # is searched for according to this priority list:
182 # 1. Path supplied via use C4::Context '/path/to/koha-conf.xml'
183 # 2. Path supplied in KOHA_CONF environment variable.
184 # 3. Path supplied in INSTALLED_CONFIG_FNAME, as long
185 # as value has changed from its default of
186 # '__KOHA_CONF_DIR__/koha-conf.xml', as happens
187 # when Koha is installed in 'standard' or 'single'
188 # mode.
189 # 4. Path supplied in CONFIG_FNAME.
191 # The first entry that refers to a readable file is used.
193 use constant CONFIG_FNAME => "/etc/koha/koha-conf.xml";
194 # Default config file, if none is specified
196 my $INSTALLED_CONFIG_FNAME = '__KOHA_CONF_DIR__/koha-conf.xml';
197 # path to config file set by installer
198 # __KOHA_CONF_DIR__ is set by rewrite-confg.PL
199 # when Koha is installed in 'standard' or 'single'
200 # mode. If Koha was installed in 'dev' mode,
201 # __KOHA_CONF_DIR__ is *not* rewritten; instead
202 # developers should set the KOHA_CONF environment variable
204 $context = undef; # Initially, no context is set
205 @context_stack = (); # Initially, no saved contexts
208 =head2 read_config_file
210 Reads the specified Koha config file.
212 Returns an object containing the configuration variables. The object's
213 structure is a bit complex to the uninitiated ... take a look at the
214 koha-conf.xml file as well as the XML::Simple documentation for details. Or,
215 here are a few examples that may give you what you need:
217 The simple elements nested within the <config> element:
219 my $pass = $koha->{'config'}->{'pass'};
221 The <listen> elements:
223 my $listen = $koha->{'listen'}->{'biblioserver'}->{'content'};
225 The elements nested within the <server> element:
227 my $ccl2rpn = $koha->{'server'}->{'biblioserver'}->{'cql2rpn'};
229 Returns undef in case of error.
231 =cut
233 sub read_config_file { # Pass argument naming config file to read
234 my $koha = XMLin(shift, keyattr => ['id'], forcearray => ['listen', 'server', 'serverinfo'], suppressempty => '');
236 if ($ismemcached) {
237 $memcached->set('kohaconf',$koha);
240 return $koha; # Return value: ref-to-hash holding the configuration
243 =head2 ismemcached
245 Returns the value of the $ismemcached variable (0/1)
247 =cut
249 sub ismemcached {
250 return $ismemcached;
253 =head2 memcached
255 If $ismemcached is true, returns the $memcache variable.
256 Returns undef otherwise
258 =cut
260 sub memcached {
261 if ($ismemcached) {
262 return $memcached;
263 } else {
264 return;
268 =head2 db_scheme2dbi
270 my $dbd_driver_name = C4::Context::db_schema2dbi($scheme);
272 This routines translates a database type to part of the name
273 of the appropriate DBD driver to use when establishing a new
274 database connection. It recognizes 'mysql' and 'Pg'; if any
275 other scheme is supplied it defaults to 'mysql'.
277 =cut
279 sub db_scheme2dbi {
280 my $scheme = shift // '';
281 return $scheme eq 'Pg' ? $scheme : 'mysql';
284 sub import {
285 # Create the default context ($C4::Context::Context)
286 # the first time the module is called
287 # (a config file can be optionaly passed)
289 # default context allready exists?
290 return if $context;
292 # no ? so load it!
293 my ($pkg,$config_file) = @_ ;
294 my $new_ctx = __PACKAGE__->new($config_file);
295 return unless $new_ctx;
297 # if successfully loaded, use it by default
298 $new_ctx->set_context;
302 =head2 new
304 $context = new C4::Context;
305 $context = new C4::Context("/path/to/koha-conf.xml");
307 Allocates a new context. Initializes the context from the specified
308 file, which defaults to either the file given by the C<$KOHA_CONF>
309 environment variable, or F</etc/koha/koha-conf.xml>.
311 It saves the koha-conf.xml values in the declared memcached server(s)
312 if currently available and uses those values until them expire and
313 re-reads them.
315 C<&new> does not set this context as the new default context; for
316 that, use C<&set_context>.
318 =cut
321 # Revision History:
322 # 2004-08-10 A. Tarallo: Added check if the conf file is not empty
323 sub new {
324 my $class = shift;
325 my $conf_fname = shift; # Config file to load
326 my $self = {};
328 # check that the specified config file exists and is not empty
329 undef $conf_fname unless
330 (defined $conf_fname && -s $conf_fname);
331 # Figure out a good config file to load if none was specified.
332 if (!defined($conf_fname))
334 # If the $KOHA_CONF environment variable is set, use
335 # that. Otherwise, use the built-in default.
336 if (exists $ENV{"KOHA_CONF"} and $ENV{'KOHA_CONF'} and -s $ENV{"KOHA_CONF"}) {
337 $conf_fname = $ENV{"KOHA_CONF"};
338 } elsif ($INSTALLED_CONFIG_FNAME !~ /__KOHA_CONF_DIR/ and -s $INSTALLED_CONFIG_FNAME) {
339 # NOTE: be careful -- don't change __KOHA_CONF_DIR in the above
340 # regex to anything else -- don't want installer to rewrite it
341 $conf_fname = $INSTALLED_CONFIG_FNAME;
342 } elsif (-s CONFIG_FNAME) {
343 $conf_fname = CONFIG_FNAME;
344 } else {
345 warn "unable to locate Koha configuration file koha-conf.xml";
346 return;
350 if ($ismemcached) {
351 # retreive from memcached
352 $self = $memcached->get('kohaconf');
353 if (not defined $self) {
354 # not in memcached yet
355 $self = read_config_file($conf_fname);
357 } else {
358 # non-memcached env, read from file
359 $self = read_config_file($conf_fname);
362 $self->{"config_file"} = $conf_fname;
363 warn "read_config_file($conf_fname) returned undef" if !defined($self->{"config"});
364 return if !defined($self->{"config"});
366 $self->{"dbh"} = undef; # Database handle
367 $self->{"Zconn"} = undef; # Zebra Connections
368 $self->{"stopwords"} = undef; # stopwords list
369 $self->{"marcfromkohafield"} = undef; # the hash with relations between koha table fields and MARC field/subfield
370 $self->{"userenv"} = undef; # User env
371 $self->{"activeuser"} = undef; # current active user
372 $self->{"shelves"} = undef;
373 $self->{tz} = undef; # local timezone object
375 bless $self, $class;
376 $self->{db_driver} = db_scheme2dbi($self->config('db_scheme')); # cache database driver
377 return $self;
380 =head2 set_context
382 $context = new C4::Context;
383 $context->set_context();
385 set_context C4::Context $context;
388 restore_context C4::Context;
390 In some cases, it might be necessary for a script to use multiple
391 contexts. C<&set_context> saves the current context on a stack, then
392 sets the context to C<$context>, which will be used in future
393 operations. To restore the previous context, use C<&restore_context>.
395 =cut
398 sub set_context
400 my $self = shift;
401 my $new_context; # The context to set
403 # Figure out whether this is a class or instance method call.
405 # We're going to make the assumption that control got here
406 # through valid means, i.e., that the caller used an instance
407 # or class method call, and that control got here through the
408 # usual inheritance mechanisms. The caller can, of course,
409 # break this assumption by playing silly buggers, but that's
410 # harder to do than doing it properly, and harder to check
411 # for.
412 if (ref($self) eq "")
414 # Class method. The new context is the next argument.
415 $new_context = shift;
416 } else {
417 # Instance method. The new context is $self.
418 $new_context = $self;
421 # Save the old context, if any, on the stack
422 push @context_stack, $context if defined($context);
424 # Set the new context
425 $context = $new_context;
428 =head2 restore_context
430 &restore_context;
432 Restores the context set by C<&set_context>.
434 =cut
437 sub restore_context
439 my $self = shift;
441 if ($#context_stack < 0)
443 # Stack underflow.
444 die "Context stack underflow";
447 # Pop the old context and set it.
448 $context = pop @context_stack;
450 # FIXME - Should this return something, like maybe the context
451 # that was current when this was called?
454 =head2 config
456 $value = C4::Context->config("config_variable");
458 $value = C4::Context->config_variable;
460 Returns the value of a variable specified in the configuration file
461 from which the current context was created.
463 The second form is more compact, but of course may conflict with
464 method names. If there is a configuration variable called "new", then
465 C<C4::Config-E<gt>new> will not return it.
467 =cut
469 sub _common_config {
470 my $var = shift;
471 my $term = shift;
472 return if !defined($context->{$term});
473 # Presumably $self->{$term} might be
474 # undefined if the config file given to &new
475 # didn't exist, and the caller didn't bother
476 # to check the return value.
478 # Return the value of the requested config variable
479 return $context->{$term}->{$var};
482 sub config {
483 return _common_config($_[1],'config');
485 sub zebraconfig {
486 return _common_config($_[1],'server');
488 sub ModZebrations {
489 return _common_config($_[1],'serverinfo');
492 =head2 preference
494 $sys_preference = C4::Context->preference('some_variable');
496 Looks up the value of the given system preference in the
497 systempreferences table of the Koha database, and returns it. If the
498 variable is not set or does not exist, undef is returned.
500 In case of an error, this may return 0.
502 Note: It is impossible to tell the difference between system
503 preferences which do not exist, and those whose values are set to NULL
504 with this method.
506 =cut
508 # FIXME: running this under mod_perl will require a means of
509 # flushing the caching mechanism.
511 my %sysprefs;
512 my $use_syspref_cache = 1;
514 sub preference {
515 my $self = shift;
516 my $var = shift; # The system preference to return
518 if ($use_syspref_cache && exists $sysprefs{lc $var}) {
519 return $sysprefs{lc $var};
522 my $dbh = C4::Context->dbh or return 0;
524 my $value;
525 if ( defined $ENV{"OVERRIDE_SYSPREF_$var"} ) {
526 $value = $ENV{"OVERRIDE_SYSPREF_$var"};
527 } else {
528 # Look up systempreferences.variable==$var
529 my $sql = q{
530 SELECT value
531 FROM systempreferences
532 WHERE variable = ?
533 LIMIT 1
535 $value = $dbh->selectrow_array( $sql, {}, lc $var );
538 $sysprefs{lc $var} = $value;
539 return $value;
542 sub boolean_preference {
543 my $self = shift;
544 my $var = shift; # The system preference to return
545 my $it = preference($self, $var);
546 return defined($it)? C4::Boolean::true_p($it): undef;
549 =head2 enable_syspref_cache
551 C4::Context->enable_syspref_cache();
553 Enable the in-memory syspref cache used by C4::Context. This is the
554 default behavior.
556 =cut
558 sub enable_syspref_cache {
559 my ($self) = @_;
560 $use_syspref_cache = 1;
563 =head2 disable_syspref_cache
565 C4::Context->disable_syspref_cache();
567 Disable the in-memory syspref cache used by C4::Context. This should be
568 used with Plack and other persistent environments.
570 =cut
572 sub disable_syspref_cache {
573 my ($self) = @_;
574 $use_syspref_cache = 0;
575 $self->clear_syspref_cache();
578 =head2 clear_syspref_cache
580 C4::Context->clear_syspref_cache();
582 cleans the internal cache of sysprefs. Please call this method if
583 you update the systempreferences table. Otherwise, your new changes
584 will not be seen by this process.
586 =cut
588 sub clear_syspref_cache {
589 %sysprefs = ();
592 =head2 set_preference
594 C4::Context->set_preference( $variable, $value );
596 This updates a preference's value both in the systempreferences table and in
597 the sysprefs cache.
599 =cut
601 sub set_preference {
602 my $self = shift;
603 my $var = lc(shift);
604 my $value = shift;
606 my $dbh = C4::Context->dbh or return 0;
608 my $type = $dbh->selectrow_array( "SELECT type FROM systempreferences WHERE variable = ?", {}, $var );
610 $value = 0 if ( $type && $type eq 'YesNo' && $value eq '' );
612 my $sth = $dbh->prepare( "
613 INSERT INTO systempreferences
614 ( variable, value )
615 VALUES( ?, ? )
616 ON DUPLICATE KEY UPDATE value = VALUES(value)
617 " );
619 if($sth->execute( $var, $value )) {
620 $sysprefs{$var} = $value;
622 $sth->finish;
625 # AUTOLOAD
626 # This implements C4::Config->foo, and simply returns
627 # C4::Context->config("foo"), as described in the documentation for
628 # &config, above.
630 # FIXME - Perhaps this should be extended to check &config first, and
631 # then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
632 # code, so it'd probably be best to delete it altogether so as not to
633 # encourage people to use it.
634 sub AUTOLOAD
636 my $self = shift;
638 $AUTOLOAD =~ s/.*:://; # Chop off the package name,
639 # leaving only the function name.
640 return $self->config($AUTOLOAD);
643 =head2 Zconn
645 $Zconn = C4::Context->Zconn
647 Returns a connection to the Zebra database
649 C<$self>
651 C<$server> one of the servers defined in the koha-conf.xml file
653 C<$async> whether this is a asynchronous connection
655 =cut
657 sub Zconn {
658 my ($self, $server, $async ) = @_;
659 my $cache_key = join ('::', (map { $_ // '' } ($server, $async )));
660 if ( (!defined($ENV{GATEWAY_INTERFACE})) && defined($context->{"Zconn"}->{$cache_key}) && (0 == $context->{"Zconn"}->{$cache_key}->errcode()) ) {
661 # if we are running the script from the commandline, lets try to use the caching
662 return $context->{"Zconn"}->{$cache_key};
664 $context->{"Zconn"}->{$cache_key}->destroy() if defined($context->{"Zconn"}->{$cache_key}); #destroy old connection before making a new one
665 $context->{"Zconn"}->{$cache_key} = &_new_Zconn( $server, $async );
666 return $context->{"Zconn"}->{$cache_key};
669 =head2 _new_Zconn
671 $context->{"Zconn"} = &_new_Zconn($server,$async);
673 Internal function. Creates a new database connection from the data given in the current context and returns it.
675 C<$server> one of the servers defined in the koha-conf.xml file
677 C<$async> whether this is a asynchronous connection
679 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
681 =cut
683 sub _new_Zconn {
684 my ( $server, $async ) = @_;
686 my $tried=0; # first attempt
687 my $Zconn; # connection object
688 my $elementSetName;
689 my $index_mode;
690 my $syntax;
692 $server //= "biblioserver";
694 if ( $server eq 'biblioserver' ) {
695 $index_mode = $context->{'config'}->{'zebra_bib_index_mode'} // 'dom';
696 } elsif ( $server eq 'authorityserver' ) {
697 $index_mode = $context->{'config'}->{'zebra_auth_index_mode'} // 'dom';
700 if ( $index_mode eq 'grs1' ) {
701 $elementSetName = 'F';
702 $syntax = ( $context->preference("marcflavour") eq 'UNIMARC' )
703 ? 'unimarc'
704 : 'usmarc';
706 } else { # $index_mode eq 'dom'
707 $syntax = 'xml';
708 $elementSetName = 'marcxml';
711 my $host = $context->{'listen'}->{$server}->{'content'};
712 my $user = $context->{"serverinfo"}->{$server}->{"user"};
713 my $password = $context->{"serverinfo"}->{$server}->{"password"};
714 eval {
715 # set options
716 my $o = new ZOOM::Options();
717 $o->option(user => $user) if $user && $password;
718 $o->option(password => $password) if $user && $password;
719 $o->option(async => 1) if $async;
720 $o->option(cqlfile=> $context->{"server"}->{$server}->{"cql2rpn"});
721 $o->option(cclfile=> $context->{"serverinfo"}->{$server}->{"ccl2rpn"});
722 $o->option(preferredRecordSyntax => $syntax);
723 $o->option(elementSetName => $elementSetName) if $elementSetName;
724 $o->option(databaseName => $context->{"config"}->{$server}||"biblios");
726 # create a new connection object
727 $Zconn= create ZOOM::Connection($o);
729 # forge to server
730 $Zconn->connect($host, 0);
732 # check for errors and warn
733 if ($Zconn->errcode() !=0) {
734 warn "something wrong with the connection: ". $Zconn->errmsg();
737 return $Zconn;
740 # _new_dbh
741 # Internal helper function (not a method!). This creates a new
742 # database connection from the data given in the current context, and
743 # returns it.
744 sub _new_dbh
747 ## $context
748 ## correct name for db_scheme
749 my $db_driver = $context->{db_driver};
751 my $db_name = $context->config("database");
752 my $db_host = $context->config("hostname");
753 my $db_port = $context->config("port") || '';
754 my $db_user = $context->config("user");
755 my $db_passwd = $context->config("pass");
756 # MJR added or die here, as we can't work without dbh
757 my $dbh = DBIx::Connector->connect(
758 "dbi:$db_driver:dbname=$db_name;host=$db_host;port=$db_port",
759 $db_user, $db_passwd,
761 'RaiseError' => $ENV{DEBUG} ? 1 : 0
765 # Check for the existence of a systempreference table; if we don't have this, we don't
766 # have a valid database and should not set RaiseError in order to allow the installer
767 # to run; installer will not run otherwise since we raise all db errors
769 eval {
770 local $dbh->{PrintError} = 0;
771 local $dbh->{RaiseError} = 1;
772 $dbh->do(qq{SELECT * FROM systempreferences WHERE 1 = 0 });
775 if ($@) {
776 $dbh->{RaiseError} = 0;
779 if ( $db_driver eq 'mysql' ) {
780 $dbh->{mysql_auto_reconnect} = 1;
783 my $tz = $ENV{TZ};
784 if ( $db_driver eq 'mysql' ) {
785 # Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
786 # this is better than modifying my.cnf (and forcing all communications to be in utf8)
787 $dbh->{'mysql_enable_utf8'}=1; #enable
788 $dbh->do("set NAMES 'utf8'");
789 ($tz) and $dbh->do(qq(SET time_zone = "$tz"));
791 elsif ( $db_driver eq 'Pg' ) {
792 $dbh->do( "set client_encoding = 'UTF8';" );
793 ($tz) and $dbh->do(qq(SET TIME ZONE = "$tz"));
795 return $dbh;
798 =head2 dbh
800 $dbh = C4::Context->dbh;
802 Returns a database handle connected to the Koha database for the
803 current context. If no connection has yet been made, this method
804 creates one, and connects to the database.
806 This database handle is cached for future use: if you call
807 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
808 times. If you need a second database handle, use C<&new_dbh> and
809 possibly C<&set_dbh>.
811 =cut
814 sub dbh
816 my $self = shift;
817 my $params = shift;
818 my $sth;
820 unless ( $params->{new} ) {
821 if ( defined($context->{db_driver}) && $context->{db_driver} eq 'mysql' && $context->{"dbh"} ) {
822 return $context->{"dbh"};
823 } elsif ( defined($context->{"dbh"}) && $context->{"dbh"}->ping() ) {
824 return $context->{"dbh"};
828 # No database handle or it died . Create one.
829 $context->{"dbh"} = &_new_dbh();
831 return $context->{"dbh"};
834 =head2 new_dbh
836 $dbh = C4::Context->new_dbh;
838 Creates a new connection to the Koha database for the current context,
839 and returns the database handle (a C<DBI::db> object).
841 The handle is not saved anywhere: this method is strictly a
842 convenience function; the point is that it knows which database to
843 connect to so that the caller doesn't have to know.
845 =cut
848 sub new_dbh
850 my $self = shift;
852 return &_new_dbh();
855 =head2 set_dbh
857 $my_dbh = C4::Connect->new_dbh;
858 C4::Connect->set_dbh($my_dbh);
860 C4::Connect->restore_dbh;
862 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
863 C<&set_context> and C<&restore_context>.
865 C<&set_dbh> saves the current database handle on a stack, then sets
866 the current database handle to C<$my_dbh>.
868 C<$my_dbh> is assumed to be a good database handle.
870 =cut
873 sub set_dbh
875 my $self = shift;
876 my $new_dbh = shift;
878 # Save the current database handle on the handle stack.
879 # We assume that $new_dbh is all good: if the caller wants to
880 # screw himself by passing an invalid handle, that's fine by
881 # us.
882 push @{$context->{"dbh_stack"}}, $context->{"dbh"};
883 $context->{"dbh"} = $new_dbh;
886 =head2 restore_dbh
888 C4::Context->restore_dbh;
890 Restores the database handle saved by an earlier call to
891 C<C4::Context-E<gt>set_dbh>.
893 =cut
896 sub restore_dbh
898 my $self = shift;
900 if ($#{$context->{"dbh_stack"}} < 0)
902 # Stack underflow
903 die "DBH stack underflow";
906 # Pop the old database handle and set it.
907 $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
909 # FIXME - If it is determined that restore_context should
910 # return something, then this function should, too.
913 =head2 queryparser
915 $queryparser = C4::Context->queryparser
917 Returns a handle to an initialized Koha::QueryParser::Driver::PQF object.
919 =cut
921 sub queryparser {
922 my $self = shift;
923 unless (defined $context->{"queryparser"}) {
924 $context->{"queryparser"} = &_new_queryparser();
927 return
928 defined( $context->{"queryparser"} )
929 ? $context->{"queryparser"}->new
930 : undef;
933 =head2 _new_queryparser
935 Internal helper function to create a new QueryParser object. QueryParser
936 is loaded dynamically so as to keep the lack of the QueryParser library from
937 getting in anyone's way.
939 =cut
941 sub _new_queryparser {
942 my $qpmodules = {
943 'OpenILS::QueryParser' => undef,
944 'Koha::QueryParser::Driver::PQF' => undef
946 if ( can_load( 'modules' => $qpmodules ) ) {
947 my $QParser = Koha::QueryParser::Driver::PQF->new();
948 my $config_file = $context->config('queryparser_config');
949 $config_file ||= '/etc/koha/searchengine/queryparser.yaml';
950 if ( $QParser->load_config($config_file) ) {
951 # Set 'keyword' as the default search class
952 $QParser->default_search_class('keyword');
953 # TODO: allow indexes to be configured in the database
954 return $QParser;
957 return;
960 =head2 marcfromkohafield
962 $dbh = C4::Context->marcfromkohafield;
964 Returns a hash with marcfromkohafield.
966 This hash is cached for future use: if you call
967 C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access
969 =cut
972 sub marcfromkohafield
974 my $retval = {};
976 # If the hash already exists, return it.
977 return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
979 # No hash. Create one.
980 $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
982 return $context->{"marcfromkohafield"};
985 # _new_marcfromkohafield
986 # Internal helper function (not a method!). This creates a new
987 # hash with stopwords
988 sub _new_marcfromkohafield
990 my $dbh = C4::Context->dbh;
991 my $marcfromkohafield;
992 my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
993 $sth->execute;
994 while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
995 my $retval = {};
996 $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
998 return $marcfromkohafield;
1001 =head2 stopwords
1003 $dbh = C4::Context->stopwords;
1005 Returns a hash with stopwords.
1007 This hash is cached for future use: if you call
1008 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
1010 =cut
1013 sub stopwords
1015 my $retval = {};
1017 # If the hash already exists, return it.
1018 return $context->{"stopwords"} if defined($context->{"stopwords"});
1020 # No hash. Create one.
1021 $context->{"stopwords"} = &_new_stopwords();
1023 return $context->{"stopwords"};
1026 # _new_stopwords
1027 # Internal helper function (not a method!). This creates a new
1028 # hash with stopwords
1029 sub _new_stopwords
1031 my $dbh = C4::Context->dbh;
1032 my $stopwordlist;
1033 my $sth = $dbh->prepare("select word from stopwords");
1034 $sth->execute;
1035 while (my $stopword = $sth->fetchrow_array) {
1036 $stopwordlist->{$stopword} = uc($stopword);
1038 $stopwordlist->{A} = "A" unless $stopwordlist;
1039 return $stopwordlist;
1042 =head2 userenv
1044 C4::Context->userenv;
1046 Retrieves a hash for user environment variables.
1048 This hash shall be cached for future use: if you call
1049 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
1051 =cut
1054 sub userenv {
1055 my $var = $context->{"activeuser"};
1056 if (defined $var and defined $context->{"userenv"}->{$var}) {
1057 return $context->{"userenv"}->{$var};
1058 } else {
1059 return;
1063 =head2 set_userenv
1065 C4::Context->set_userenv($usernum, $userid, $usercnum,
1066 $userfirstname, $usersurname,
1067 $userbranch, $branchname, $userflags,
1068 $emailaddress, $branchprinter, $persona);
1070 Establish a hash of user environment variables.
1072 set_userenv is called in Auth.pm
1074 =cut
1077 sub set_userenv {
1078 shift @_;
1079 my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $branchname, $userflags, $emailaddress, $branchprinter, $persona, $shibboleth)=
1080 map { Encode::is_utf8( $_ ) ? $_ : Encode::decode('UTF-8', $_) } # CGI::Session doesn't handle utf-8, so we decode it here
1082 my $var=$context->{"activeuser"} || '';
1083 my $cell = {
1084 "number" => $usernum,
1085 "id" => $userid,
1086 "cardnumber" => $usercnum,
1087 "firstname" => $userfirstname,
1088 "surname" => $usersurname,
1089 #possibly a law problem
1090 "branch" => $userbranch,
1091 "branchname" => $branchname,
1092 "flags" => $userflags,
1093 "emailaddress" => $emailaddress,
1094 "branchprinter" => $branchprinter,
1095 "persona" => $persona,
1096 "shibboleth" => $shibboleth,
1098 $context->{userenv}->{$var} = $cell;
1099 return $cell;
1102 sub set_shelves_userenv {
1103 my ($type, $shelves) = @_ or return;
1104 my $activeuser = $context->{activeuser} or return;
1105 $context->{userenv}->{$activeuser}->{barshelves} = $shelves if $type eq 'bar';
1106 $context->{userenv}->{$activeuser}->{pubshelves} = $shelves if $type eq 'pub';
1107 $context->{userenv}->{$activeuser}->{totshelves} = $shelves if $type eq 'tot';
1110 sub get_shelves_userenv {
1111 my $active;
1112 unless ($active = $context->{userenv}->{$context->{activeuser}}) {
1113 $debug and warn "get_shelves_userenv cannot retrieve context->{userenv}->{context->{activeuser}}";
1114 return;
1116 my $totshelves = $active->{totshelves} or undef;
1117 my $pubshelves = $active->{pubshelves} or undef;
1118 my $barshelves = $active->{barshelves} or undef;
1119 return ($totshelves, $pubshelves, $barshelves);
1122 =head2 _new_userenv
1124 C4::Context->_new_userenv($session); # FIXME: This calling style is wrong for what looks like an _internal function
1126 Builds a hash for user environment variables.
1128 This hash shall be cached for future use: if you call
1129 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
1131 _new_userenv is called in Auth.pm
1133 =cut
1136 sub _new_userenv
1138 shift; # Useless except it compensates for bad calling style
1139 my ($sessionID)= @_;
1140 $context->{"activeuser"}=$sessionID;
1143 =head2 _unset_userenv
1145 C4::Context->_unset_userenv;
1147 Destroys the hash for activeuser user environment variables.
1149 =cut
1153 sub _unset_userenv
1155 my ($sessionID)= @_;
1156 undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
1160 =head2 get_versions
1162 C4::Context->get_versions
1164 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'.
1166 =cut
1170 # A little example sub to show more debugging info for CGI::Carp
1171 sub get_versions {
1172 my %versions;
1173 $versions{kohaVersion} = Koha::version();
1174 $versions{kohaDbVersion} = C4::Context->preference('version');
1175 $versions{osVersion} = join(" ", POSIX::uname());
1176 $versions{perlVersion} = $];
1178 no warnings qw(exec); # suppress warnings if unable to find a program in $PATH
1179 $versions{mysqlVersion} = `mysql -V`;
1180 $versions{apacheVersion} = `httpd -v`;
1181 $versions{apacheVersion} = `httpd2 -v` unless $versions{apacheVersion} ;
1182 $versions{apacheVersion} = `apache2 -v` unless $versions{apacheVersion} ;
1183 $versions{apacheVersion} = `/usr/sbin/apache2 -v` unless $versions{apacheVersion} ;
1185 return %versions;
1189 =head2 tz
1191 C4::Context->tz
1193 Returns a DateTime::TimeZone object for the system timezone
1195 =cut
1197 sub tz {
1198 my $self = shift;
1199 if (!defined $context->{tz}) {
1200 $context->{tz} = DateTime::TimeZone->new(name => 'local');
1202 return $context->{tz};
1206 =head2 IsSuperLibrarian
1208 C4::Context->IsSuperlibrarian();
1210 =cut
1212 sub IsSuperLibrarian {
1213 my $userenv = C4::Context->userenv;
1215 unless ( $userenv and exists $userenv->{flags} ) {
1216 # If we reach this without a user environment,
1217 # assume that we're running from a command-line script,
1218 # and act as a superlibrarian.
1219 carp("C4::Context->userenv not defined!");
1220 return 1;
1223 return ($userenv->{flags}//0) % 2;
1226 =head2 interface
1228 Sets the current interface for later retrieval in any Perl module
1230 C4::Context->interface('opac');
1231 C4::Context->interface('intranet');
1232 my $interface = C4::Context->interface;
1234 =cut
1236 sub interface {
1237 my ($class, $interface) = @_;
1239 if (defined $interface) {
1240 $interface = lc $interface;
1241 if ($interface eq 'opac' || $interface eq 'intranet') {
1242 $context->{interface} = $interface;
1243 } else {
1244 warn "invalid interface : '$interface'";
1248 return $context->{interface} // 'opac';
1252 __END__
1254 =head1 ENVIRONMENT
1256 =head2 C<KOHA_CONF>
1258 Specifies the configuration file to read.
1260 =head1 SEE ALSO
1262 XML::Simple
1264 =head1 AUTHORS
1266 Andrew Arensburger <arensb at ooblick dot com>
1268 Joshua Ferraro <jmf at liblime dot com>