wr72054 fixing the z3950 search for acquisitions
[koha.git] / C4 / Context.pm
blob484d4e10a8a061a0678157795314ef7008534601
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 under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 use strict;
20 use warnings;
21 use vars qw($VERSION $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;
80 } # else there is no browser to send fatals to!
81 $VERSION = '3.00.00.036';
84 use DBI;
85 use ZOOM;
86 use XML::Simple;
87 use C4::Boolean;
88 use C4::Debug;
89 use POSIX ();
91 =head1 NAME
93 C4::Context - Maintain and manipulate the context of a Koha script
95 =head1 SYNOPSIS
97 use C4::Context;
99 use C4::Context("/path/to/koha-conf.xml");
101 $config_value = C4::Context->config("config_variable");
103 $koha_preference = C4::Context->preference("preference");
105 $db_handle = C4::Context->dbh;
107 $Zconn = C4::Context->Zconn;
109 $stopwordhash = C4::Context->stopwords;
111 =head1 DESCRIPTION
113 When a Koha script runs, it makes use of a certain number of things:
114 configuration settings in F</etc/koha/koha-conf.xml>, a connection to the Koha
115 databases, and so forth. These things make up the I<context> in which
116 the script runs.
118 This module takes care of setting up the context for a script:
119 figuring out which configuration file to load, and loading it, opening
120 a connection to the right database, and so forth.
122 Most scripts will only use one context. They can simply have
124 use C4::Context;
126 at the top.
128 Other scripts may need to use several contexts. For instance, if a
129 library has two databases, one for a certain collection, and the other
130 for everything else, it might be necessary for a script to use two
131 different contexts to search both databases. Such scripts should use
132 the C<&set_context> and C<&restore_context> functions, below.
134 By default, C4::Context reads the configuration from
135 F</etc/koha/koha-conf.xml>. This may be overridden by setting the C<$KOHA_CONF>
136 environment variable to the pathname of a configuration file to use.
138 =head1 METHODS
140 =cut
143 # In addition to what is said in the POD above, a Context object is a
144 # reference-to-hash with the following fields:
146 # config
147 # A reference-to-hash whose keys and values are the
148 # configuration variables and values specified in the config
149 # file (/etc/koha/koha-conf.xml).
150 # dbh
151 # A handle to the appropriate database for this context.
152 # dbh_stack
153 # Used by &set_dbh and &restore_dbh to hold other database
154 # handles for this context.
155 # Zconn
156 # A connection object for the Zebra server
158 # Koha's main configuration file koha-conf.xml
159 # is searched for according to this priority list:
161 # 1. Path supplied via use C4::Context '/path/to/koha-conf.xml'
162 # 2. Path supplied in KOHA_CONF environment variable.
163 # 3. Path supplied in INSTALLED_CONFIG_FNAME, as long
164 # as value has changed from its default of
165 # '__KOHA_CONF_DIR__/koha-conf.xml', as happens
166 # when Koha is installed in 'standard' or 'single'
167 # mode.
168 # 4. Path supplied in CONFIG_FNAME.
170 # The first entry that refers to a readable file is used.
172 use constant CONFIG_FNAME => "/etc/koha/koha-conf.xml";
173 # Default config file, if none is specified
175 my $INSTALLED_CONFIG_FNAME = '__KOHA_CONF_DIR__/koha-conf.xml';
176 # path to config file set by installer
177 # __KOHA_CONF_DIR__ is set by rewrite-confg.PL
178 # when Koha is installed in 'standard' or 'single'
179 # mode. If Koha was installed in 'dev' mode,
180 # __KOHA_CONF_DIR__ is *not* rewritten; instead
181 # developers should set the KOHA_CONF environment variable
183 $context = undef; # Initially, no context is set
184 @context_stack = (); # Initially, no saved contexts
187 =head2 KOHAVERSION
189 returns the kohaversion stored in kohaversion.pl file
191 =cut
193 sub KOHAVERSION {
194 my $cgidir = C4::Context->intranetdir;
196 # Apparently the GIT code does not run out of a CGI-BIN subdirectory
197 # but distribution code does? (Stan, 1jan08)
198 if(-d $cgidir . "/cgi-bin"){
199 my $cgidir .= "/cgi-bin";
202 do $cgidir."/kohaversion.pl" || die "NO $cgidir/kohaversion.pl";
203 return kohaversion();
205 =head2 read_config_file
207 Reads the specified Koha config file.
209 Returns an object containing the configuration variables. The object's
210 structure is a bit complex to the uninitiated ... take a look at the
211 koha-conf.xml file as well as the XML::Simple documentation for details. Or,
212 here are a few examples that may give you what you need:
214 The simple elements nested within the <config> element:
216 my $pass = $koha->{'config'}->{'pass'};
218 The <listen> elements:
220 my $listen = $koha->{'listen'}->{'biblioserver'}->{'content'};
222 The elements nested within the <server> element:
224 my $ccl2rpn = $koha->{'server'}->{'biblioserver'}->{'cql2rpn'};
226 Returns undef in case of error.
228 =cut
230 sub read_config_file { # Pass argument naming config file to read
231 my $koha = XMLin(shift, keyattr => ['id'], forcearray => ['listen', 'server', 'serverinfo'], suppressempty => '');
232 return $koha; # Return value: ref-to-hash holding the configuration
235 # db_scheme2dbi
236 # Translates the full text name of a database into de appropiate dbi name
238 sub db_scheme2dbi {
239 my $name = shift;
241 for ($name) {
242 # FIXME - Should have other databases.
243 if (/mysql/i) { return("mysql"); }
244 if (/Postgres|Pg|PostgresSQL/) { return("Pg"); }
245 if (/oracle/i) { return("Oracle"); }
247 return undef; # Just in case
250 sub import {
251 # Create the default context ($C4::Context::Context)
252 # the first time the module is called
253 # (a config file can be optionaly passed)
255 # default context allready exists?
256 return if $context;
258 # no ? so load it!
259 my ($pkg,$config_file) = @_ ;
260 my $new_ctx = __PACKAGE__->new($config_file);
261 return unless $new_ctx;
263 # if successfully loaded, use it by default
264 $new_ctx->set_context;
268 =head2 new
270 $context = new C4::Context;
271 $context = new C4::Context("/path/to/koha-conf.xml");
273 Allocates a new context. Initializes the context from the specified
274 file, which defaults to either the file given by the C<$KOHA_CONF>
275 environment variable, or F</etc/koha/koha-conf.xml>.
277 C<&new> does not set this context as the new default context; for
278 that, use C<&set_context>.
280 =cut
283 # Revision History:
284 # 2004-08-10 A. Tarallo: Added check if the conf file is not empty
285 sub new {
286 my $class = shift;
287 my $conf_fname = shift; # Config file to load
288 my $self = {};
290 # check that the specified config file exists and is not empty
291 undef $conf_fname unless
292 (defined $conf_fname && -s $conf_fname);
293 # Figure out a good config file to load if none was specified.
294 if (!defined($conf_fname))
296 # If the $KOHA_CONF environment variable is set, use
297 # that. Otherwise, use the built-in default.
298 if (exists $ENV{"KOHA_CONF"} and $ENV{'KOHA_CONF'} and -s $ENV{"KOHA_CONF"}) {
299 $conf_fname = $ENV{"KOHA_CONF"};
300 } elsif ($INSTALLED_CONFIG_FNAME !~ /__KOHA_CONF_DIR/ and -s $INSTALLED_CONFIG_FNAME) {
301 # NOTE: be careful -- don't change __KOHA_CONF_DIR in the above
302 # regex to anything else -- don't want installer to rewrite it
303 $conf_fname = $INSTALLED_CONFIG_FNAME;
304 } elsif (-s CONFIG_FNAME) {
305 $conf_fname = CONFIG_FNAME;
306 } else {
307 warn "unable to locate Koha configuration file koha-conf.xml";
308 return undef;
311 # Load the desired config file.
312 $self = read_config_file($conf_fname);
313 $self->{"config_file"} = $conf_fname;
315 warn "read_config_file($conf_fname) returned undef" if !defined($self->{"config"});
316 return undef if !defined($self->{"config"});
318 $self->{"dbh"} = undef; # Database handle
319 $self->{"Zconn"} = undef; # Zebra Connections
320 $self->{"stopwords"} = undef; # stopwords list
321 $self->{"marcfromkohafield"} = undef; # the hash with relations between koha table fields and MARC field/subfield
322 $self->{"userenv"} = undef; # User env
323 $self->{"activeuser"} = undef; # current active user
324 $self->{"shelves"} = undef;
326 bless $self, $class;
327 return $self;
330 =head2 set_context
332 $context = new C4::Context;
333 $context->set_context();
335 set_context C4::Context $context;
338 restore_context C4::Context;
340 In some cases, it might be necessary for a script to use multiple
341 contexts. C<&set_context> saves the current context on a stack, then
342 sets the context to C<$context>, which will be used in future
343 operations. To restore the previous context, use C<&restore_context>.
345 =cut
348 sub set_context
350 my $self = shift;
351 my $new_context; # The context to set
353 # Figure out whether this is a class or instance method call.
355 # We're going to make the assumption that control got here
356 # through valid means, i.e., that the caller used an instance
357 # or class method call, and that control got here through the
358 # usual inheritance mechanisms. The caller can, of course,
359 # break this assumption by playing silly buggers, but that's
360 # harder to do than doing it properly, and harder to check
361 # for.
362 if (ref($self) eq "")
364 # Class method. The new context is the next argument.
365 $new_context = shift;
366 } else {
367 # Instance method. The new context is $self.
368 $new_context = $self;
371 # Save the old context, if any, on the stack
372 push @context_stack, $context if defined($context);
374 # Set the new context
375 $context = $new_context;
378 =head2 restore_context
380 &restore_context;
382 Restores the context set by C<&set_context>.
384 =cut
387 sub restore_context
389 my $self = shift;
391 if ($#context_stack < 0)
393 # Stack underflow.
394 die "Context stack underflow";
397 # Pop the old context and set it.
398 $context = pop @context_stack;
400 # FIXME - Should this return something, like maybe the context
401 # that was current when this was called?
404 =head2 config
406 $value = C4::Context->config("config_variable");
408 $value = C4::Context->config_variable;
410 Returns the value of a variable specified in the configuration file
411 from which the current context was created.
413 The second form is more compact, but of course may conflict with
414 method names. If there is a configuration variable called "new", then
415 C<C4::Config-E<gt>new> will not return it.
417 =cut
419 sub _common_config ($$) {
420 my $var = shift;
421 my $term = shift;
422 return undef if !defined($context->{$term});
423 # Presumably $self->{$term} might be
424 # undefined if the config file given to &new
425 # didn't exist, and the caller didn't bother
426 # to check the return value.
428 # Return the value of the requested config variable
429 return $context->{$term}->{$var};
432 sub config {
433 return _common_config($_[1],'config');
435 sub zebraconfig {
436 return _common_config($_[1],'server');
438 sub ModZebrations {
439 return _common_config($_[1],'serverinfo');
442 =head2 preference
444 $sys_preference = C4::Context->preference('some_variable');
446 Looks up the value of the given system preference in the
447 systempreferences table of the Koha database, and returns it. If the
448 variable is not set or does not exist, undef is returned.
450 In case of an error, this may return 0.
452 Note: It is impossible to tell the difference between system
453 preferences which do not exist, and those whose values are set to NULL
454 with this method.
456 =cut
458 # FIXME: running this under mod_perl will require a means of
459 # flushing the caching mechanism.
461 my %sysprefs;
463 sub preference {
464 my $self = shift;
465 my $var = shift; # The system preference to return
467 if (exists $sysprefs{$var}) {
468 return $sysprefs{$var};
471 my $dbh = C4::Context->dbh or return 0;
473 # Look up systempreferences.variable==$var
474 my $sql = <<'END_SQL';
475 SELECT value
476 FROM systempreferences
477 WHERE variable=?
478 LIMIT 1
479 END_SQL
480 $sysprefs{$var} = $dbh->selectrow_array( $sql, {}, $var );
481 return $sysprefs{$var};
484 sub boolean_preference ($) {
485 my $self = shift;
486 my $var = shift; # The system preference to return
487 my $it = preference($self, $var);
488 return defined($it)? C4::Boolean::true_p($it): undef;
491 =head2 clear_syspref_cache
493 C4::Context->clear_syspref_cache();
495 cleans the internal cache of sysprefs. Please call this method if
496 you update the systempreferences table. Otherwise, your new changes
497 will not be seen by this process.
499 =cut
501 sub clear_syspref_cache {
502 %sysprefs = ();
505 =head2 set_preference
507 C4::Context->set_preference( $variable, $value );
509 This updates a preference's value both in the systempreferences table and in
510 the sysprefs cache.
512 =cut
514 sub set_preference {
515 my $self = shift;
516 my $var = shift;
517 my $value = shift;
519 my $dbh = C4::Context->dbh or return 0;
521 my $type = $dbh->selectrow_array( "SELECT type FROM systempreferences WHERE variable = ?", {}, $var );
523 $value = 0 if ( $type && $type eq 'YesNo' && $value eq '' );
525 my $sth = $dbh->prepare( "
526 INSERT INTO systempreferences
527 ( variable, value )
528 VALUES( ?, ? )
529 ON DUPLICATE KEY UPDATE value = VALUES(value)
530 " );
532 $sth->execute( $var, $value );
533 $sth->finish;
536 # AUTOLOAD
537 # This implements C4::Config->foo, and simply returns
538 # C4::Context->config("foo"), as described in the documentation for
539 # &config, above.
541 # FIXME - Perhaps this should be extended to check &config first, and
542 # then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
543 # code, so it'd probably be best to delete it altogether so as not to
544 # encourage people to use it.
545 sub AUTOLOAD
547 my $self = shift;
549 $AUTOLOAD =~ s/.*:://; # Chop off the package name,
550 # leaving only the function name.
551 return $self->config($AUTOLOAD);
554 =head2 Zconn
556 $Zconn = C4::Context->Zconn
558 Returns a connection to the Zebra database for the current
559 context. If no connection has yet been made, this method
560 creates one and connects.
562 C<$self>
564 C<$server> one of the servers defined in the koha-conf.xml file
566 C<$async> whether this is a asynchronous connection
568 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
571 =cut
573 sub Zconn {
574 my $self=shift;
575 my $server=shift;
576 my $async=shift;
577 my $auth=shift;
578 my $piggyback=shift;
579 my $syntax=shift;
580 if ( defined($context->{"Zconn"}->{$server}) && (0 == $context->{"Zconn"}->{$server}->errcode()) ) {
581 return $context->{"Zconn"}->{$server};
582 # No connection object or it died. Create one.
583 }else {
584 # release resources if we're closing a connection and making a new one
585 # FIXME: this needs to be smarter -- an error due to a malformed query or
586 # a missing index does not necessarily require us to close the connection
587 # and make a new one, particularly for a batch job. However, at
588 # first glance it does not look like there's a way to easily check
589 # the basic health of a ZOOM::Connection
590 $context->{"Zconn"}->{$server}->destroy() if defined($context->{"Zconn"}->{$server});
592 $context->{"Zconn"}->{$server} = &_new_Zconn($server,$async,$auth,$piggyback,$syntax);
593 return $context->{"Zconn"}->{$server};
597 =head2 _new_Zconn
599 $context->{"Zconn"} = &_new_Zconn($server,$async);
601 Internal function. Creates a new database connection from the data given in the current context and returns it.
603 C<$server> one of the servers defined in the koha-conf.xml file
605 C<$async> whether this is a asynchronous connection
607 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
609 =cut
611 sub _new_Zconn {
612 my ($server,$async,$auth,$piggyback,$syntax) = @_;
614 my $tried=0; # first attempt
615 my $Zconn; # connection object
616 $server = "biblioserver" unless $server;
617 $syntax = "usmarc" unless $syntax;
619 my $host = $context->{'listen'}->{$server}->{'content'};
620 my $servername = $context->{"config"}->{$server};
621 my $user = $context->{"serverinfo"}->{$server}->{"user"};
622 my $password = $context->{"serverinfo"}->{$server}->{"password"};
623 $auth = 1 if($user && $password);
624 retry:
625 eval {
626 # set options
627 my $o = new ZOOM::Options();
628 $o->option(user=>$user) if $auth;
629 $o->option(password=>$password) if $auth;
630 $o->option(async => 1) if $async;
631 $o->option(count => $piggyback) if $piggyback;
632 $o->option(cqlfile=> $context->{"server"}->{$server}->{"cql2rpn"});
633 $o->option(cclfile=> $context->{"serverinfo"}->{$server}->{"ccl2rpn"});
634 $o->option(preferredRecordSyntax => $syntax);
635 $o->option(elementSetName => "F"); # F for 'full' as opposed to B for 'brief'
636 $o->option(databaseName => ($servername?$servername:"biblios"));
638 # create a new connection object
639 $Zconn= create ZOOM::Connection($o);
641 # forge to server
642 $Zconn->connect($host, 0);
644 # check for errors and warn
645 if ($Zconn->errcode() !=0) {
646 warn "something wrong with the connection: ". $Zconn->errmsg();
650 # if ($@) {
651 # # Koha manages the Zebra server -- this doesn't work currently for me because of permissions issues
652 # # Also, I'm skeptical about whether it's the best approach
653 # warn "problem with Zebra";
654 # if ( C4::Context->preference("ManageZebra") ) {
655 # if ($@->code==10000 && $tried==0) { ##No connection try restarting Zebra
656 # $tried=1;
657 # warn "trying to restart Zebra";
658 # my $res=system("zebrasrv -f $ENV{'KOHA_CONF'} >/koha/log/zebra-error.log");
659 # goto "retry";
660 # } else {
661 # warn "Error ", $@->code(), ": ", $@->message(), "\n";
662 # $Zconn="error";
663 # return $Zconn;
667 return $Zconn;
670 # _new_dbh
671 # Internal helper function (not a method!). This creates a new
672 # database connection from the data given in the current context, and
673 # returns it.
674 sub _new_dbh
677 ## $context
678 ## correct name for db_schme
679 my $db_driver;
680 if ($context->config("db_scheme")){
681 $db_driver=db_scheme2dbi($context->config("db_scheme"));
682 }else{
683 $db_driver="mysql";
686 my $db_name = $context->config("database");
687 my $db_host = $context->config("hostname");
688 my $db_port = $context->config("port") || '';
689 my $db_user = $context->config("user");
690 my $db_passwd = $context->config("pass");
691 # MJR added or die here, as we can't work without dbh
692 my $dbh= DBI->connect("DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port",
693 $db_user, $db_passwd) or die $DBI::errstr;
694 my $tz = $ENV{TZ};
695 if ( $db_driver eq 'mysql' ) {
696 # Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
697 # this is better than modifying my.cnf (and forcing all communications to be in utf8)
698 $dbh->{'mysql_enable_utf8'}=1; #enable
699 $dbh->do("set NAMES 'utf8'");
700 ($tz) and $dbh->do(qq(SET time_zone = "$tz"));
702 elsif ( $db_driver eq 'Pg' ) {
703 $dbh->do( "set client_encoding = 'UTF8';" );
704 ($tz) and $dbh->do(qq(SET TIME ZONE = "$tz"));
706 return $dbh;
709 =head2 dbh
711 $dbh = C4::Context->dbh;
713 Returns a database handle connected to the Koha database for the
714 current context. If no connection has yet been made, this method
715 creates one, and connects to the database.
717 This database handle is cached for future use: if you call
718 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
719 times. If you need a second database handle, use C<&new_dbh> and
720 possibly C<&set_dbh>.
722 =cut
725 sub dbh
727 my $self = shift;
728 my $sth;
730 if (defined($context->{"dbh"}) && $context->{"dbh"}->ping()) {
731 return $context->{"dbh"};
734 # No database handle or it died . Create one.
735 $context->{"dbh"} = &_new_dbh();
737 return $context->{"dbh"};
740 =head2 new_dbh
742 $dbh = C4::Context->new_dbh;
744 Creates a new connection to the Koha database for the current context,
745 and returns the database handle (a C<DBI::db> object).
747 The handle is not saved anywhere: this method is strictly a
748 convenience function; the point is that it knows which database to
749 connect to so that the caller doesn't have to know.
751 =cut
754 sub new_dbh
756 my $self = shift;
758 return &_new_dbh();
761 =head2 set_dbh
763 $my_dbh = C4::Connect->new_dbh;
764 C4::Connect->set_dbh($my_dbh);
766 C4::Connect->restore_dbh;
768 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
769 C<&set_context> and C<&restore_context>.
771 C<&set_dbh> saves the current database handle on a stack, then sets
772 the current database handle to C<$my_dbh>.
774 C<$my_dbh> is assumed to be a good database handle.
776 =cut
779 sub set_dbh
781 my $self = shift;
782 my $new_dbh = shift;
784 # Save the current database handle on the handle stack.
785 # We assume that $new_dbh is all good: if the caller wants to
786 # screw himself by passing an invalid handle, that's fine by
787 # us.
788 push @{$context->{"dbh_stack"}}, $context->{"dbh"};
789 $context->{"dbh"} = $new_dbh;
792 =head2 restore_dbh
794 C4::Context->restore_dbh;
796 Restores the database handle saved by an earlier call to
797 C<C4::Context-E<gt>set_dbh>.
799 =cut
802 sub restore_dbh
804 my $self = shift;
806 if ($#{$context->{"dbh_stack"}} < 0)
808 # Stack underflow
809 die "DBH stack underflow";
812 # Pop the old database handle and set it.
813 $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
815 # FIXME - If it is determined that restore_context should
816 # return something, then this function should, too.
819 =head2 marcfromkohafield
821 $dbh = C4::Context->marcfromkohafield;
823 Returns a hash with marcfromkohafield.
825 This hash is cached for future use: if you call
826 C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access
828 =cut
831 sub marcfromkohafield
833 my $retval = {};
835 # If the hash already exists, return it.
836 return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
838 # No hash. Create one.
839 $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
841 return $context->{"marcfromkohafield"};
844 # _new_marcfromkohafield
845 # Internal helper function (not a method!). This creates a new
846 # hash with stopwords
847 sub _new_marcfromkohafield
849 my $dbh = C4::Context->dbh;
850 my $marcfromkohafield;
851 my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
852 $sth->execute;
853 while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
854 my $retval = {};
855 $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
857 return $marcfromkohafield;
860 =head2 stopwords
862 $dbh = C4::Context->stopwords;
864 Returns a hash with stopwords.
866 This hash is cached for future use: if you call
867 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
869 =cut
872 sub stopwords
874 my $retval = {};
876 # If the hash already exists, return it.
877 return $context->{"stopwords"} if defined($context->{"stopwords"});
879 # No hash. Create one.
880 $context->{"stopwords"} = &_new_stopwords();
882 return $context->{"stopwords"};
885 # _new_stopwords
886 # Internal helper function (not a method!). This creates a new
887 # hash with stopwords
888 sub _new_stopwords
890 my $dbh = C4::Context->dbh;
891 my $stopwordlist;
892 my $sth = $dbh->prepare("select word from stopwords");
893 $sth->execute;
894 while (my $stopword = $sth->fetchrow_array) {
895 $stopwordlist->{$stopword} = uc($stopword);
897 $stopwordlist->{A} = "A" unless $stopwordlist;
898 return $stopwordlist;
901 =head2 userenv
903 C4::Context->userenv;
905 Retrieves a hash for user environment variables.
907 This hash shall be cached for future use: if you call
908 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
910 =cut
913 sub userenv {
914 my $var = $context->{"activeuser"};
915 return $context->{"userenv"}->{$var} if (defined $var and defined $context->{"userenv"}->{$var});
916 # insecure=1 management
917 if ($context->{"dbh"} && $context->preference('insecure')) {
918 my %insecure;
919 $insecure{flags} = '16382';
920 $insecure{branchname} ='Insecure';
921 $insecure{number} ='0';
922 $insecure{cardnumber} ='0';
923 $insecure{id} = 'insecure';
924 $insecure{branch} = 'INS';
925 $insecure{emailaddress} = 'test@mode.insecure.com';
926 return \%insecure;
927 } else {
928 return;
932 =head2 set_userenv
934 C4::Context->set_userenv($usernum, $userid, $usercnum, $userfirstname,
935 $usersurname, $userbranch, $userflags, $emailaddress);
937 Establish a hash of user environment variables.
939 set_userenv is called in Auth.pm
941 =cut
944 sub set_userenv {
945 my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $branchname, $userflags, $emailaddress, $branchprinter)= @_;
946 my $var=$context->{"activeuser"};
947 my $cell = {
948 "number" => $usernum,
949 "id" => $userid,
950 "cardnumber" => $usercnum,
951 "firstname" => $userfirstname,
952 "surname" => $usersurname,
953 #possibly a law problem
954 "branch" => $userbranch,
955 "branchname" => $branchname,
956 "flags" => $userflags,
957 "emailaddress" => $emailaddress,
958 "branchprinter" => $branchprinter
960 $context->{userenv}->{$var} = $cell;
961 return $cell;
964 sub set_shelves_userenv ($$) {
965 my ($type, $shelves) = @_ or return undef;
966 my $activeuser = $context->{activeuser} or return undef;
967 $context->{userenv}->{$activeuser}->{barshelves} = $shelves if $type eq 'bar';
968 $context->{userenv}->{$activeuser}->{pubshelves} = $shelves if $type eq 'pub';
969 $context->{userenv}->{$activeuser}->{totshelves} = $shelves if $type eq 'tot';
972 sub get_shelves_userenv () {
973 my $active;
974 unless ($active = $context->{userenv}->{$context->{activeuser}}) {
975 $debug and warn "get_shelves_userenv cannot retrieve context->{userenv}->{context->{activeuser}}";
976 return undef;
978 my $totshelves = $active->{totshelves} or undef;
979 my $pubshelves = $active->{pubshelves} or undef;
980 my $barshelves = $active->{barshelves} or undef;
981 return ($totshelves, $pubshelves, $barshelves);
984 =head2 _new_userenv
986 C4::Context->_new_userenv($session); # FIXME: This calling style is wrong for what looks like an _internal function
988 Builds a hash for user environment variables.
990 This hash shall be cached for future use: if you call
991 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
993 _new_userenv is called in Auth.pm
995 =cut
998 sub _new_userenv
1000 shift; # Useless except it compensates for bad calling style
1001 my ($sessionID)= @_;
1002 $context->{"activeuser"}=$sessionID;
1005 =head2 _unset_userenv
1007 C4::Context->_unset_userenv;
1009 Destroys the hash for activeuser user environment variables.
1011 =cut
1015 sub _unset_userenv
1017 my ($sessionID)= @_;
1018 undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
1022 =head2 get_versions
1024 C4::Context->get_versions
1026 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'.
1028 =cut
1032 # A little example sub to show more debugging info for CGI::Carp
1033 sub get_versions {
1034 my %versions;
1035 $versions{kohaVersion} = KOHAVERSION();
1036 $versions{kohaDbVersion} = C4::Context->preference('version');
1037 $versions{osVersion} = join(" ", POSIX::uname());
1038 $versions{perlVersion} = $];
1040 no warnings qw(exec); # suppress warnings if unable to find a program in $PATH
1041 $versions{mysqlVersion} = `mysql -V`;
1042 $versions{apacheVersion} = `httpd -v`;
1043 $versions{apacheVersion} = `httpd2 -v` unless $versions{apacheVersion} ;
1044 $versions{apacheVersion} = `apache2 -v` unless $versions{apacheVersion} ;
1045 $versions{apacheVersion} = `/usr/sbin/apache2 -v` unless $versions{apacheVersion} ;
1047 return %versions;
1052 __END__
1054 =head1 ENVIRONMENT
1056 =head2 C<KOHA_CONF>
1058 Specifies the configuration file to read.
1060 =head1 SEE ALSO
1062 XML::Simple
1064 =head1 AUTHORS
1066 Andrew Arensburger <arensb at ooblick dot com>
1068 Joshua Ferraro <jmf at liblime dot com>
1070 =cut