Context.pm - BEGIN block VERSION and vars related to export.
[koha_gimpoz] / C4 / Context.pm
1 package 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 with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA  02111-1307 USA
18
19 use strict;
20 use vars qw($VERSION $AUTOLOAD $context @context_stack);
21
22 BEGIN {
23         if ($ENV{'HTTP_USER_AGENT'})    {
24                 require CGI::Carp;
25                 import CGI::Carp qw(fatalsToBrowser);
26                         sub handle_errors {
27                                 my $msg = shift;
28                                 my $debug_level =  C4::Context->preference("DebugLevel");
29
30                                 if ($debug_level eq "2"){
31                                         # debug 2 , print extra info too.
32                                         my %versions = get_versions();
33
34                 # a little example table with various version info";
35                                         print "
36                                                 <h1>debug level $debug_level </h1>
37                                                 <p>Got an error: $msg</p>
38                                                 <table>
39                                                 <tr><th>Apache<td>  $versions{apacheVersion}</tr>
40                                                 <tr><th>Koha<td>    $versions{kohaVersion}</tr>
41                                                 <tr><th>MySQL<td>   $versions{mysqlVersion}</tr>
42                                                 <tr><th>OS<td>      $versions{osVersion}</tr>
43                                                 <tr><th>Perl<td>    $versions{perlVersion}</tr>
44                                                 </table>";
45
46                                 } elsif ($debug_level eq "1"){
47                                         print "<h1>debug level $debug_level </h1>";
48                                         print "<p>Got an error: $msg</p>";
49                                 } else {
50                                         print "production mode - trapped fatal";
51                                 }       
52                         }       
53                 CGI::Carp->set_message(\&handle_errors);
54     }   # else there is no browser to send fatals to!
55         $VERSION = '3.00.00.036';
56 }
57
58 use DBI;
59 use ZOOM;
60 use XML::Simple;
61 use C4::Boolean;
62
63 =head1 NAME
64
65 C4::Context - Maintain and manipulate the context of a Koha script
66
67 =head1 SYNOPSIS
68
69   use C4::Context;
70
71   use C4::Context("/path/to/koha-conf.xml");
72
73   $config_value = C4::Context->config("config_variable");
74
75   $koha_preference = C4::Context->preference("preference");
76
77   $db_handle = C4::Context->dbh;
78
79   $Zconn = C4::Context->Zconn;
80
81   $stopwordhash = C4::Context->stopwords;
82
83 =head1 DESCRIPTION
84
85 When a Koha script runs, it makes use of a certain number of things:
86 configuration settings in F</etc/koha/koha-conf.xml>, a connection to the Koha
87 databases, and so forth. These things make up the I<context> in which
88 the script runs.
89
90 This module takes care of setting up the context for a script:
91 figuring out which configuration file to load, and loading it, opening
92 a connection to the right database, and so forth.
93
94 Most scripts will only use one context. They can simply have
95
96   use C4::Context;
97
98 at the top.
99
100 Other scripts may need to use several contexts. For instance, if a
101 library has two databases, one for a certain collection, and the other
102 for everything else, it might be necessary for a script to use two
103 different contexts to search both databases. Such scripts should use
104 the C<&set_context> and C<&restore_context> functions, below.
105
106 By default, C4::Context reads the configuration from
107 F</etc/koha/koha-conf.xml>. This may be overridden by setting the C<$KOHA_CONF>
108 environment variable to the pathname of a configuration file to use.
109
110 =head1 METHODS
111
112 =over 2
113
114 =cut
115
116 #'
117 # In addition to what is said in the POD above, a Context object is a
118 # reference-to-hash with the following fields:
119 #
120 # config
121 #    A reference-to-hash whose keys and values are the
122 #    configuration variables and values specified in the config
123 #    file (/etc/koha/koha-conf.xml).
124 # dbh
125 #    A handle to the appropriate database for this context.
126 # dbh_stack
127 #    Used by &set_dbh and &restore_dbh to hold other database
128 #    handles for this context.
129 # Zconn
130 #     A connection object for the Zebra server
131
132 # Koha's main configuration file koha-conf.xml
133 # is searched for according to this priority list:
134 #
135 # 1. Path supplied via use C4::Context '/path/to/koha-conf.xml'
136 # 2. Path supplied in KOHA_CONF environment variable.
137 # 3. Path supplied in INSTALLED_CONFIG_FNAME, as long
138 #    as value has changed from its default of 
139 #    '__KOHA_CONF_DIR__/koha-conf.xml', as happens
140 #    when Koha is installed in 'standard' or 'single'
141 #    mode.
142 # 4. Path supplied in CONFIG_FNAME.
143 #
144 # The first entry that refers to a readable file is used.
145
146 use constant CONFIG_FNAME => "/etc/koha/koha-conf.xml";
147                 # Default config file, if none is specified
148                 
149 my $INSTALLED_CONFIG_FNAME = '__KOHA_CONF_DIR__/koha-conf.xml';
150                 # path to config file set by installer
151                 # __KOHA_CONF_DIR__ is set by rewrite-confg.PL
152                 # when Koha is installed in 'standard' or 'single'
153                 # mode.  If Koha was installed in 'dev' mode, 
154                 # __KOHA_CONF_DIR__ is *not* rewritten; instead
155                 # developers should set the KOHA_CONF environment variable 
156
157 $context = undef;        # Initially, no context is set
158 @context_stack = ();        # Initially, no saved contexts
159
160
161 =item KOHAVERSION
162     returns the kohaversion stored in kohaversion.pl file
163
164 =cut
165
166 sub KOHAVERSION {
167     my $cgidir = C4::Context->intranetdir ."/cgi-bin";
168
169     # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
170     # on a standard install, /cgi-bin need to be added.
171     # test one, then the other
172     # FIXME - is this all really necessary?
173     unless (opendir(DIR, "$cgidir/cataloguing/value_builder")) {
174         $cgidir = C4::Context->intranetdir;
175         closedir(DIR);
176     }
177
178     do $cgidir."/kohaversion.pl" || die "NO $cgidir/kohaversion.pl";
179     return kohaversion();
180 }
181 =item read_config_file
182
183 =over 4
184
185 Reads the specified Koha config file. 
186
187 Returns an object containing the configuration variables. The object's
188 structure is a bit complex to the uninitiated ... take a look at the
189 koha-conf.xml file as well as the XML::Simple documentation for details. Or,
190 here are a few examples that may give you what you need:
191
192 The simple elements nested within the <config> element:
193
194     my $pass = $koha->{'config'}->{'pass'};
195
196 The <listen> elements:
197
198     my $listen = $koha->{'listen'}->{'biblioserver'}->{'content'};
199
200 The elements nested within the <server> element:
201
202     my $ccl2rpn = $koha->{'server'}->{'biblioserver'}->{'cql2rpn'};
203
204 Returns undef in case of error.
205
206 =back
207
208 =cut
209
210 sub read_config_file {          # Pass argument naming config file to read
211     my $koha = XMLin(shift, keyattr => ['id'], forcearray => ['listen', 'server', 'serverinfo']);
212     return $koha;                       # Return value: ref-to-hash holding the configuration
213 }
214
215 # db_scheme2dbi
216 # Translates the full text name of a database into de appropiate dbi name
217
218 sub db_scheme2dbi {
219     my $name = shift;
220
221     for ($name) {
222 # FIXME - Should have other databases. 
223         if (/mysql/i) { return("mysql"); }
224         if (/Postgres|Pg|PostgresSQL/) { return("Pg"); }
225         if (/oracle/i) { return("Oracle"); }
226     }
227     return undef;         # Just in case
228 }
229
230 sub import {
231     my $package = shift;
232     my $conf_fname = shift;        # Config file name
233     my $context;
234
235     # Create a new context from the given config file name, if
236     # any, then set it as the current context.
237     $context = new C4::Context($conf_fname);
238     return undef if !defined($context);
239     $context->set_context;
240 }
241
242 =item new
243
244   $context = new C4::Context;
245   $context = new C4::Context("/path/to/koha-conf.xml");
246
247 Allocates a new context. Initializes the context from the specified
248 file, which defaults to either the file given by the C<$KOHA_CONF>
249 environment variable, or F</etc/koha/koha-conf.xml>.
250
251 C<&new> does not set this context as the new default context; for
252 that, use C<&set_context>.
253
254 =cut
255
256 #'
257 # Revision History:
258 # 2004-08-10 A. Tarallo: Added check if the conf file is not empty
259 sub new {
260     my $class = shift;
261     my $conf_fname = shift;        # Config file to load
262     my $self = {};
263
264     # check that the specified config file exists and is not empty
265     undef $conf_fname unless 
266         (defined $conf_fname && -e $conf_fname && -s $conf_fname);
267     # Figure out a good config file to load if none was specified.
268     if (!defined($conf_fname))
269     {
270         # If the $KOHA_CONF environment variable is set, use
271         # that. Otherwise, use the built-in default.
272         if (exists $ENV{"KOHA_CONF"} and $ENV{'KOHA_CONF'} and -e  $ENV{"KOHA_CONF"} and -s  $ENV{"KOHA_CONF"}) {
273             $conf_fname = $ENV{"KOHA_CONF"};
274         } elsif ($INSTALLED_CONFIG_FNAME !~ /__KOHA_CONF_DIR/ and -e $INSTALLED_CONFIG_FNAME and -s $INSTALLED_CONFIG_FNAME) {
275             # NOTE: be careful -- don't change __KOHA_CONF_DIR in the above
276             # regex to anything else -- don't want installer to rewrite it
277             $conf_fname = $INSTALLED_CONFIG_FNAME;
278         } elsif (-e CONFIG_FNAME and -s CONFIG_FNAME) {
279             $conf_fname = CONFIG_FNAME;
280         } else {
281             warn "unable to locate Koha configuration file koha-conf.xml";
282             return undef;
283         }
284     }
285         # Load the desired config file.
286     $self = read_config_file($conf_fname);
287     $self->{"config_file"} = $conf_fname;
288     
289     warn "read_config_file($conf_fname) returned undef" if !defined($self->{"config"});
290     return undef if !defined($self->{"config"});
291
292     $self->{"dbh"} = undef;        # Database handle
293     $self->{"Zconn"} = undef;    # Zebra Connections
294     $self->{"stopwords"} = undef; # stopwords list
295     $self->{"marcfromkohafield"} = undef; # the hash with relations between koha table fields and MARC field/subfield
296     $self->{"userenv"} = undef;        # User env
297     $self->{"activeuser"} = undef;        # current active user
298
299     bless $self, $class;
300     return $self;
301 }
302
303 =item set_context
304
305   $context = new C4::Context;
306   $context->set_context();
307 or
308   set_context C4::Context $context;
309
310   ...
311   restore_context C4::Context;
312
313 In some cases, it might be necessary for a script to use multiple
314 contexts. C<&set_context> saves the current context on a stack, then
315 sets the context to C<$context>, which will be used in future
316 operations. To restore the previous context, use C<&restore_context>.
317
318 =cut
319
320 #'
321 sub set_context
322 {
323     my $self = shift;
324     my $new_context;    # The context to set
325
326     # Figure out whether this is a class or instance method call.
327     #
328     # We're going to make the assumption that control got here
329     # through valid means, i.e., that the caller used an instance
330     # or class method call, and that control got here through the
331     # usual inheritance mechanisms. The caller can, of course,
332     # break this assumption by playing silly buggers, but that's
333     # harder to do than doing it properly, and harder to check
334     # for.
335     if (ref($self) eq "")
336     {
337         # Class method. The new context is the next argument.
338         $new_context = shift;
339     } else {
340         # Instance method. The new context is $self.
341         $new_context = $self;
342     }
343
344     # Save the old context, if any, on the stack
345     push @context_stack, $context if defined($context);
346
347     # Set the new context
348     $context = $new_context;
349 }
350
351 =item restore_context
352
353   &restore_context;
354
355 Restores the context set by C<&set_context>.
356
357 =cut
358
359 #'
360 sub restore_context
361 {
362     my $self = shift;
363
364     if ($#context_stack < 0)
365     {
366         # Stack underflow.
367         die "Context stack underflow";
368     }
369
370     # Pop the old context and set it.
371     $context = pop @context_stack;
372
373     # FIXME - Should this return something, like maybe the context
374     # that was current when this was called?
375 }
376
377 =item config
378
379   $value = C4::Context->config("config_variable");
380
381   $value = C4::Context->config_variable;
382
383 Returns the value of a variable specified in the configuration file
384 from which the current context was created.
385
386 The second form is more compact, but of course may conflict with
387 method names. If there is a configuration variable called "new", then
388 C<C4::Config-E<gt>new> will not return it.
389
390 =cut
391
392 sub _common_config ($$) {
393         my $var = shift;
394         my $term = shift;
395     return undef if !defined($context->{$term});
396        # Presumably $self->{$term} might be
397        # undefined if the config file given to &new
398        # didn't exist, and the caller didn't bother
399        # to check the return value.
400
401     # Return the value of the requested config variable
402     return $context->{$term}->{$var};
403 }
404
405 sub config {
406         return _common_config($_[1],'config');
407 }
408 sub zebraconfig {
409         return _common_config($_[1],'server');
410 }
411 sub ModZebrations {
412         return _common_config($_[1],'serverinfo');
413 }
414
415 =item preference
416
417   $sys_preference = C4::Context->preference("some_variable");
418
419 Looks up the value of the given system preference in the
420 systempreferences table of the Koha database, and returns it. If the
421 variable is not set, or in case of error, returns the undefined value.
422
423 =cut
424
425 #'
426 # FIXME - The preferences aren't likely to change over the lifetime of
427 # the script (and things might break if they did change), so perhaps
428 # this function should cache the results it finds.
429 sub preference
430 {
431     my $self = shift;
432     my $var = shift;        # The system preference to return
433     my $retval;            # Return value
434     my $dbh = C4::Context->dbh or return 0;
435     # Look up systempreferences.variable==$var
436     $retval = $dbh->selectrow_array(<<EOT);
437         SELECT    value
438         FROM    systempreferences
439         WHERE    variable='$var'
440         LIMIT    1
441 EOT
442     return $retval;
443 }
444
445 sub boolean_preference ($) {
446     my $self = shift;
447     my $var = shift;        # The system preference to return
448     my $it = preference($self, $var);
449     return defined($it)? C4::Boolean::true_p($it): undef;
450 }
451
452 # AUTOLOAD
453 # This implements C4::Config->foo, and simply returns
454 # C4::Context->config("foo"), as described in the documentation for
455 # &config, above.
456
457 # FIXME - Perhaps this should be extended to check &config first, and
458 # then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
459 # code, so it'd probably be best to delete it altogether so as not to
460 # encourage people to use it.
461 sub AUTOLOAD
462 {
463     my $self = shift;
464
465     $AUTOLOAD =~ s/.*:://;        # Chop off the package name,
466                     # leaving only the function name.
467     return $self->config($AUTOLOAD);
468 }
469
470 =item Zconn
471
472 $Zconn = C4::Context->Zconn
473
474 Returns a connection to the Zebra database for the current
475 context. If no connection has yet been made, this method 
476 creates one and connects.
477
478 C<$self> 
479
480 C<$server> one of the servers defined in the koha-conf.xml file
481
482 C<$async> whether this is a asynchronous connection
483
484 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
485
486
487 =cut
488
489 sub Zconn {
490     my $self=shift;
491     my $server=shift;
492     my $async=shift;
493     my $auth=shift;
494     my $piggyback=shift;
495     my $syntax=shift;
496     if ( defined($context->{"Zconn"}->{$server}) ) {
497         return $context->{"Zconn"}->{$server};
498     # No connection object or it died. Create one.
499     }else {
500         $context->{"Zconn"}->{$server} = &_new_Zconn($server,$async,$auth,$piggyback,$syntax);
501         return $context->{"Zconn"}->{$server};
502     }
503 }
504
505 =item _new_Zconn
506
507 $context->{"Zconn"} = &_new_Zconn($server,$async);
508
509 Internal function. Creates a new database connection from the data given in the current context and returns it.
510
511 C<$server> one of the servers defined in the koha-conf.xml file
512
513 C<$async> whether this is a asynchronous connection
514
515 C<$auth> whether this connection has rw access (1) or just r access (0 or NULL)
516
517 =cut
518
519 sub _new_Zconn {
520     my ($server,$async,$auth,$piggyback,$syntax) = @_;
521
522     my $tried=0; # first attempt
523     my $Zconn; # connection object
524     $server = "biblioserver" unless $server;
525     $syntax = "usmarc" unless $syntax;
526
527     my $host = $context->{'listen'}->{$server}->{'content'};
528     my $servername = $context->{"config"}->{$server};
529     my $user = $context->{"serverinfo"}->{$server}->{"user"};
530     my $password = $context->{"serverinfo"}->{$server}->{"password"};
531  $auth = 1 if($user && $password);   
532     retry:
533     eval {
534         # set options
535         my $o = new ZOOM::Options();
536         $o->option(user=>$user) if $auth;
537         $o->option(password=>$password) if $auth;
538         $o->option(async => 1) if $async;
539         $o->option(count => $piggyback) if $piggyback;
540         $o->option(cqlfile=> $context->{"server"}->{$server}->{"cql2rpn"});
541         $o->option(cclfile=> $context->{"serverinfo"}->{$server}->{"ccl2rpn"});
542         $o->option(preferredRecordSyntax => $syntax);
543         $o->option(elementSetName => "F"); # F for 'full' as opposed to B for 'brief'
544         $o->option(databaseName => ($servername?$servername:"biblios"));
545
546         # create a new connection object
547         $Zconn= create ZOOM::Connection($o);
548
549         # forge to server
550         $Zconn->connect($host, 0);
551
552         # check for errors and warn
553         if ($Zconn->errcode() !=0) {
554             warn "something wrong with the connection: ". $Zconn->errmsg();
555         }
556
557     };
558 #     if ($@) {
559 #         # Koha manages the Zebra server -- this doesn't work currently for me because of permissions issues
560 #         # Also, I'm skeptical about whether it's the best approach
561 #         warn "problem with Zebra";
562 #         if ( C4::Context->preference("ManageZebra") ) {
563 #             if ($@->code==10000 && $tried==0) { ##No connection try restarting Zebra
564 #                 $tried=1;
565 #                 warn "trying to restart Zebra";
566 #                 my $res=system("zebrasrv -f $ENV{'KOHA_CONF'} >/koha/log/zebra-error.log");
567 #                 goto "retry";
568 #             } else {
569 #                 warn "Error ", $@->code(), ": ", $@->message(), "\n";
570 #                 $Zconn="error";
571 #                 return $Zconn;
572 #             }
573 #         }
574 #     }
575     return $Zconn;
576 }
577
578 # _new_dbh
579 # Internal helper function (not a method!). This creates a new
580 # database connection from the data given in the current context, and
581 # returns it.
582 sub _new_dbh
583 {
584
585 ### $context
586     ##correct name for db_schme        
587     my $db_driver;
588     if ($context->config("db_scheme")){
589     $db_driver=db_scheme2dbi($context->config("db_scheme"));
590     }else{
591     $db_driver="mysql";
592     }
593
594     my $db_name   = $context->config("database");
595     my $db_host   = $context->config("hostname");
596     my $db_port   = $context->config("port");
597     $db_port = "" unless defined $db_port;
598     my $db_user   = $context->config("user");
599     my $db_passwd = $context->config("pass");
600     my $dbh= DBI->connect("DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port",
601          $db_user, $db_passwd);
602     if ( $db_driver eq 'mysql' ) { 
603         # Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
604         # this is better than modifying my.cnf (and forcing all communications to be in utf8)
605         $dbh->{'mysql_enable_utf8'}=1; #enable
606         $dbh->do("set NAMES 'utf8'");
607     }
608     elsif ( $db_driver eq 'Pg' ) {
609             $dbh->do( "set client_encoding = 'UTF8';" );
610     }
611     return $dbh;
612 }
613
614 =item dbh
615
616   $dbh = C4::Context->dbh;
617
618 Returns a database handle connected to the Koha database for the
619 current context. If no connection has yet been made, this method
620 creates one, and connects to the database.
621
622 This database handle is cached for future use: if you call
623 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
624 times. If you need a second database handle, use C<&new_dbh> and
625 possibly C<&set_dbh>.
626
627 =cut
628
629 #'
630 sub dbh
631 {
632     my $self = shift;
633     my $sth;
634
635     if (defined($context->{"dbh"})) {
636         $sth=$context->{"dbh"}->prepare("select 1");
637         return $context->{"dbh"} if (defined($sth->execute));
638     }
639
640     # No database handle or it died . Create one.
641     $context->{"dbh"} = &_new_dbh();
642
643     return $context->{"dbh"};
644 }
645
646 =item new_dbh
647
648   $dbh = C4::Context->new_dbh;
649
650 Creates a new connection to the Koha database for the current context,
651 and returns the database handle (a C<DBI::db> object).
652
653 The handle is not saved anywhere: this method is strictly a
654 convenience function; the point is that it knows which database to
655 connect to so that the caller doesn't have to know.
656
657 =cut
658
659 #'
660 sub new_dbh
661 {
662     my $self = shift;
663
664     return &_new_dbh();
665 }
666
667 =item set_dbh
668
669   $my_dbh = C4::Connect->new_dbh;
670   C4::Connect->set_dbh($my_dbh);
671   ...
672   C4::Connect->restore_dbh;
673
674 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
675 C<&set_context> and C<&restore_context>.
676
677 C<&set_dbh> saves the current database handle on a stack, then sets
678 the current database handle to C<$my_dbh>.
679
680 C<$my_dbh> is assumed to be a good database handle.
681
682 =cut
683
684 #'
685 sub set_dbh
686 {
687     my $self = shift;
688     my $new_dbh = shift;
689
690     # Save the current database handle on the handle stack.
691     # We assume that $new_dbh is all good: if the caller wants to
692     # screw himself by passing an invalid handle, that's fine by
693     # us.
694     push @{$context->{"dbh_stack"}}, $context->{"dbh"};
695     $context->{"dbh"} = $new_dbh;
696 }
697
698 =item restore_dbh
699
700   C4::Context->restore_dbh;
701
702 Restores the database handle saved by an earlier call to
703 C<C4::Context-E<gt>set_dbh>.
704
705 =cut
706
707 #'
708 sub restore_dbh
709 {
710     my $self = shift;
711
712     if ($#{$context->{"dbh_stack"}} < 0)
713     {
714         # Stack underflow
715         die "DBH stack underflow";
716     }
717
718     # Pop the old database handle and set it.
719     $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
720
721     # FIXME - If it is determined that restore_context should
722     # return something, then this function should, too.
723 }
724
725 =item marcfromkohafield
726
727   $dbh = C4::Context->marcfromkohafield;
728
729 Returns a hash with marcfromkohafield.
730
731 This hash is cached for future use: if you call
732 C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access
733
734 =cut
735
736 #'
737 sub marcfromkohafield
738 {
739     my $retval = {};
740
741     # If the hash already exists, return it.
742     return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
743
744     # No hash. Create one.
745     $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
746
747     return $context->{"marcfromkohafield"};
748 }
749
750 # _new_marcfromkohafield
751 # Internal helper function (not a method!). This creates a new
752 # hash with stopwords
753 sub _new_marcfromkohafield
754 {
755     my $dbh = C4::Context->dbh;
756     my $marcfromkohafield;
757     my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
758     $sth->execute;
759     while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
760         my $retval = {};
761         $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
762     }
763     return $marcfromkohafield;
764 }
765
766 =item stopwords
767
768   $dbh = C4::Context->stopwords;
769
770 Returns a hash with stopwords.
771
772 This hash is cached for future use: if you call
773 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
774
775 =cut
776
777 #'
778 sub stopwords
779 {
780     my $retval = {};
781
782     # If the hash already exists, return it.
783     return $context->{"stopwords"} if defined($context->{"stopwords"});
784
785     # No hash. Create one.
786     $context->{"stopwords"} = &_new_stopwords();
787
788     return $context->{"stopwords"};
789 }
790
791 # _new_stopwords
792 # Internal helper function (not a method!). This creates a new
793 # hash with stopwords
794 sub _new_stopwords
795 {
796     my $dbh = C4::Context->dbh;
797     my $stopwordlist;
798     my $sth = $dbh->prepare("select word from stopwords");
799     $sth->execute;
800     while (my $stopword = $sth->fetchrow_array) {
801         my $retval = {};
802         $stopwordlist->{$stopword} = uc($stopword);
803     }
804     $stopwordlist->{A} = "A" unless $stopwordlist;
805     return $stopwordlist;
806 }
807
808 =item userenv
809
810   C4::Context->userenv;
811
812 Builds a hash for user environment variables.
813
814 This hash shall be cached for future use: if you call
815 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
816
817 set_userenv is called in Auth.pm
818
819 =cut
820
821 #'
822 sub userenv
823 {
824     my $var = $context->{"activeuser"};
825     return $context->{"userenv"}->{$var} if (defined $context->{"userenv"}->{$var});
826     # insecure=1 management
827     if ($context->{"dbh"} && $context->preference('insecure')) {
828         my %insecure;
829         $insecure{flags} = '16382';
830         $insecure{branchname} ='Insecure';
831         $insecure{number} ='0';
832         $insecure{cardnumber} ='0';
833         $insecure{id} = 'insecure';
834         $insecure{branch} = 'INS';
835         $insecure{emailaddress} = 'test@mode.insecure.com';
836         return \%insecure;
837     } else {
838         return 0;
839     }
840 }
841
842 =item set_userenv
843
844   C4::Context->set_userenv($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $userflags, $emailaddress);
845
846 Informs a hash for user environment variables.
847
848 This hash shall be cached for future use: if you call
849 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
850
851 set_userenv is called in Auth.pm
852
853 =cut
854
855 #'
856 sub set_userenv{
857     my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $branchname, $userflags, $emailaddress, $branchprinter)= @_;
858     my $var=$context->{"activeuser"};
859     my $cell = {
860         "number"     => $usernum,
861         "id"         => $userid,
862         "cardnumber" => $usercnum,
863         "firstname"  => $userfirstname,
864         "surname"    => $usersurname,
865 #possibly a law problem
866         "branch"     => $userbranch,
867         "branchname" => $branchname,
868         "flags"      => $userflags,
869         "emailaddress"    => $emailaddress,
870                 "branchprinter"    => $branchprinter
871     };
872     $context->{userenv}->{$var} = $cell;
873     return $cell;
874 }
875
876 =item _new_userenv
877
878   C4::Context->_new_userenv($session);
879
880 Builds a hash for user environment variables.
881
882 This hash shall be cached for future use: if you call
883 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
884
885 _new_userenv is called in Auth.pm
886
887 =cut
888
889 #'
890 sub _new_userenv
891 {
892     shift;
893     my ($sessionID)= @_;
894      $context->{"activeuser"}=$sessionID;
895 }
896
897 =item _unset_userenv
898
899   C4::Context->_unset_userenv;
900
901 Destroys the hash for activeuser user environment variables.
902
903 =cut
904
905 #'
906
907 sub _unset_userenv
908 {
909     my ($sessionID)= @_;
910     undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
911 }
912
913
914 =item get_versions
915
916   C4::Context->get_versions
917
918 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'.
919
920 =cut
921
922 #'
923
924 # A little example sub to show more debugging info for CGI::Carp
925 sub get_versions {
926     my %versions;
927     $versions{kohaVersion}  = C4::Context->config("kohaversion");
928     $versions{osVersion} = `uname -a`;
929     $versions{perlVersion} = $];
930     $versions{mysqlVersion} = `mysql -V`;
931     $versions{apacheVersion} =  `httpd -v`;
932     $versions{apacheVersion} =  `httpd2 -v`            unless  $versions{apacheVersion} ;
933     $versions{apacheVersion} =  `apache2 -v`           unless  $versions{apacheVersion} ;
934     $versions{apacheVersion} =  `/usr/sbin/apache2 -v` unless  $versions{apacheVersion} ;
935     return %versions;
936 }
937
938
939 1;
940 __END__
941
942 =back
943
944 =head1 ENVIRONMENT
945
946 =over 4
947
948 =item C<KOHA_CONF>
949
950 Specifies the configuration file to read.
951
952 =back
953
954 =head1 SEE ALSO
955
956 XML::Simple
957
958 =head1 AUTHORS
959
960 Andrew Arensburger <arensb at ooblick dot com>
961
962 Joshua Ferraro <jmf at liblime dot com>
963
964 =cut
965
966 # Revision 1.57  2007/05/22 09:13:55  tipaul
967 # Bugfixes & improvements (various and minor) :
968 # - updating templates to have tmpl_process3.pl running without any errors
969 # - adding a drupal-like css for prog templates (with 3 small images)
970 # - fixing some bugs in circulation & other scripts
971 # - updating french translation
972 # - fixing some typos in templates
973 #
974 # Revision 1.56  2007/04/23 15:21:17  tipaul
975 # renaming currenttransfers to transferstoreceive
976 #
977 # Revision 1.55  2007/04/17 08:48:00  tipaul
978 # circulation cleaning continued: bufixing
979 #
980 # Revision 1.54  2007/03/29 16:45:53  tipaul
981 # Code cleaning of Biblio.pm (continued)
982 #
983 # All subs have be cleaned :
984 # - removed useless
985 # - merged some
986 # - reordering Biblio.pm completly
987 # - using only naming conventions
988 #
989 # Seems to have broken nothing, but it still has to be heavily tested.
990 # Note that Biblio.pm is now much more efficient than previously & probably more reliable as well.
991 #
992 # Revision 1.53  2007/03/29 13:30:31  tipaul
993 # Code cleaning :
994 # == Biblio.pm cleaning (useless) ==
995 # * some sub declaration dropped
996 # * removed modbiblio sub
997 # * removed moditem sub
998 # * removed newitems. It was used only in finishrecieve. Replaced by a TransformKohaToMarc+AddItem, that is better.
999 # * removed MARCkoha2marcItem
1000 # * removed MARCdelsubfield declaration
1001 # * removed MARCkoha2marcBiblio
1002 #
1003 # == Biblio.pm cleaning (naming conventions) ==
1004 # * MARCgettagslib renamed to GetMarcStructure
1005 # * MARCgetitems renamed to GetMarcItem
1006 # * MARCfind_frameworkcode renamed to GetFrameworkCode
1007 # * MARCmarc2koha renamed to TransformMarcToKoha
1008 # * MARChtml2marc renamed to TransformHtmlToMarc
1009 # * MARChtml2xml renamed to TranformeHtmlToXml
1010 # * zebraop renamed to ModZebra
1011 #
1012 # == MARC=OFF ==
1013 # * removing MARC=OFF related scripts (in cataloguing directory)
1014 # * removed checkitems (function related to MARC=off feature, that is completly broken in head. If someone want to reintroduce it, hard work coming...)
1015 # * removed getitemsbybiblioitem (used only by MARC=OFF scripts, that is removed as well)
1016 #
1017 # Revision 1.52  2007/03/16 01:25:08  kados
1018 # Using my precrash CVS copy I did the following:
1019 #
1020 # cvs -z3 -d:ext:kados@cvs.savannah.nongnu.org:/sources/koha co -P koha
1021 # find koha.precrash -type d -name "CVS" -exec rm -v {} \;
1022 # cp -r koha.precrash/* koha/
1023 # cd koha/
1024 # cvs commit
1025 #
1026 # This should in theory put us right back where we were before the crash
1027 #
1028 # Revision 1.52  2007/03/12 21:17:05  rych
1029 # add server, serverinfo as arrays from config
1030 #
1031 # Revision 1.51  2007/03/09 14:31:47  tipaul
1032 # rel_3_0 moved to HEAD
1033 #
1034 # Revision 1.43.2.10  2007/02/09 17:17:56  hdl
1035 # Managing a little better database absence.
1036 # (preventing from BIG 550)
1037 #
1038 # Revision 1.43.2.9  2006/12/20 16:50:48  tipaul
1039 # improving "insecure" management
1040 #
1041 # WARNING KADOS :
1042 # you told me that you had some libraries with insecure=ON (behind a firewall).
1043 # In this commit, I created a "fake" user when insecure=ON. It has a fake branch. You may find better to have the 1st branch in branch table instead of a fake one.
1044 #
1045 # Revision 1.43.2.8  2006/12/19 16:48:16  alaurin
1046 # reident programs, and adding branchcode value in reserves
1047 #
1048 # Revision 1.43.2.7  2006/12/06 21:55:38  hdl
1049 # Adding ModZebrations for servers to get serverinfos in Context.pm
1050 # Using this function in rebuild_zebra.pl
1051 #
1052 # Revision 1.43.2.6  2006/11/24 21:18:31  kados
1053 # very minor changes, no functional ones, just comments, etc.
1054 #
1055 # Revision 1.43.2.5  2006/10/30 13:24:16  toins
1056 # fix some minor POD error.
1057 #
1058 # Revision 1.43.2.4  2006/10/12 21:42:49  hdl
1059 # Managing multiple zebra connections
1060 #
1061 # Revision 1.43.2.3  2006/10/11 14:27:26  tipaul
1062 # removing a warning
1063 #
1064 # Revision 1.43.2.2  2006/10/10 15:28:16  hdl
1065 # BUG FIXING : using database name in Zconn if defined and not hard coded value
1066 #
1067 # Revision 1.43.2.1  2006/10/06 13:47:28  toins
1068 # Synch with dev_week.
1069 #  /!\ WARNING :: Please now use the new version of koha.xml.
1070 #
1071 # Revision 1.18.2.5.2.14  2006/09/24 15:24:06  kados
1072 # remove Zebraauth routine, fold the functionality into Zconn
1073 # Zconn can now take several arguments ... this will probably
1074 # change soon as I'm not completely happy with the readability
1075 # of the current format ... see the POD for details.
1076 #
1077 # cleaning up Biblio.pm, removing unnecessary routines.
1078 #
1079 # DeleteBiblio - used to delete a biblio from zebra and koha tables
1080 #     -- checks to make sure there are no existing issues
1081 #     -- saves backups of biblio,biblioitems,items in deleted* tables
1082 #     -- does commit operation
1083 #
1084 # getRecord - used to retrieve one record from zebra in piggyback mode using biblionumber
1085 # brought back z3950_extended_services routine
1086 #
1087 # Lots of modifications to Context.pm, you can now store user and pass info for
1088 # multiple servers (for federated searching) using the <serverinfo> element.
1089 # I'll commit my koha.xml to demonstrate this or you can refer to the POD in
1090 # Context.pm (which I also expanded on).
1091 #
1092 # Revision 1.18.2.5.2.13  2006/08/10 02:10:21  kados
1093 # Turned warnings on, and running a search turned up lots of warnings.
1094 # Cleaned up those ...
1095 #
1096 # removed getitemtypes from Koha.pm (one in Search.pm looks newer)
1097 # removed itemcount from Biblio.pm
1098 #
1099 # made some local subs local with a _ prefix (as they were redefined
1100 # elsewhere)
1101 #
1102 # Add two new search subs to Search.pm the start of a new search API
1103 # that's a bit more scalable
1104 #
1105 # Revision 1.18.2.5.2.10  2006/07/21 17:50:51  kados
1106 # moving the *.properties files to intranetdir/etc dir
1107 #
1108 # Revision 1.18.2.5.2.9  2006/07/17 08:05:20  tipaul
1109 # there was a hardcoded link to /koha/etc/ I replaced it with intranetdir config value
1110 #
1111 # Revision 1.18.2.5.2.8  2006/07/11 12:20:37  kados
1112 # adding ccl and cql files ... Tumer, if you want to fit these into the
1113 # config file by all means do.
1114 #
1115 # Revision 1.18.2.5.2.7  2006/06/04 22:50:33  tgarip1957
1116 # We do not hard code cql2rpn conversion file in context.pm our koha.xml configuration file already describes the path for this file.
1117 # At cql searching we use method CQL not CQL2RPN as the cql2rpn conversion file is defined at server level
1118 #
1119 # Revision 1.18.2.5.2.6  2006/06/02 23:11:24  kados
1120 # Committing my working dev_week. It's been tested only with
1121 # searching, and there's quite a lot of config stuff to set up
1122 # beforehand. As things get closer to a release, we'll be making
1123 # some scripts to do it for us
1124 #
1125 # Revision 1.18.2.5.2.5  2006/05/28 18:49:12  tgarip1957
1126 # This is an unusual commit. The main purpose is a working model of Zebra on a modified rel2_2.
1127 # Any questions regarding these commits should be asked to Joshua Ferraro unless you are Joshua whom I'll report to
1128 #
1129 # Revision 1.36  2006/05/09 13:28:08  tipaul
1130 # adding the branchname and the librarian name in every page :
1131 # - modified userenv to add branchname
1132 # - modifier menus.inc to have the librarian name & userenv displayed on every page. they are in a librarian_information div.
1133 #
1134 # Revision 1.35  2006/04/13 08:40:11  plg
1135 # bug fixed: typo on Zconnauth name
1136 #
1137 # Revision 1.34  2006/04/10 21:40:23  tgarip1957
1138 # A new handler defined for zebra Zconnauth with read/write permission. Zconnauth should only be called in biblio.pm where write operations are. Use of this handler will break things unless koha.conf contains new variables:
1139 # zebradb=localhost
1140 # zebraport=<your port>
1141 # zebrauser=<username>
1142 # zebrapass=<password>
1143 #
1144 # The zebra.cfg file should read:
1145 # perm.anonymous:r
1146 # perm.username:rw
1147 # passw.c:<yourpasswordfile>
1148 #
1149 # Password file should be prepared with Apaches htpasswd utility in encrypted mode and should exist in a folder zebra.cfg can read
1150 #
1151 # Revision 1.33  2006/03/15 11:21:56  plg
1152 # bug fixed: utf-8 data where not displayed correctly in screens. Supposing
1153 # your data are truely utf-8 encoded in your database, they should be
1154 # correctly displayed. "set names 'UTF8'" on mysql connection (C4/Context.pm)
1155 # is mandatory and "binmode" to utf8 (C4/Interface/CGI/Output.pm) seemed to
1156 # converted data twice, so it was removed.
1157 #
1158 # Revision 1.32  2006/03/03 17:25:01  hdl
1159 # Bug fixing : a line missed a comment sign.
1160 #
1161 # Revision 1.31  2006/03/03 16:45:36  kados
1162 # Remove the search that tests the Zconn -- warning, still no fault
1163 # tollerance
1164 #
1165 # Revision 1.30  2006/02/22 00:56:59  kados
1166 # First go at a connection object for Zebra. You can now get a
1167 # connection object by doing:
1168 #
1169 # my $Zconn = C4::Context->Zconn;
1170 #
1171 # My initial tests indicate that as soon as your funcion ends
1172 # (ie, when you're done doing something) the connection will be
1173 # closed automatically. There may be some other way to make the
1174 # connection more stateful, I'm not sure...
1175 #
1176 # Local Variables:
1177 # tab-width: 4
1178 # End: