fixes from A. Tarallo, for mod_perl compliance
[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         return undef if !defined($self->{"config"});
230
231         $self->{"dbh"} = undef;         # Database handle
232         $self->{"stopwords"} = undef; # stopwords list
233
234         bless $self, $class;
235         return $self;
236 }
237
238 =item set_context
239
240   $context = new C4::Context;
241   $context->set_context();
242 or
243   set_context C4::Context $context;
244
245   ...
246   restore_context C4::Context;
247
248 In some cases, it might be necessary for a script to use multiple
249 contexts. C<&set_context> saves the current context on a stack, then
250 sets the context to C<$context>, which will be used in future
251 operations. To restore the previous context, use C<&restore_context>.
252
253 =cut
254 #'
255 sub set_context
256 {
257         my $self = shift;
258         my $new_context;        # The context to set
259
260         # Figure out whether this is a class or instance method call.
261         #
262         # We're going to make the assumption that control got here
263         # through valid means, i.e., that the caller used an instance
264         # or class method call, and that control got here through the
265         # usual inheritance mechanisms. The caller can, of course,
266         # break this assumption by playing silly buggers, but that's
267         # harder to do than doing it properly, and harder to check
268         # for.
269         if (ref($self) eq "")
270         {
271                 # Class method. The new context is the next argument.
272                 $new_context = shift;
273         } else {
274                 # Instance method. The new context is $self.
275                 $new_context = $self;
276         }
277
278         # Save the old context, if any, on the stack
279         push @context_stack, $context if defined($context);
280
281         # Set the new context
282         $context = $new_context;
283 }
284
285 =item restore_context
286
287   &restore_context;
288
289 Restores the context set by C<&set_context>.
290
291 =cut
292 #'
293 sub restore_context
294 {
295         my $self = shift;
296
297         if ($#context_stack < 0)
298         {
299                 # Stack underflow.
300                 die "Context stack underflow";
301         }
302
303         # Pop the old context and set it.
304         $context = pop @context_stack;
305
306         # FIXME - Should this return something, like maybe the context
307         # that was current when this was called?
308 }
309
310 =item config
311
312   $value = C4::Context->config("config_variable");
313
314   $value = C4::Context->config_variable;
315
316 Returns the value of a variable specified in the configuration file
317 from which the current context was created.
318
319 The second form is more compact, but of course may conflict with
320 method names. If there is a configuration variable called "new", then
321 C<C4::Config-E<gt>new> will not return it.
322
323 =cut
324 #'
325 sub config
326 {
327         my $self = shift;
328         my $var = shift;                # The config variable to return
329
330         return undef if !defined($context->{"config"});
331                         # Presumably $self->{config} might be
332                         # undefined if the config file given to &new
333                         # didn't exist, and the caller didn't bother
334                         # to check the return value.
335
336         # Return the value of the requested config variable
337         return $context->{"config"}{$var};
338 }
339
340 =item preference
341
342   $sys_preference = C4::Context->preference("some_variable");
343
344 Looks up the value of the given system preference in the
345 systempreferences table of the Koha database, and returns it. If the
346 variable is not set, or in case of error, returns the undefined value.
347
348 =cut
349 #'
350 # FIXME - The preferences aren't likely to change over the lifetime of
351 # the script (and things might break if they did change), so perhaps
352 # this function should cache the results it finds.
353 sub preference
354 {
355         my $self = shift;
356         my $var = shift;                # The system preference to return
357         my $retval;                     # Return value
358         my $dbh = C4::Context->dbh;     # Database handle
359         my $sth;                        # Database query handle
360
361         # Look up systempreferences.variable==$var
362         $retval = $dbh->selectrow_array(<<EOT);
363                 SELECT  value
364                 FROM    systempreferences
365                 WHERE   variable='$var'
366                 LIMIT   1
367 EOT
368         return $retval;
369 }
370
371 sub boolean_preference ($) {
372         my $self = shift;
373         my $var = shift;                # The system preference to return
374         my $it = preference($self, $var);
375         return defined($it)? C4::Boolean::true_p($it): undef;
376 }
377
378 # AUTOLOAD
379 # This implements C4::Config->foo, and simply returns
380 # C4::Context->config("foo"), as described in the documentation for
381 # &config, above.
382
383 # FIXME - Perhaps this should be extended to check &config first, and
384 # then &preference if that fails. OTOH, AUTOLOAD could lead to crappy
385 # code, so it'd probably be best to delete it altogether so as not to
386 # encourage people to use it.
387 sub AUTOLOAD
388 {
389         my $self = shift;
390
391         $AUTOLOAD =~ s/.*:://;          # Chop off the package name,
392                                         # leaving only the function name.
393         return $self->config($AUTOLOAD);
394 }
395
396 # _new_dbh
397 # Internal helper function (not a method!). This creates a new
398 # database connection from the data given in the current context, and
399 # returns it.
400 sub _new_dbh
401 {
402         my $db_driver = $context->{"config"}{"db_scheme"} || "mysql";
403         my $db_name   = $context->{"config"}{"database"};
404         my $db_host   = $context->{"config"}{"hostname"};
405         my $db_user   = $context->{"config"}{"user"};
406         my $db_passwd = $context->{"config"}{"pass"};
407         return DBI->connect("DBI:$db_driver:$db_name:$db_host",
408                             $db_user, $db_passwd);
409 }
410
411 =item dbh
412
413   $dbh = C4::Context->dbh;
414
415 Returns a database handle connected to the Koha database for the
416 current context. If no connection has yet been made, this method
417 creates one, and connects to the database.
418
419 This database handle is cached for future use: if you call
420 C<C4::Context-E<gt>dbh> twice, you will get the same handle both
421 times. If you need a second database handle, use C<&new_dbh> and
422 possibly C<&set_dbh>.
423
424 =cut
425 #'
426 sub dbh
427 {
428         my $self = shift;
429         my $sth;
430
431         if (defined($context->{"dbh"})) {
432             $sth=$context->{"dbh"}->prepare("select 1");
433             return $context->{"dbh"} if (defined($sth->execute));
434         }
435
436         warn "Database died";
437
438         # No database handle or it died . Create one.
439         $context->{"dbh"} = &_new_dbh();
440
441         return $context->{"dbh"};
442 }
443
444 =item new_dbh
445
446   $dbh = C4::Context->new_dbh;
447
448 Creates a new connection to the Koha database for the current context,
449 and returns the database handle (a C<DBI::db> object).
450
451 The handle is not saved anywhere: this method is strictly a
452 convenience function; the point is that it knows which database to
453 connect to so that the caller doesn't have to know.
454
455 =cut
456 #'
457 sub new_dbh
458 {
459         my $self = shift;
460
461         return &_new_dbh();
462 }
463
464 =item set_dbh
465
466   $my_dbh = C4::Connect->new_dbh;
467   C4::Connect->set_dbh($my_dbh);
468   ...
469   C4::Connect->restore_dbh;
470
471 C<&set_dbh> and C<&restore_dbh> work in a manner analogous to
472 C<&set_context> and C<&restore_context>.
473
474 C<&set_dbh> saves the current database handle on a stack, then sets
475 the current database handle to C<$my_dbh>.
476
477 C<$my_dbh> is assumed to be a good database handle.
478
479 =cut
480 #'
481 sub set_dbh
482 {
483         my $self = shift;
484         my $new_dbh = shift;
485
486         # Save the current database handle on the handle stack.
487         # We assume that $new_dbh is all good: if the caller wants to
488         # screw himself by passing an invalid handle, that's fine by
489         # us.
490         push @{$context->{"dbh_stack"}}, $context->{"dbh"};
491         $context->{"dbh"} = $new_dbh;
492 }
493
494 =item restore_dbh
495
496   C4::Context->restore_dbh;
497
498 Restores the database handle saved by an earlier call to
499 C<C4::Context-E<gt>set_dbh>.
500
501 =cut
502 #'
503 sub restore_dbh
504 {
505         my $self = shift;
506
507         if ($#{$context->{"dbh_stack"}} < 0)
508         {
509                 # Stack underflow
510                 die "DBH stack underflow";
511         }
512
513         # Pop the old database handle and set it.
514         $context->{"dbh"} = pop @{$context->{"dbh_stack"}};
515
516         # FIXME - If it is determined that restore_context should
517         # return something, then this function should, too.
518 }
519
520 =item stopwords
521
522   $dbh = C4::Context->stopwords;
523
524 Returns a hash with stopwords.
525
526 This hash is cached for future use: if you call
527 C<C4::Context-E<gt>stopwords> twice, you will get the same hash without real DB access
528
529 =cut
530 #'
531 sub stopwords
532 {
533         my $retval = {};
534
535         # If the hash already exists, return it.
536         return $context->{"stopwords"} if defined($context->{"stopwords"});
537
538         # No hash. Create one.
539         $context->{"stopwords"} = &_new_stopwords();
540
541         return $context->{"stopwords"};
542 }
543
544 # _new_stopwords
545 # Internal helper function (not a method!). This creates a new
546 # hash with stopwords
547 sub _new_stopwords
548 {
549         my $dbh = C4::Context->dbh;
550         my $stopwordlist;
551         my $sth = $dbh->prepare("select word from stopwords");
552         $sth->execute;
553         while (my $stopword = $sth->fetchrow_array) {
554                 my $retval = {};
555                 $stopwordlist->{$stopword} = uc($stopword);
556         }
557         return $stopwordlist;
558 }
559
560 1;
561 __END__
562
563 =back
564
565 =head1 ENVIRONMENT
566
567 =over 4
568
569 =item C<KOHA_CONF>
570
571 Specifies the configuration file to read.
572
573 =back
574
575 =head1 SEE ALSO
576
577 DBI(3)
578
579 =head1 AUTHOR
580
581 Andrew Arensburger <arensb at ooblick dot com>
582
583 =cut