Work in progress still, committing for testing
[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         my $dbh= DBI->connect("DBI:$db_driver:$db_name:$db_host",
412                             $db_user, $db_passwd);
413         # Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
414         # this is better than modifying my.cnf (and forcing all communications to be in utf8)
415         $dbh->do("set NAMES 'utf8'");
416         return $dbh;
417 }
418
419 =item dbh
420
421   $dbh = C4::Context->dbh;
422
423 Returns a database handle connected to the Koha database for the
424 current context. If no connection has yet been made, this method
425 creates one, and connects to the database.
426
427 This database handle is cached for future use: if you call
428 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
429 times. If you need a second database handle, use C<&new_dbh> and
430 possibly C<&set_dbh>.
431
432 =cut
433 #'
434 sub dbh
435 {
436         my $self = shift;
437         my $sth;
438
439         if (defined($context->{"dbh"})) {
440             $sth=$context->{"dbh"}->prepare("select 1");
441             return $context->{"dbh"} if (defined($sth->execute));
442         }
443
444         # No database handle or it died . Create one.
445         $context->{"dbh"} = &_new_dbh();
446
447         return $context->{"dbh"};
448 }
449
450 =item new_dbh
451
452   $dbh = C4::Context->new_dbh;
453
454 Creates a new connection to the Koha database for the current context,
455 and returns the database handle (a C<DBI::db> object).
456
457 The handle is not saved anywhere: this method is strictly a
458 convenience function; the point is that it knows which database to
459 connect to so that the caller doesn't have to know.
460
461 =cut
462 #'
463 sub new_dbh
464 {
465         my $self = shift;
466
467         return &_new_dbh();
468 }
469
470 =item set_dbh
471
472   $my_dbh = C4::Connect->new_dbh;
473   C4::Connect->set_dbh($my_dbh);
474   ...
475   C4::Connect->restore_dbh;
476
477 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
478 C<&set_context> and C<&restore_context>.
479
480 C<&set_dbh> saves the current database handle on a stack, then sets
481 the current database handle to C<$my_dbh>.
482
483 C<$my_dbh> is assumed to be a good database handle.
484
485 =cut
486 #'
487 sub set_dbh
488 {
489         my $self = shift;
490         my $new_dbh = shift;
491
492         # Save the current database handle on the handle stack.
493         # We assume that $new_dbh is all good: if the caller wants to
494         # screw himself by passing an invalid handle, that's fine by
495         # us.
496         push @{$context->{"dbh_stack"}}, $context->{"dbh"};
497         $context->{"dbh"} = $new_dbh;
498 }
499
500 =item restore_dbh
501
502   C4::Context->restore_dbh;
503
504 Restores the database handle saved by an earlier call to
505 C<C4::Context-E<gt>set_dbh>.
506
507 =cut
508 #'
509 sub restore_dbh
510 {
511         my $self = shift;
512
513         if ($#{$context->{"dbh_stack"}} < 0)
514         {
515                 # Stack underflow
516                 die "DBH stack underflow";
517         }
518
519         # Pop the old database handle and set it.
520         $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
521
522         # FIXME - If it is determined that restore_context should
523         # return something, then this function should, too.
524 }
525
526 =item marcfromkohafield
527
528   $dbh = C4::Context->marcfromkohafield;
529
530 Returns a hash with marcfromkohafield.
531
532 This hash is cached for future use: if you call
533 C<C4::Context-E<gt>marcfromkohafield> twice, you will get the same hash without real DB access
534
535 =cut
536 #'
537 sub marcfromkohafield
538 {
539         my $retval = {};
540
541         # If the hash already exists, return it.
542         return $context->{"marcfromkohafield"} if defined($context->{"marcfromkohafield"});
543
544         # No hash. Create one.
545         $context->{"marcfromkohafield"} = &_new_marcfromkohafield();
546
547         return $context->{"marcfromkohafield"};
548 }
549
550 # _new_marcfromkohafield
551 # Internal helper function (not a method!). This creates a new
552 # hash with stopwords
553 sub _new_marcfromkohafield
554 {
555         my $dbh = C4::Context->dbh;
556         my $marcfromkohafield;
557         my $sth = $dbh->prepare("select frameworkcode,kohafield,tagfield,tagsubfield from marc_subfield_structure where kohafield > ''");
558         $sth->execute;
559         while (my ($frameworkcode,$kohafield,$tagfield,$tagsubfield) = $sth->fetchrow) {
560                 my $retval = {};
561                 $marcfromkohafield->{$frameworkcode}->{$kohafield} = [$tagfield,$tagsubfield];
562         }
563         return $marcfromkohafield;
564 }
565
566 =item stopwords
567
568   $dbh = C4::Context->stopwords;
569
570 Returns a hash with stopwords.
571
572 This hash is cached for future use: if you call
573 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
574
575 =cut
576 #'
577 sub stopwords
578 {
579         my $retval = {};
580
581         # If the hash already exists, return it.
582         return $context->{"stopwords"} if defined($context->{"stopwords"});
583
584         # No hash. Create one.
585         $context->{"stopwords"} = &_new_stopwords();
586
587         return $context->{"stopwords"};
588 }
589
590 # _new_stopwords
591 # Internal helper function (not a method!). This creates a new
592 # hash with stopwords
593 sub _new_stopwords
594 {
595         my $dbh = C4::Context->dbh;
596         my $stopwordlist;
597         my $sth = $dbh->prepare("select word from stopwords");
598         $sth->execute;
599         while (my $stopword = $sth->fetchrow_array) {
600                 my $retval = {};
601                 $stopwordlist->{$stopword} = uc($stopword);
602         }
603         $stopwordlist->{A} = "A" unless $stopwordlist;
604         return $stopwordlist;
605 }
606
607 =item userenv
608
609   C4::Context->userenv;
610
611 Builds a hash for user environment variables.
612
613 This hash shall be cached for future use: if you call
614 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
615
616 set_userenv is called in Auth.pm
617
618 =cut
619 #'
620 sub userenv
621 {
622         my $var = $context->{"activeuser"};
623         return $context->{"userenv"}->{$var} if (defined $context->{"userenv"}->{$var});
624         return 0;
625         warn "NO CONTEXT for $var";
626 }
627
628 =item set_userenv
629
630   C4::Context->set_userenv($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $userflags, $emailaddress);
631
632 Informs a hash for user environment variables.
633
634 This hash shall be cached for future use: if you call
635 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
636
637 set_userenv is called in Auth.pm
638
639 =cut
640 #'
641 sub set_userenv{
642         my ($usernum, $userid, $usercnum, $userfirstname, $usersurname, $userbranch, $userflags, $emailaddress)= @_;
643         my $var=$context->{"activeuser"};
644         my $cell = {
645                 "number"     => $usernum,
646                 "id"         => $userid,
647                 "cardnumber" => $usercnum,
648 #               "firstname"  => $userfirstname,
649 #               "surname"    => $usersurname,
650 #possibly a law problem
651                 "branch"     => $userbranch,
652                 "flags"      => $userflags,
653                 "emailaddress"  => $emailaddress,
654         };
655         $context->{userenv}->{$var} = $cell;
656         return $cell;
657 }
658
659 =item _new_userenv
660
661   C4::Context->_new_userenv($session);
662
663 Builds a hash for user environment variables.
664
665 This hash shall be cached for future use: if you call
666 C<C4::Context-E<gt>userenv> twice, you will get the same hash without real DB access
667
668 _new_userenv is called in Auth.pm
669
670 =cut
671 #'
672 sub _new_userenv
673 {
674         shift;
675         my ($sessionID)= @_;
676         $context->{"activeuser"}=$sessionID;
677 }
678
679 =item _unset_userenv
680
681   C4::Context->_unset_userenv;
682
683 Destroys the hash for activeuser user environment variables.
684
685 =cut
686 #'
687
688 sub _unset_userenv
689 {
690         my ($sessionID)= @_;
691         undef $context->{"activeuser"} if ($context->{"activeuser"} eq $sessionID);
692 }
693
694
695
696 1;
697 __END__
698
699 =back
700
701 =head1 ENVIRONMENT
702
703 =over 4
704
705 =item C<KOHA_CONF>
706
707 Specifies the configuration file to read.
708
709 =back
710
711 =head1 SEE ALSO
712
713 DBI(3)
714
715 =head1 AUTHOR
716
717 Andrew Arensburger <arensb at ooblick dot com>
718
719 =cut