File Coverage

File:C4/Context.pm
Coverage:33.7%

linestmtbrancondsubtimecode
1package C4::Context;
2# Copyright 2002 Katipo Communications
3#
4# This file is part of Koha.
5#
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.
10#
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.
14#
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.
18
19
60
60
60
589
282
2261
use strict;
20
60
60
60
420
247
9535
use warnings;
21
60
60
60
668
1479
30914
use vars qw($VERSION $AUTOLOAD $context @context_stack $servers $memcached $ismemcached);
22
23BEGIN {
24
60
610
        if ($ENV{'HTTP_USER_AGENT'}) {
25
0
0
                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
0
0
                import CGI::Carp qw(fatalsToBrowser);
29                        sub handle_errors {
30
0
0
                            my $msg = shift;
31
0
0
                            my $debug_level;
32
0
0
0
0
                            eval {C4::Context->dbh();};
33
0
0
                            if ($@){
34
0
0
                                $debug_level = 1;
35                            }
36                            else {
37
0
0
                                $debug_level = C4::Context->preference("DebugLevel");
38                            }
39
40
0
0
                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>
45                );
46
0
0
                                if ($debug_level eq "2"){
47                                        # debug 2 , print extra info too.
48
0
0
                                        my %versions = get_versions();
49
50                # a little example table with various version info";
51
0
0
                                        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>";
63
64                                } elsif ($debug_level eq "1"){
65
0
0
                                        print "
66                                                <h1>Koha error</h1>
67                                                <p>The following fatal error has occurred:</p>
68                        <pre><code>$msg</code></pre>";
69                                } else {
70
0
0
                                        print "<p>production mode - trapped fatal error</p>";
71                                }
72
0
0
                print "</body></html>";
73                        }
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
0
0
                if ($ENV{KOHA_BACKTRACES}) {
78
0
0
                        $main::SIG{__DIE__} = \&CGI::Carp::confess;
79                }
80    } # else there is no browser to send fatals to!
81
82    # Check if there are memcached servers set
83
60
324
    $servers = $ENV{'MEMCACHED_SERVERS'};
84
60
353
    if ($servers) {
85        # Load required libraries and create the memcached object
86
0
0
        require Cache::Memcached;
87
0
0
        $memcached = Cache::Memcached->new({
88        servers => [ $servers ],
89        debug => 0,
90        compress_threshold => 10_000,
91        expire_time => 600,
92        namespace => $ENV{'MEMCACHED_NAMESPACE'} || 'koha'
93    });
94        # Verify memcached available (set a variable and test the output)
95
0
0
    $ismemcached = $memcached->set('ismemcached','1');
96    }
97
98
60
1824
    $VERSION = '3.00.00.036';
99}
100
101
60
60
60
87303
1440095
5185
use DBI;
102
60
60
60
33687
1294607
3448
use ZOOM;
103
60
60
60
57046
717913
2167
use XML::Simple;
104
60
60
60
16591
444
3613
use C4::Boolean;
105
60
60
60
11390
247
6948
use C4::Debug;
106
60
60
60
9282
364719
2505
use POSIX ();
107
60
60
60
61816
1420863
11862
use DateTime::TimeZone;
108
109 - 158
=head1 NAME

C4::Context - Maintain and manipulate the context of a Koha script

=head1 SYNOPSIS

  use C4::Context;

  use C4::Context("/path/to/koha-conf.xml");

  $config_value = C4::Context->config("config_variable");

  $koha_preference = C4::Context->preference("preference");

  $db_handle = C4::Context->dbh;

  $Zconn = C4::Context->Zconn;

  $stopwordhash = C4::Context->stopwords;

=head1 DESCRIPTION

When a Koha script runs, it makes use of a certain number of things:
configuration settings in F</etc/koha/koha-conf.xml>, a connection to the Koha
databases, and so forth. These things make up the I<context> in which
the script runs.

This module takes care of setting up the context for a script:
figuring out which configuration file to load, and loading it, opening
a connection to the right database, and so forth.

Most scripts will only use one context. They can simply have

  use C4::Context;

at the top.

Other scripts may need to use several contexts. For instance, if a
library has two databases, one for a certain collection, and the other
for everything else, it might be necessary for a script to use two
different contexts to search both databases. Such scripts should use
the C<&set_context> and C<&restore_context> functions, below.

By default, C4::Context reads the configuration from
F</etc/koha/koha-conf.xml>. This may be overridden by setting the C<$KOHA_CONF>
environment variable to the pathname of a configuration file to use.

=head1 METHODS

=cut
159
160#'
161# In addition to what is said in the POD above, a Context object is a
162# reference-to-hash with the following fields:
163#
164# config
165# A reference-to-hash whose keys and values are the
166# configuration variables and values specified in the config
167# file (/etc/koha/koha-conf.xml).
168# dbh
169# A handle to the appropriate database for this context.
170# dbh_stack
171# Used by &set_dbh and &restore_dbh to hold other database
172# handles for this context.
173# Zconn
174# A connection object for the Zebra server
175
176# Koha's main configuration file koha-conf.xml
177# is searched for according to this priority list:
178#
179# 1. Path supplied via use C4::Context '/path/to/koha-conf.xml'
180# 2. Path supplied in KOHA_CONF environment variable.
181# 3. Path supplied in INSTALLED_CONFIG_FNAME, as long
182# as value has changed from its default of
183# '__KOHA_CONF_DIR__/koha-conf.xml', as happens
184# when Koha is installed in 'standard' or 'single'
185# mode.
186# 4. Path supplied in CONFIG_FNAME.
187#
188# The first entry that refers to a readable file is used.
189
190
60
60
60
1560
1386
1716
use constant CONFIG_FNAME => "/etc/koha/koha-conf.xml";
191                # Default config file, if none is specified
192
193my $INSTALLED_CONFIG_FNAME = '__KOHA_CONF_DIR__/koha-conf.xml';
194                # path to config file set by installer
195                # __KOHA_CONF_DIR__ is set by rewrite-confg.PL
196                # when Koha is installed in 'standard' or 'single'
197                # mode. If Koha was installed in 'dev' mode,
198                # __KOHA_CONF_DIR__ is *not* rewritten; instead
199                # developers should set the KOHA_CONF environment variable
200
201$context = undef; # Initially, no context is set
202@context_stack = (); # Initially, no saved contexts
203
204
205 - 209
=head2 KOHAVERSION

returns the kohaversion stored in kohaversion.pl file

=cut
210
211sub KOHAVERSION {
212
0
0
    my $cgidir = C4::Context->intranetdir;
213
214    # Apparently the GIT code does not run out of a CGI-BIN subdirectory
215    # but distribution code does? (Stan, 1jan08)
216
0
0
    if(-d $cgidir . "/cgi-bin"){
217
0
0
        my $cgidir .= "/cgi-bin";
218    }
219
220
0
0
    do $cgidir."/kohaversion.pl" || die "NO $cgidir/kohaversion.pl";
221
0
0
    return kohaversion();
222}
223 - 246
=head2 read_config_file

Reads the specified Koha config file. 

Returns an object containing the configuration variables. The object's
structure is a bit complex to the uninitiated ... take a look at the
koha-conf.xml file as well as the XML::Simple documentation for details. Or,
here are a few examples that may give you what you need:

The simple elements nested within the <config> element:

    my $pass = $koha->{'config'}->{'pass'};

The <listen> elements:

    my $listen = $koha->{'listen'}->{'biblioserver'}->{'content'};

The elements nested within the <server> element:

    my $ccl2rpn = $koha->{'server'}->{'biblioserver'}->{'cql2rpn'};

Returns undef in case of error.

=cut
247
248sub read_config_file { # Pass argument naming config file to read
249
60
1189
    my $koha = XMLin(shift, keyattr => ['id'], forcearray => ['listen', 'server', 'serverinfo'], suppressempty => '');
250
251
60
7582406
    if ($ismemcached) {
252
0
0
      $memcached->set('kohaconf',$koha);
253    }
254
255
60
5356
    return $koha; # Return value: ref-to-hash holding the configuration
256}
257
258 - 262
=head2 ismemcached

Returns the value of the $ismemcached variable (0/1)

=cut
263
264sub ismemcached {
265
22
383
    return $ismemcached;
266}
267
268 - 273
=head2 memcached

If $ismemcached is true, returns the $memcache variable.
Returns undef otherwise

=cut
274
275sub memcached {
276
0
0
    if ($ismemcached) {
277
0
0
      return $memcached;
278    } else {
279
0
0
      return undef;
280    }
281}
282
283# db_scheme2dbi
284# Translates the full text name of a database into de appropiate dbi name
285#
286sub db_scheme2dbi {
287
2
8
    my $name = shift;
288    # for instance, we support only mysql, so don't care checking
289
2
8
    return "mysql";
290
0
0
    for ($name) {
291# FIXME - Should have other databases.
292
0
0
0
0
        if (/mysql/) { return("mysql"); }
293
0
0
0
0
        if (/Postgres|Pg|PostgresSQL/) { return("Pg"); }
294
0
0
0
0
        if (/oracle/) { return("Oracle"); }
295    }
296
0
0
    return undef; # Just in case
297}
298
299sub import {
300    # Create the default context ($C4::Context::Context)
301    # the first time the module is called
302    # (a config file can be optionaly passed)
303
304    # default context allready exists?
305
566
30311
    return if $context;
306
307    # no ? so load it!
308
60
561
    my ($pkg,$config_file) = @_ ;
309
60
823
    my $new_ctx = __PACKAGE__->new($config_file);
310
60
583
    return unless $new_ctx;
311
312    # if successfully loaded, use it by default
313
60
601
    $new_ctx->set_context;
314
60
3611
    1;
315}
316
317 - 333
=head2 new

  $context = new C4::Context;
  $context = new C4::Context("/path/to/koha-conf.xml");

Allocates a new context. Initializes the context from the specified
file, which defaults to either the file given by the C<$KOHA_CONF>
environment variable, or F</etc/koha/koha-conf.xml>.

It saves the koha-conf.xml values in the declared memcached server(s)
if currently available and uses those values until them expire and
re-reads them.

C<&new> does not set this context as the new default context; for
that, use C<&set_context>.

=cut
334
335#'
336# Revision History:
337# 2004-08-10 A. Tarallo: Added check if the conf file is not empty
338sub new {
339
60
575
    my $class = shift;
340
60
531
    my $conf_fname = shift; # Config file to load
341
60
463
    my $self = {};
342
343    # check that the specified config file exists and is not empty
344
60
628
    undef $conf_fname unless
345        (defined $conf_fname && -s $conf_fname);
346    # Figure out a good config file to load if none was specified.
347
60
600
    if (!defined($conf_fname))
348    {
349        # If the $KOHA_CONF environment variable is set, use
350        # that. Otherwise, use the built-in default.
351
60
26463
        if (exists $ENV{"KOHA_CONF"} and $ENV{'KOHA_CONF'} and -s $ENV{"KOHA_CONF"}) {
352
60
544
            $conf_fname = $ENV{"KOHA_CONF"};
353        } elsif ($INSTALLED_CONFIG_FNAME !~ /__KOHA_CONF_DIR/ and -s $INSTALLED_CONFIG_FNAME) {
354            # NOTE: be careful -- don't change __KOHA_CONF_DIR in the above
355            # regex to anything else -- don't want installer to rewrite it
356
0
0
            $conf_fname = $INSTALLED_CONFIG_FNAME;
357        } elsif (-s CONFIG_FNAME) {
358
0
0
            $conf_fname = CONFIG_FNAME;
359        } else {
360
0
0
            warn "unable to locate Koha configuration file koha-conf.xml";
361
0
0
            return undef;
362        }
363    }
364
365
60
449
    if ($ismemcached) {
366        # retreive from memcached
367
0
0
        $self = $memcached->get('kohaconf');
368
0
0
        if (not defined $self) {
369            # not in memcached yet
370
0
0
            $self = read_config_file($conf_fname);
371        }
372    } else {
373        # non-memcached env, read from file
374
60
659
        $self = read_config_file($conf_fname);
375    }
376
377
60
968
    $self->{"config_file"} = $conf_fname;
378
60
1281
    warn "read_config_file($conf_fname) returned undef" if !defined($self->{"config"});
379
60
885
    return undef if !defined($self->{"config"});
380
381
60
1038
    $self->{"dbh"} = undef; # Database handle
382
60
815
    $self->{"Zconn"} = undef; # Zebra Connections
383
60
1697
    $self->{"stopwords"} = undef; # stopwords list
384
60
851
    $self->{"marcfromkohafield"} = undef; # the hash with relations between koha table fields and MARC field/subfield
385
60
656
    $self->{"userenv"} = undef; # User env
386
60
1364
    $self->{"activeuser"} = undef; # current active user
387
60
794
    $self->{"shelves"} = undef;
388
60
552
    $self->{tz} = undef; # local timezone object
389
390
60
1580
    bless $self, $class;
391
60
673
    return $self;
392}
393
394 - 409
=head2 set_context

  $context = new C4::Context;
  $context->set_context();
or
  set_context C4::Context $context;

  ...
  restore_context C4::Context;

In some cases, it might be necessary for a script to use multiple
contexts. C<&set_context> saves the current context on a stack, then
sets the context to C<$context>, which will be used in future
operations. To restore the previous context, use C<&restore_context>.

=cut
410
411#'
412sub set_context
413{
414
60
535
    my $self = shift;
415
60
426
    my $new_context; # The context to set
416
417    # Figure out whether this is a class or instance method call.
418    #
419    # We're going to make the assumption that control got here
420    # through valid means, i.e., that the caller used an instance
421    # or class method call, and that control got here through the
422    # usual inheritance mechanisms. The caller can, of course,
423    # break this assumption by playing silly buggers, but that's
424    # harder to do than doing it properly, and harder to check
425    # for.
426
60
564
    if (ref($self) eq "")
427    {
428        # Class method. The new context is the next argument.
429
0
0
        $new_context = shift;
430    } else {
431        # Instance method. The new context is $self.
432
60
548
        $new_context = $self;
433    }
434
435    # Save the old context, if any, on the stack
436
60
523
    push @context_stack, $context if defined($context);
437
438    # Set the new context
439
60
566
    $context = $new_context;
440}
441
442 - 448
=head2 restore_context

  &restore_context;

Restores the context set by C<&set_context>.

=cut
449
450#'
451sub restore_context
452{
453
0
0
    my $self = shift;
454
455
0
0
    if ($#context_stack < 0)
456    {
457        # Stack underflow.
458
0
0
        die "Context stack underflow";
459    }
460
461    # Pop the old context and set it.
462
0
0
    $context = pop @context_stack;
463
464    # FIXME - Should this return something, like maybe the context
465    # that was current when this was called?
466}
467
468 - 481
=head2 config

  $value = C4::Context->config("config_variable");

  $value = C4::Context->config_variable;

Returns the value of a variable specified in the configuration file
from which the current context was created.

The second form is more compact, but of course may conflict with
method names. If there is a configuration variable called "new", then
C<C4::Config-E<gt>new> will not return it.

=cut
482
483sub _common_config ($$) {
484
34
194
        my $var = shift;
485
34
188
        my $term = shift;
486
34
362
    return undef if !defined($context->{$term});
487       # Presumably $self->{$term} might be
488       # undefined if the config file given to &new
489       # didn't exist, and the caller didn't bother
490       # to check the return value.
491
492    # Return the value of the requested config variable
493
34
478
    return $context->{$term}->{$var};
494}
495
496sub config {
497
34
236
        return _common_config($_[1],'config');
498}
499sub zebraconfig {
500
0
0
        return _common_config($_[1],'server');
501}
502sub ModZebrations {
503
0
0
        return _common_config($_[1],'serverinfo');
504}
505
506 - 520
=head2 preference

  $sys_preference = C4::Context->preference('some_variable');

Looks up the value of the given system preference in the
systempreferences table of the Koha database, and returns it. If the
variable is not set or does not exist, undef is returned.

In case of an error, this may return 0.

Note: It is impossible to tell the difference between system
preferences which do not exist, and those whose values are set to NULL
with this method.

=cut
521
522# FIXME: running this under mod_perl will require a means of
523# flushing the caching mechanism.
524
525my %sysprefs;
526
527sub preference {
528
1
2
    my $self = shift;
529
1
2
    my $var = lc(shift); # The system preference to return
530
531
1
5
    if (exists $sysprefs{$var}) {
532
0
0
        return $sysprefs{$var};
533    }
534
535
1
2
    my $dbh = C4::Context->dbh or return 0;
536
537    # Look up systempreferences.variable==$var
538
1
12
    my $sql = <<'END_SQL';
539        SELECT value
540        FROM systempreferences
541        WHERE variable=?
542        LIMIT 1
543END_SQL
544
1
87
    $sysprefs{$var} = $dbh->selectrow_array( $sql, {}, $var );
545
1
513
    return $sysprefs{$var};
546}
547
548sub boolean_preference ($) {
549
0
0
    my $self = shift;
550
0
0
    my $var = shift; # The system preference to return
551
0
0
    my $it = preference($self, $var);
552
0
0
    return defined($it)? C4::Boolean::true_p($it): undef;
553}
554
555 - 563
=head2 clear_syspref_cache

  C4::Context->clear_syspref_cache();

cleans the internal cache of sysprefs. Please call this method if
you update the systempreferences table. Otherwise, your new changes
will not be seen by this process.

=cut
564
565sub clear_syspref_cache {
566
0
0
    %sysprefs = ();
567}
568
569 - 576
=head2 set_preference

  C4::Context->set_preference( $variable, $value );

This updates a preference's value both in the systempreferences table and in
the sysprefs cache.

=cut
577
578sub set_preference {
579
0
0
    my $self = shift;
580
0
0
    my $var = lc(shift);
581
0
0
    my $value = shift;
582
583
0
0
    my $dbh = C4::Context->dbh or return 0;
584
585
0
0
    my $type = $dbh->selectrow_array( "SELECT type FROM systempreferences WHERE variable = ?", {}, $var );
586
587
0
0
    $value = 0 if ( $type && $type eq 'YesNo' && $value eq '' );
588
589
0
0
    my $sth = $dbh->prepare( "
590      INSERT INTO systempreferences
591        ( variable, value )
592        VALUES( ?, ? )
593        ON DUPLICATE KEY UPDATE value = VALUES(value)
594    " );
595
596
0
0
    if($sth->execute( $var, $value )) {
597
0
0
        $sysprefs{$var} = $value;
598    }
599
0
0
    $sth->finish;
600}
601
602# AUTOLOAD
603# This implements C4::Config->foo, and simply returns
604# C4::Context->config("foo"), as described in the documentation for
605# &config, above.
606
607# FIXME - Perhaps this should be extended to check &config first, and
608# then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
609# code, so it'd probably be best to delete it altogether so as not to
610# encourage people to use it.
611sub AUTOLOAD
612{
613
0
0
    my $self = shift;
614
615
0
0
    $AUTOLOAD =~ s/.*:://; # Chop off the package name,
616                    # leaving only the function name.
617
0
0
    return $self->config($AUTOLOAD);
618}
619
620 - 637
=head2 Zconn

  $Zconn = C4::Context->Zconn

Returns a connection to the Zebra database for the current
context. If no connection has yet been made, this method 
creates one and connects.

C<$self> 

C<$server> one of the servers defined in the koha-conf.xml file

C<$async> whether this is a asynchronous connection

C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)


=cut
638
639sub Zconn {
640
0
0
    my $self=shift;
641
0
0
    my $server=shift;
642
0
0
    my $async=shift;
643
0
0
    my $auth=shift;
644
0
0
    my $piggyback=shift;
645
0
0
    my $syntax=shift;
646
0
0
    if ( defined($context->{"Zconn"}->{$server}) && (0 == $context->{"Zconn"}->{$server}->errcode()) ) {
647
0
0
        return $context->{"Zconn"}->{$server};
648    # No connection object or it died. Create one.
649    }else {
650        # release resources if we're closing a connection and making a new one
651        # FIXME: this needs to be smarter -- an error due to a malformed query or
652        # a missing index does not necessarily require us to close the connection
653        # and make a new one, particularly for a batch job. However, at
654        # first glance it does not look like there's a way to easily check
655        # the basic health of a ZOOM::Connection
656
0
0
        $context->{"Zconn"}->{$server}->destroy() if defined($context->{"Zconn"}->{$server});
657
658
0
0
        $context->{"Zconn"}->{$server} = &_new_Zconn($server,$async,$auth,$piggyback,$syntax);
659
0
0
        return $context->{"Zconn"}->{$server};
660    }
661}
662
663 - 675
=head2 _new_Zconn

$context->{"Zconn"} = &_new_Zconn($server,$async);

Internal function. Creates a new database connection from the data given in the current context and returns it.

C<$server> one of the servers defined in the koha-conf.xml file

C<$async> whether this is a asynchronous connection

C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)

=cut
676
677sub _new_Zconn {
678
0
0
    my ($server,$async,$auth,$piggyback,$syntax) = @_;
679
680
0
0
    my $tried=0; # first attempt
681
0
0
    my $Zconn; # connection object
682
0
0
    $server = "biblioserver" unless $server;
683
0
0
    $syntax = "usmarc" unless $syntax;
684
685
0
0
    my $host = $context->{'listen'}->{$server}->{'content'};
686
0
0
    my $servername = $context->{"config"}->{$server};
687
0
0
    my $user = $context->{"serverinfo"}->{$server}->{"user"};
688
0
0
    my $password = $context->{"serverinfo"}->{$server}->{"password"};
689
0
0
 $auth = 1 if($user && $password);
690    retry:
691
0
0
    eval {
692        # set options
693
0
0
        my $o = new ZOOM::Options();
694
0
0
        $o->option(user=>$user) if $auth;
695
0
0
        $o->option(password=>$password) if $auth;
696
0
0
        $o->option(async => 1) if $async;
697
0
0
        $o->option(count => $piggyback) if $piggyback;
698
0
0
        $o->option(cqlfile=> $context->{"server"}->{$server}->{"cql2rpn"});
699
0
0
        $o->option(cclfile=> $context->{"serverinfo"}->{$server}->{"ccl2rpn"});
700
0
0
        $o->option(preferredRecordSyntax => $syntax);
701
0
0
        $o->option(elementSetName => "F"); # F for 'full' as opposed to B for 'brief'
702
0
0
        $o->option(databaseName => ($servername?$servername:"biblios"));
703
704        # create a new connection object
705
0
0
        $Zconn= create ZOOM::Connection($o);
706
707        # forge to server
708
0
0
        $Zconn->connect($host, 0);
709
710        # check for errors and warn
711
0
0
        if ($Zconn->errcode() !=0) {
712
0
0
            warn "something wrong with the connection: ". $Zconn->errmsg();
713        }
714
715    };
716# if ($@) {
717# # Koha manages the Zebra server -- this doesn't work currently for me because of permissions issues
718# # Also, I'm skeptical about whether it's the best approach
719# warn "problem with Zebra";
720# if ( C4::Context->preference("ManageZebra") ) {
721# if ($@->code==10000 && $tried==0) { ##No connection try restarting Zebra
722# $tried=1;
723# warn "trying to restart Zebra";
724# my $res=system("zebrasrv -f $ENV{'KOHA_CONF'} >/koha/log/zebra-error.log");
725# goto "retry";
726# } else {
727# warn "Error ", $@->code(), ": ", $@->message(), "\n";
728# $Zconn="error";
729# return $Zconn;
730# }
731# }
732# }
733
0
0
    return $Zconn;
734}
735
736# _new_dbh
737# Internal helper function (not a method!). This creates a new
738# database connection from the data given in the current context, and
739# returns it.
740sub _new_dbh
741{
742
743    ## $context
744    ## correct name for db_schme
745
2
7
    my $db_driver;
746
2
10
    if ($context->config("db_scheme")){
747
2
10
        $db_driver=db_scheme2dbi($context->config("db_scheme"));
748    }else{
749
0
0
        $db_driver="mysql";
750    }
751
752
2
9
    my $db_name = $context->config("database");
753
2
8
    my $db_host = $context->config("hostname");
754
2
9
    my $db_port = $context->config("port") || '';
755
2
9
    my $db_user = $context->config("user");
756
2
9
    my $db_passwd = $context->config("pass");
757    # MJR added or die here, as we can't work without dbh
758
2
46
    my $dbh= DBI->connect("DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port",
759    $db_user, $db_passwd, {'RaiseError' => $ENV{DEBUG}?1:0 }) or die $DBI::errstr;
760
2
103107
        my $tz = $ENV{TZ};
761
2
12
    if ( $db_driver eq 'mysql' ) {
762        # Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
763        # this is better than modifying my.cnf (and forcing all communications to be in utf8)
764
2
15
        $dbh->{'mysql_enable_utf8'}=1; #enable
765
2
20480
        $dbh->do("set NAMES 'utf8'");
766
2
18
        ($tz) and $dbh->do(qq(SET time_zone = "$tz"));
767    }
768    elsif ( $db_driver eq 'Pg' ) {
769
0
0
            $dbh->do( "set client_encoding = 'UTF8';" );
770
0
0
        ($tz) and $dbh->do(qq(SET TIME ZONE = "$tz"));
771    }
772
2
16
    return $dbh;
773}
774
775 - 788
=head2 dbh

  $dbh = C4::Context->dbh;

Returns a database handle connected to the Koha database for the
current context. If no connection has yet been made, this method
creates one, and connects to the database.

This database handle is cached for future use: if you call
C<C4::Context-E<gt>dbh> twice, you will get the same handle both
times. If you need a second database handle, use C<&new_dbh> and
possibly C<&set_dbh>.

=cut
789
790#'
791sub dbh
792{
793
2
9
    my $self = shift;
794
2
8
    my $sth;
795
796
2
14
    if (defined($context->{"dbh"}) && $context->{"dbh"}->ping()) {
797
0
0
        return $context->{"dbh"};
798    }
799
800    # No database handle or it died . Create one.
801
2
10
    $context->{"dbh"} = &_new_dbh();
802
803
2
16
    return $context->{"dbh"};
804}
805
806 - 817
=head2 new_dbh

  $dbh = C4::Context->new_dbh;

Creates a new connection to the Koha database for the current context,
and returns the database handle (a C<DBI::db> object).

The handle is not saved anywhere: this method is strictly a
convenience function; the point is that it knows which database to
connect to so that the caller doesn't have to know.

=cut
818
819#'
820sub new_dbh
821{
822
0
0
    my $self = shift;
823
824
0
0
    return &_new_dbh();
825}
826
827 - 842
=head2 set_dbh

  $my_dbh = C4::Connect->new_dbh;
  C4::Connect->set_dbh($my_dbh);
  ...
  C4::Connect->restore_dbh;

C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
C<&set_context> and C<&restore_context>.

C<&set_dbh> saves the current database handle on a stack, then sets
the current database handle to C<$my_dbh>.

C<$my_dbh> is assumed to be a good database handle.

=cut
843
844#'
845sub set_dbh
846{
847
0
0
    my $self = shift;
848
0
0
    my $new_dbh = shift;
849
850    # Save the current database handle on the handle stack.
851    # We assume that $new_dbh is all good: if the caller wants to
852    # screw himself by passing an invalid handle, that's fine by
853    # us.
854
0
0
0
0
    push @{$context->{"dbh_stack"}}, $context->{"dbh"};
855
0
0
    $context->{"dbh"} = $new_dbh;
856}
857
858 - 865
=head2 restore_dbh

  C4::Context->restore_dbh;

Restores the database handle saved by an earlier call to
C<C4::Context-E<gt>set_dbh>.

=cut
866
867#'
868sub restore_dbh
869{
870
0
0
    my $self = shift;
871
872
0
0
0
0
    if ($#{$context->{"dbh_stack"}} < 0)
873    {
874        # Stack underflow
875
0
0
        die "DBH stack underflow";
876    }
877
878    # Pop the old database handle and set it.
879
0
0
0
0
    $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
880
881    # FIXME - If it is determined that restore_context should
882    # return something, then this function should, too.
883}
884
885 - 894
=head2 marcfromkohafield

  $dbh = C4::Context->marcfromkohafield;

Returns a hash with marcfromkohafield.

This hash is cached for future use: if you call
C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access

=cut
895
896#'
897sub marcfromkohafield
898{
899
0
0
    my $retval = {};
900
901    # If the hash already exists, return it.
902
0
0
    return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
903
904    # No hash. Create one.
905
0
0
    $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
906
907
0
0
    return $context->{"marcfromkohafield"};
908}
909
910# _new_marcfromkohafield
911# Internal helper function (not a method!). This creates a new
912# hash with stopwords
913sub _new_marcfromkohafield
914{
915
0
0
    my $dbh = C4::Context->dbh;
916
0
0
    my $marcfromkohafield;
917
0
0
    my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
918
0
0
    $sth->execute;
919
0
0
    while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
920
0
0
        my $retval = {};
921
0
0
        $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
922    }
923
0
0
    return $marcfromkohafield;
924}
925
926 - 935
=head2 stopwords

  $dbh = C4::Context->stopwords;

Returns a hash with stopwords.

This hash is cached for future use: if you call
C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access

=cut
936
937#'
938sub stopwords
939{
940
0
0
    my $retval = {};
941
942    # If the hash already exists, return it.
943
0
0
    return $context->{"stopwords"} if defined($context->{"stopwords"});
944
945    # No hash. Create one.
946
0
0
    $context->{"stopwords"} = &_new_stopwords();
947
948
0
0
    return $context->{"stopwords"};
949}
950
951# _new_stopwords
952# Internal helper function (not a method!). This creates a new
953# hash with stopwords
954sub _new_stopwords
955{
956
0
0
    my $dbh = C4::Context->dbh;
957
0
0
    my $stopwordlist;
958
0
0
    my $sth = $dbh->prepare("select word from stopwords");
959
0
0
    $sth->execute;
960
0
0
    while (my $stopword = $sth->fetchrow_array) {
961
0
0
        $stopwordlist->{$stopword} = uc($stopword);
962    }
963
0
0
    $stopwordlist->{A} = "A" unless $stopwordlist;
964
0
0
    return $stopwordlist;
965}
966
967 - 976
=head2 userenv

  C4::Context->userenv;

Retrieves a hash for user environment variables.

This hash shall be cached for future use: if you call
C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access

=cut
977
978#'
979sub userenv {
980
46
133
    my $var = $context->{"activeuser"};
981
46
597
    return $context->{"userenv"}->{$var} if (defined $var and defined $context->{"userenv"}->{$var});
982    # insecure=1 management
983
0
0
    if ($context->{"dbh"} && $context->preference('insecure') eq 'yes') {
984
0
0
        my %insecure;
985
0
0
        $insecure{flags} = '16382';
986
0
0
        $insecure{branchname} ='Insecure';
987
0
0
        $insecure{number} ='0';
988
0
0
        $insecure{cardnumber} ='0';
989
0
0
        $insecure{id} = 'insecure';
990
0
0
        $insecure{branch} = 'INS';
991
0
0
        $insecure{emailaddress} = 'test@mode.insecure.com';
992
0
0
        return \%insecure;
993    } else {
994
0
0
        return;
995    }
996}
997
998 - 1007
=head2 set_userenv

  C4::Context->set_userenv($usernum, $userid, $usercnum, $userfirstname, 
                  $usersurname, $userbranch, $userflags, $emailaddress);

Establish a hash of user environment variables.

set_userenv is called in Auth.pm

=cut
1008
1009#'
1010sub set_userenv {
1011
1
5
    my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $branchname, $userflags, $emailaddress, $branchprinter)= @_;
1012
1
3
    my $var=$context->{"activeuser"};
1013
1
9
    my $cell = {
1014        "number" => $usernum,
1015        "id" => $userid,
1016        "cardnumber" => $usercnum,
1017        "firstname" => $userfirstname,
1018        "surname" => $usersurname,
1019        #possibly a law problem
1020        "branch" => $userbranch,
1021        "branchname" => $branchname,
1022        "flags" => $userflags,
1023        "emailaddress" => $emailaddress,
1024        "branchprinter" => $branchprinter
1025    };
1026
1
4
    $context->{userenv}->{$var} = $cell;
1027
1
6
    return $cell;
1028}
1029
1030sub set_shelves_userenv ($$) {
1031
0
0
        my ($type, $shelves) = @_ or return undef;
1032
0
0
        my $activeuser = $context->{activeuser} or return undef;
1033
0
0
        $context->{userenv}->{$activeuser}->{barshelves} = $shelves if $type eq 'bar';
1034
0
0
        $context->{userenv}->{$activeuser}->{pubshelves} = $shelves if $type eq 'pub';
1035
0
0
        $context->{userenv}->{$activeuser}->{totshelves} = $shelves if $type eq 'tot';
1036}
1037
1038sub get_shelves_userenv () {
1039
0
0
        my $active;
1040
0
0
        unless ($active = $context->{userenv}->{$context->{activeuser}}) {
1041
0
0
                $debug and warn "get_shelves_userenv cannot retrieve context->{userenv}->{context->{activeuser}}";
1042
0
0
                return undef;
1043        }
1044
0
0
        my $totshelves = $active->{totshelves} or undef;
1045
0
0
        my $pubshelves = $active->{pubshelves} or undef;
1046
0
0
        my $barshelves = $active->{barshelves} or undef;
1047
0
0
        return ($totshelves, $pubshelves, $barshelves);
1048}
1049
1050 - 1061
=head2 _new_userenv

  C4::Context->_new_userenv($session);  # FIXME: This calling style is wrong for what looks like an _internal function

Builds a hash for user environment variables.

This hash shall be cached for future use: if you call
C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access

_new_userenv is called in Auth.pm

=cut
1062
1063#'
1064sub _new_userenv
1065{
1066
1
2
    shift; # Useless except it compensates for bad calling style
1067
1
1
    my ($sessionID)= @_;
1068
1
8
     $context->{"activeuser"}=$sessionID;
1069}
1070
1071 - 1077
=head2 _unset_userenv

  C4::Context->_unset_userenv;

Destroys the hash for activeuser user environment variables.

=cut
1078
1079#'
1080
1081sub _unset_userenv
1082{
1083
0
0
    my ($sessionID)= @_;
1084
0
0
    undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
1085}
1086
1087
1088 - 1094
=head2 get_versions

  C4::Context->get_versions

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'.

=cut
1095
1096#'
1097
1098# A little example sub to show more debugging info for CGI::Carp
1099sub get_versions {
1100
0
0
    my %versions;
1101
0
0
    $versions{kohaVersion} = KOHAVERSION();
1102
0
0
    $versions{kohaDbVersion} = C4::Context->preference('version');
1103
0
0
    $versions{osVersion} = join(" ", POSIX::uname());
1104
0
0
    $versions{perlVersion} = $];
1105    {
1106
60
60
60
0
260428
1031
14999
0
        no warnings qw(exec); # suppress warnings if unable to find a program in $PATH
1107
0
0
        $versions{mysqlVersion} = `mysql -V`;
1108
0
0
        $versions{apacheVersion} = `httpd -v`;
1109
0
0
        $versions{apacheVersion} = `httpd2 -v` unless $versions{apacheVersion} ;
1110
0
0
        $versions{apacheVersion} = `apache2 -v` unless $versions{apacheVersion} ;
1111
0
0
        $versions{apacheVersion} = `/usr/sbin/apache2 -v` unless $versions{apacheVersion} ;
1112    }
1113
0
0
    return %versions;
1114}
1115
1116
1117 - 1123
=head2 tz

  C4::Context->tz

  Returns a DateTime::TimeZone object for the system timezone

=cut
1124
1125sub tz {
1126
11
93
    my $self = shift;
1127
11
91
    if (!defined $context->{tz}) {
1128
1
26
        $context->{tz} = DateTime::TimeZone->new(name => 'local');
1129    }
1130
11
2025794
    return $context->{tz};
1131}
1132
1133
1134
11351;