Bug Fixing for independantBranches support.
[koha.git] / C4 / Context.pm
1 # Copyright 2002 Katipo Communications
2 #
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 # $Id$
19 # Revision History:
20 # 2004-08-11 A. Tarallo: Added the function db_escheme2dbi, tested my bugfixes,
21 # further  details about them in the code.
22 # 2004-11-23 A. Tarallo, E. Silva: Bugfixes for running in a mod_perl environment.
23 # Clean up of previous bugfixes, better documentation of what was done. 
24
25 package C4::Context;
26 use strict;
27 use DBI;
28 use C4::Boolean;
29
30 use vars qw($VERSION $AUTOLOAD),
31         qw($context),
32         qw(@context_stack);
33
34 $VERSION = do { my @v = '$Revision$' =~ /\d+/g;
35                 shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
36
37 =head1 NAME
38
39 C4::Context - Maintain and manipulate the context of a Koha script
40
41 =head1 SYNOPSIS
42
43   use C4::Context;
44
45   use C4::Context("/path/to/koha.conf");
46
47   $config_value = C4::Context->config("config_variable");
48   $db_handle = C4::Context->dbh;
49   $stopwordhash = C4::Context->stopwords;
50
51 =head1 DESCRIPTION
52
53 When a Koha script runs, it makes use of a certain number of things:
54 configuration settings in F</etc/koha.conf>, a connection to the Koha
55 database, and so forth. These things make up the I<context> in which
56 the script runs.
57
58 This module takes care of setting up the context for a script:
59 figuring out which configuration file to load, and loading it, opening
60 a connection to the right database, and so forth.
61
62 Most scripts will only use one context. They can simply have
63
64   use C4::Context;
65
66 at the top.
67
68 Other scripts may need to use several contexts. For instance, if a
69 library has two databases, one for a certain collection, and the other
70 for everything else, it might be necessary for a script to use two
71 different contexts to search both databases. Such scripts should use
72 the C<&set_context> and C<&restore_context> functions, below.
73
74 By default, C4::Context reads the configuration from
75 F</etc/koha.conf>. This may be overridden by setting the C<$KOHA_CONF>
76 environment variable to the pathname of a configuration file to use.
77
78 =head1 METHODS
79
80 =over 2
81
82 =cut
83 #'
84 # In addition to what is said in the POD above, a Context object is a
85 # reference-to-hash with the following fields:
86 #
87 # config
88 #       A reference-to-hash whose keys and values are the
89 #       configuration variables and values specified in the config
90 #       file (/etc/koha.conf).
91 # dbh
92 #       A handle to the appropriate database for this context.
93 # dbh_stack
94 #       Used by &set_dbh and &restore_dbh to hold other database
95 #       handles for this context.
96
97 use constant CONFIG_FNAME => "/etc/koha.conf";
98                                 # Default config file, if none is specified
99
100 $context = undef;               # Initially, no context is set
101 @context_stack = ();            # Initially, no saved contexts
102
103 # read_config_file
104 # Reads the specified Koha config file. Returns a reference-to-hash
105 # whose keys are the configuration variables, and whose values are the
106 # configuration values (duh).
107 # Returns undef in case of error.
108 #
109 # Revision History:
110 # 2004-08-10 A. Tarallo: Added code that checks if a variable is already
111 # assigned and prints a message, otherwise create a new entry in the hash to
112 # be returned. 
113 # Also added code that complaints if finds a line that isn't a variable 
114 # assignmet and skips the line.
115 # Added a quick hack that makes the translation between the db_schema
116 # and the DBI driver for that schema.
117 #
118 sub read_config_file
119 {
120         my $fname = shift;      # Config file to read
121         my $retval = {};        # Return value: ref-to-hash holding the
122                                 # configuration
123
124         open (CONF, $fname) or return undef;
125
126         while (<CONF>)
127         {
128                 my $var;                # Variable name
129                 my $value;              # Variable value
130
131                 chomp;
132                 s/#.*//;                # Strip comments
133                 next if /^\s*$/;        # Ignore blank lines
134
135                 # Look for a line of the form
136                 #       var = value
137                 if (!/^\s*(\w+)\s*=\s*(.*?)\s*$/)
138                 {
139                         print STDERR 
140                                 "$_ isn't a variable assignment, skipping it";
141                         next;
142                 }
143
144                 # Found a variable assignment
145                 if ( exists $retval->{$1} )
146                 {
147                         print STDERR "$var was already defined, ignoring\n";
148                 }else{
149                 # Quick hack for allowing databases name in full text
150                         if ( $1 eq "db_scheme" )
151                         {
152                                 $value = db_scheme2dbi($2);
153                         }else {
154                                 $value = $2;
155                         }
156                         $retval->{$1} = $value;
157                 }
158         }
159         close CONF;
160
161         return $retval;
162 }
163
164 # db_scheme2dbi
165 # Translates the full text name of a database into de appropiate dbi name
166
167 sub db_scheme2dbi
168 {
169         my $name = shift;
170
171         for ($name) {
172 # FIXME - Should have other databases. 
173                 if (/mysql/i) { return("mysql"); }
174                 if (/Postgres|Pg|PostgresSQL/) { return("Pg"); }
175                 if (/oracle/i) { return("Oracle"); }
176         }
177         return undef;           # Just in case
178 }
179
180 sub import
181 {
182         my $package = shift;
183         my $conf_fname = shift;         # Config file name
184         my $context;
185
186         # Create a new context from the given config file name, if
187         # any, then set it as the current context.
188         $context = new C4::Context($conf_fname);
189         return undef if !defined($context);
190         $context->set_context;
191 }
192
193 =item new
194
195   $context = new C4::Context;
196   $context = new C4::Context("/path/to/koha.conf");
197
198 Allocates a new context. Initializes the context from the specified
199 file, which defaults to either the file given by the C<$KOHA_CONF>
200 environment variable, or F</etc/koha.conf>.
201
202 C<&new> does not set this context as the new default context; for
203 that, use C<&set_context>.
204
205 =cut
206 #'
207 # Revision History:
208 # 2004-08-10 A. Tarallo: Added check if the conf file is not empty
209 sub new
210 {
211         my $class = shift;
212         my $conf_fname = shift;         # Config file to load
213         my $self = {};
214
215         # check that the specified config file exists and is not empty
216         undef $conf_fname unless 
217             (defined $conf_fname && -e $conf_fname && -s $conf_fname);
218         # Figure out a good config file to load if none was specified.
219         if (!defined($conf_fname))
220         {
221                 # If the $KOHA_CONF environment variable is set, use
222                 # that. Otherwise, use the built-in default.
223                 $conf_fname = $ENV{"KOHA_CONF"} || CONFIG_FNAME;
224         }
225         $self->{"config_file"} = $conf_fname;
226
227         # Load the desired config file.
228         $self->{"config"} = &read_config_file($conf_fname);
229         warn "read_config_file($conf_fname) returned undef" if !defined($self->{"config"});
230         return undef if !defined($self->{"config"});
231
232         $self->{"dbh"} = undef;         # Database handle
233         $self->{"stopwords"} = undef; # stopwords list
234         $self->{"marcfromkohafield"} = undef; # the hash with relations between koha table fields and MARC field/subfield
235         $self->{"userenv"} = undef;             # User env
236         $self->{"activeuser"} = undef;          # current active user
237
238         bless $self, $class;
239         return $self;
240 }
241
242 =item set_context
243
244   $context = new C4::Context;
245   $context->set_context();
246 or
247   set_context C4::Context $context;
248
249   ...
250   restore_context C4::Context;
251
252 In some cases, it might be necessary for a script to use multiple
253 contexts. C<&set_context> saves the current context on a stack, then
254 sets the context to C<$context>, which will be used in future
255 operations. To restore the previous context, use C<&restore_context>.
256
257 =cut
258 #'
259 sub set_context
260 {
261         my $self = shift;
262         my $new_context;        # The context to set
263
264         # Figure out whether this is a class or instance method call.
265         #
266         # We're going to make the assumption that control got here
267         # through valid means, i.e., that the caller used an instance
268         # or class method call, and that control got here through the
269         # usual inheritance mechanisms. The caller can, of course,
270         # break this assumption by playing silly buggers, but that's
271         # harder to do than doing it properly, and harder to check
272         # for.
273         if (ref($self) eq "")
274         {
275                 # Class method. The new context is the next argument.
276                 $new_context = shift;
277         } else {
278                 # Instance method. The new context is $self.
279                 $new_context = $self;
280         }
281
282         # Save the old context, if any, on the stack
283         push @context_stack, $context if defined($context);
284
285         # Set the new context
286         $context = $new_context;
287 }
288
289 =item restore_context
290
291   &restore_context;
292
293 Restores the context set by C<&set_context>.
294
295 =cut
296 #'
297 sub restore_context
298 {
299         my $self = shift;
300
301         if ($#context_stack < 0)
302         {
303                 # Stack underflow.
304                 die "Context stack underflow";
305         }
306
307         # Pop the old context and set it.
308         $context = pop @context_stack;
309
310         # FIXME - Should this return something, like maybe the context
311         # that was current when this was called?
312 }
313
314 =item config
315
316   $value = C4::Context->config("config_variable");
317
318   $value = C4::Context->config_variable;
319
320 Returns the value of a variable specified in the configuration file
321 from which the current context was created.
322
323 The second form is more compact, but of course may conflict with
324 method names. If there is a configuration variable called "new", then
325 C<C4::Config-E<gt>new> will not return it.
326
327 =cut
328 #'
329 sub config
330 {
331         my $self = shift;
332         my $var = shift;                # The config variable to return
333
334         return undef if !defined($context->{"config"});
335                         # Presumably $self->{config} might be
336                         # undefined if the config file given to &new
337                         # didn't exist, and the caller didn't bother
338                         # to check the return value.
339
340         # Return the value of the requested config variable
341         return $context->{"config"}{$var};
342 }
343
344 =item preference
345
346   $sys_preference = C4::Context->preference("some_variable");
347
348 Looks up the value of the given system preference in the
349 systempreferences table of the Koha database, and returns it. If the
350 variable is not set, or in case of error, returns the undefined value.
351
352 =cut
353 #'
354 # FIXME - The preferences aren't likely to change over the lifetime of
355 # the script (and things might break if they did change), so perhaps
356 # this function should cache the results it finds.
357 sub preference
358 {
359         my $self = shift;
360         my $var = shift;                # The system preference to return
361         my $retval;                     # Return value
362         my $dbh = C4::Context->dbh;     # Database handle
363         my $sth;                        # Database query handle
364
365         # Look up systempreferences.variable==$var
366         $retval = $dbh->selectrow_array(<<EOT);
367                 SELECT  value
368                 FROM    systempreferences
369                 WHERE   variable='$var'
370                 LIMIT   1
371 EOT
372         return $retval;
373 }
374
375 sub boolean_preference ($) {
376         my $self = shift;
377         my $var = shift;                # The system preference to return
378         my $it = preference($self, $var);
379         return defined($it)? C4::Boolean::true_p($it): undef;
380 }
381
382 # AUTOLOAD
383 # This implements C4::Config->foo, and simply returns
384 # C4::Context->config("foo"), as described in the documentation for
385 # &config, above.
386
387 # FIXME - Perhaps this should be extended to check &config first, and
388 # then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
389 # code, so it'd probably be best to delete it altogether so as not to
390 # encourage people to use it.
391 sub AUTOLOAD
392 {
393         my $self = shift;
394
395         $AUTOLOAD =~ s/.*:://;          # Chop off the package name,
396                                         # leaving only the function name.
397         return $self->config($AUTOLOAD);
398 }
399
400 # _new_dbh
401 # Internal helper function (not a method!). This creates a new
402 # database connection from the data given in the current context, and
403 # returns it.
404 sub _new_dbh
405 {
406         my $db_driver = $context->{"config"}{"db_scheme"} || "mysql";
407         my $db_name   = $context->{"config"}{"database"};
408         my $db_host   = $context->{"config"}{"hostname"};
409         my $db_user   = $context->{"config"}{"user"};
410         my $db_passwd = $context->{"config"}{"pass"};
411         return DBI->connect("DBI:$db_driver:$db_name:$db_host",
412                             $db_user, $db_passwd);
413 }
414
415 =item dbh
416
417   $dbh = C4::Context->dbh;
418
419 Returns a database handle connected to the Koha database for the
420 current context. If no connection has yet been made, this method
421 creates one, and connects to the database.
422
423 This database handle is cached for future use: if you call
424 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
425 times. If you need a second database handle, use C<&new_dbh> and
426 possibly C<&set_dbh>.
427
428 =cut
429 #'
430 sub dbh
431 {
432         my $self = shift;
433         my $sth;
434
435         if (defined($context->{"dbh"})) {
436             $sth=$context->{"dbh"}->prepare("select 1");
437             return $context->{"dbh"} if (defined($sth->execute));
438         }
439
440         # No database handle or it died . Create one.
441         $context->{"dbh"} = &_new_dbh();
442
443         return $context->{"dbh"};
444 }
445
446 =item new_dbh
447
448   $dbh = C4::Context->new_dbh;
449
450 Creates a new connection to the Koha database for the current context,
451 and returns the database handle (a C<DBI::db> object).
452
453 The handle is not saved anywhere: this method is strictly a
454 convenience function; the point is that it knows which database to
455 connect to so that the caller doesn't have to know.
456
457 =cut
458 #'
459 sub new_dbh
460 {
461         my $self = shift;
462
463         return &_new_dbh();
464 }
465
466 =item set_dbh
467
468   $my_dbh = C4::Connect->new_dbh;
469   C4::Connect->set_dbh($my_dbh);
470   ...
471   C4::Connect->restore_dbh;
472
473 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
474 C<&set_context> and C<&restore_context>.
475
476 C<&set_dbh> saves the current database handle on a stack, then sets
477 the current database handle to C<$my_dbh>.
478
479 C<$my_dbh> is assumed to be a good database handle.
480
481 =cut
482 #'
483 sub set_dbh
484 {
485         my $self = shift;
486         my $new_dbh = shift;
487
488         # Save the current database handle on the handle stack.
489         # We assume that $new_dbh is all good: if the caller wants to
490         # screw himself by passing an invalid handle, that's fine by
491         # us.
492         push @{$context->{"dbh_stack"}}, $context->{"dbh"};
493         $context->{"dbh"} = $new_dbh;
494 }
495
496 =item restore_dbh
497
498   C4::Context->restore_dbh;
499
500 Restores the database handle saved by an earlier call to
501 C<C4::Context-E<gt>set_dbh>.
502
503 =cut
504 #'
505 sub restore_dbh
506 {
507         my $self = shift;
508
509         if ($#{$context->{"dbh_stack"}} < 0)
510         {
511                 # Stack underflow
512                 die "DBH stack underflow";
513         }
514
515         # Pop the old database handle and set it.
516         $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
517
518         # FIXME - If it is determined that restore_context should
519         # return something, then this function should, too.
520 }
521
522 =item marcfromkohafield
523
524   $dbh = C4::Context->marcfromkohafield;
525
526 Returns a hash with marcfromkohafield.
527
528 This hash is cached for future use: if you call
529 C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access
530
531 =cut
532 #'
533 sub marcfromkohafield
534 {
535         my $retval = {};
536
537         # If the hash already exists, return it.
538         return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
539
540         # No hash. Create one.
541         $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
542
543         return $context->{"marcfromkohafield"};
544 }
545
546 # _new_marcfromkohafield
547 # Internal helper function (not a method!). This creates a new
548 # hash with stopwords
549 sub _new_marcfromkohafield
550 {
551         my $dbh = C4::Context->dbh;
552         my $marcfromkohafield;
553         my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
554         $sth->execute;
555         while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
556                 my $retval = {};
557                 $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
558         }
559         return $marcfromkohafield;
560 }
561
562 =item stopwords
563
564   $dbh = C4::Context->stopwords;
565
566 Returns a hash with stopwords.
567
568 This hash is cached for future use: if you call
569 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
570
571 =cut
572 #'
573 sub stopwords
574 {
575         my $retval = {};
576
577         # If the hash already exists, return it.
578         return $context->{"stopwords"} if defined($context->{"stopwords"});
579
580         # No hash. Create one.
581         $context->{"stopwords"} = &_new_stopwords();
582
583         return $context->{"stopwords"};
584 }
585
586 # _new_stopwords
587 # Internal helper function (not a method!). This creates a new
588 # hash with stopwords
589 sub _new_stopwords
590 {
591         my $dbh = C4::Context->dbh;
592         my $stopwordlist;
593         my $sth = $dbh->prepare("select word from stopwords");
594         $sth->execute;
595         while (my $stopword = $sth->fetchrow_array) {
596                 my $retval = {};
597                 $stopwordlist->{$stopword} = uc($stopword);
598         }
599         return $stopwordlist;
600 }
601
602 =item userenv
603
604   %userenv = C4::Context->userenv;
605
606 Returns a hash with userenvironment variables.
607
608 This hash is cached for future use: if you call
609 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
610
611 Returns Null if userenv is not set.
612 userenv is set in _new_userenv, called in Auth.pm
613
614 =cut
615 #'
616
617 =item userenv
618
619   C4::Context->userenv;
620
621 Builds a hash for user environment variables.
622
623 This hash shall be cached for future use: if you call
624 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
625
626 set_userenv is called in Auth.pm
627
628 =cut
629 #'
630 sub userenv
631 {
632         my $var = $context->{"activeuser"};
633         return $context->{"userenv"}->{$var} if (defined $context->{"userenv"}->{$var});
634 }
635
636 =item userenv
637
638   C4::Context->set_userenv;
639
640 Builds a hash for user environment variables.
641
642 This hash shall be cached for future use: if you call
643 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
644
645 set_userenv is called in Auth.pm
646
647 =cut
648 #'
649 sub set_userenv{
650         my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $userflags)= @_;
651         my $var=$context->{"activeuser"};
652         my $cell = {
653                 "number"     => $usernum,
654                 "id"         => $userid,
655                 "cardnumber" => $usercnum,
656                 "firstname"  => $userfirstname,
657                 "surname"    => $usersurname,
658                 "branch"     => $userbranch,
659                 "flags"      => $userflags
660         };
661         $context->{userenv}->{$var} = $cell;
662         return $cell;
663 }
664
665 =item _new_userenv
666
667   C4::Context->_new_userenv($session);
668
669 Builds a hash for user environment variables.
670
671 This hash shall be cached for future use: if you call
672 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
673
674 _new_userenv is called in Auth.pm
675
676 =cut
677 #'
678 sub _new_userenv
679 {
680         shift;
681         my ($sessionID)= @_;
682         $context->{"activeuser"}=$sessionID;
683 }
684
685 =item _unset_userenv
686
687   C4::Context->_unset_userenv;
688
689 Destroys the hash for activeuser user environment variables.
690
691 =cut
692 #'
693
694 sub _unset_userenv
695 {
696         my ($sessionID)= @_;
697 #       undef $context->{$sessionID};
698         undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
699 #       $context->{"activeuser"}--;
700 }
701
702
703 1;
704 __END__
705
706 =back
707
708 =head1 ENVIRONMENT
709
710 =over 4
711
712 =item C<KOHA_CONF>
713
714 Specifies the configuration file to read.
715
716 =back
717
718 =head1 SEE ALSO
719
720 DBI(3)
721
722 =head1 AUTHOR
723
724 Andrew Arensburger <arensb at ooblick dot com>
725
726 =cut