bug 4865: added dependency for using memcached for sessions
[koha.git] / C4 / Branch.pm
1 package C4::Branch;
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
19 use strict;
20 #use warnings; FIXME - Bug 2505
21 require Exporter;
22 use C4::Context;
23 use C4::Koha;
24
25 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
26
27 BEGIN {
28         # set the version for version checking
29         $VERSION = 3.02;
30         @ISA    = qw(Exporter);
31         @EXPORT = qw(
32                 &GetBranchCategory
33                 &GetBranchName
34                 &GetBranch
35                 &GetBranches
36                 &GetBranchesLoop
37                 &GetBranchDetail
38                 &get_branchinfos_of
39                 &ModBranch
40                 &CheckBranchCategorycode
41                 &GetBranchInfo
42                 &GetCategoryTypes
43                 &GetBranchCategories
44                 &GetBranchesInCategory
45                 &ModBranchCategoryInfo
46                 &DelBranch
47                 &DelBranchCategory
48                 &CheckCategoryUnique
49                 &mybranch
50         );
51         @EXPORT_OK = qw( &onlymine &mybranch get_branch_code_from_name );
52 }
53
54 =head1 NAME
55
56 C4::Branch - Koha branch module
57
58 =head1 SYNOPSIS
59
60 use C4::Branch;
61
62 =head1 DESCRIPTION
63
64 The functions in this module deal with branches.
65
66 =head1 FUNCTIONS
67
68 =head2 GetBranches
69
70   $branches = &GetBranches();
71
72 Returns informations about ALL branches, IndependantBranches Insensitive.
73 GetBranchInfo() returns the same information without the problems of this function 
74 (namespace collision, mainly).
75
76 Create a branch selector with the following code.
77
78 =head3 in PERL SCRIPT
79
80     my $branches = GetBranches;
81     my @branchloop;
82     foreach my $thisbranch (sort keys %$branches) {
83         my $selected = 1 if $thisbranch eq $branch;
84         my %row =(value => $thisbranch,
85                     selected => $selected,
86                     branchname => $branches->{$thisbranch}->{branchname},
87                 );
88         push @branchloop, \%row;
89     }
90
91 =head3 in TEMPLATE
92
93     <select name="branch">
94         <option value="">Default</option>
95         <!-- TMPL_LOOP name="branchloop" -->
96         <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
97         <!-- /TMPL_LOOP -->
98     </select>
99
100 =head4 Note that you often will want to just use GetBranchesLoop, for exactly the example above.
101
102 =cut
103
104 sub GetBranches {
105     my ($onlymine)=@_;
106     # returns a reference to a hash of references to ALL branches...
107     my %branches;
108     my $dbh = C4::Context->dbh;
109     my $sth;
110     my $query="SELECT * FROM branches";
111     my @bind_parameters;
112     if ($onlymine && C4::Context->userenv && C4::Context->userenv->{branch}){
113       $query .= ' WHERE branchcode = ? ';
114       push @bind_parameters, C4::Context->userenv->{branch};
115     }
116         $query.=" ORDER BY branchname";
117     $sth = $dbh->prepare($query);
118     $sth->execute( @bind_parameters );
119
120     my $nsth = $dbh->prepare(
121         "SELECT categorycode FROM branchrelations WHERE branchcode = ?"
122     );  # prepare once, outside while loop
123
124     while ( my $branch = $sth->fetchrow_hashref ) {
125         $nsth->execute( $branch->{'branchcode'} );
126         while ( my ($cat) = $nsth->fetchrow_array ) {
127             # FIXME - This seems wrong. It ought to be
128             # $branch->{categorycodes}{$cat} = 1;
129             # otherwise, there's a namespace collision if there's a
130             # category with the same name as a field in the 'branches'
131             # table (i.e., don't create a category called "issuing").
132             # In addition, the current structure doesn't really allow
133             # you to list the categories that a branch belongs to:
134             # you'd have to list keys %$branch, and remove those keys
135             # that aren't fields in the "branches" table.
136          #   $branch->{$cat} = 1;
137             $branch->{category}{$cat} = 1;
138         }
139         $branches{ $branch->{'branchcode'} } = $branch;
140     }
141     return ( \%branches );
142 }
143
144 sub onlymine {
145     return 
146     C4::Context->preference('IndependantBranches') &&
147     C4::Context->userenv                           &&
148     C4::Context->userenv->{flags} %2 != 1          &&
149     C4::Context->userenv->{branch}                 ;
150 }
151
152 # always returns a string for OK comparison via "eq" or "ne"
153 sub mybranch {
154     C4::Context->userenv           or return '';
155     return C4::Context->userenv->{branch} || '';
156 }
157
158 sub GetBranchesLoop (;$$) {  # since this is what most pages want anyway
159     my $branch   = @_ ? shift : mybranch();     # optional first argument is branchcode of "my branch", if preselection is wanted.
160     my $onlymine = @_ ? shift : onlymine();
161     my $branches = GetBranches($onlymine);
162     my @loop;
163     foreach ( sort { uc($branches->{$a}->{branchname}) cmp uc($branches->{$b}->{branchname}) } keys %$branches ) {
164         push @loop, {
165             value => $_,
166             selected => ($_ eq $branch) ? 1 : 0, 
167             branchname => $branches->{$_}->{branchname},
168         };
169     }
170     return \@loop;
171 }
172
173 =head2 GetBranchName
174
175 =cut
176
177 sub GetBranchName {
178     my ($branchcode) = @_;
179     my $dbh = C4::Context->dbh;
180     my $sth;
181     $sth = $dbh->prepare("Select branchname from branches where branchcode=?");
182     $sth->execute($branchcode);
183     my $branchname = $sth->fetchrow_array;
184     $sth->finish;
185     return ($branchname);
186 }
187
188 =head2 ModBranch
189
190 $error = &ModBranch($newvalue);
191
192 This function modify an existing branch
193
194 C<$newvalue> is a ref to an array wich is containt all the column from branches table.
195
196 =cut
197
198 sub ModBranch {
199     my ($data) = @_;
200     
201     my $dbh    = C4::Context->dbh;
202     if ($data->{add}) {
203         my $query  = "
204             INSERT INTO branches
205             (branchcode,branchname,branchaddress1,
206             branchaddress2,branchaddress3,branchzip,branchcity,
207             branchcountry,branchphone,branchfax,branchemail,
208             branchurl,branchip,branchprinter,branchnotes)
209             VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
210         ";
211         my $sth    = $dbh->prepare($query);
212         $sth->execute(
213             $data->{'branchcode'},       $data->{'branchname'},
214             $data->{'branchaddress1'},   $data->{'branchaddress2'},
215             $data->{'branchaddress3'},   $data->{'branchzip'},
216             $data->{'branchcity'},       $data->{'branchcountry'},
217             $data->{'branchphone'},      $data->{'branchfax'},
218             $data->{'branchemail'},      $data->{'branchurl'},
219             $data->{'branchip'},         $data->{'branchprinter'},
220             $data->{'branchnotes'},
221         );
222         return 1 if $dbh->err;
223     } else {
224         my $query  = "
225             UPDATE branches
226             SET branchname=?,branchaddress1=?,
227                 branchaddress2=?,branchaddress3=?,branchzip=?,
228                 branchcity=?,branchcountry=?,branchphone=?,
229                 branchfax=?,branchemail=?,branchurl=?,branchip=?,
230                 branchprinter=?,branchnotes=?
231             WHERE branchcode=?
232         ";
233         my $sth    = $dbh->prepare($query);
234         $sth->execute(
235             $data->{'branchname'},
236             $data->{'branchaddress1'},   $data->{'branchaddress2'},
237             $data->{'branchaddress3'},   $data->{'branchzip'},
238             $data->{'branchcity'},       $data->{'branchcountry'},
239             $data->{'branchphone'},      $data->{'branchfax'},
240             $data->{'branchemail'},      $data->{'branchurl'},
241             $data->{'branchip'},         $data->{'branchprinter'},
242             $data->{'branchnotes'},
243             $data->{'branchcode'},
244         );
245     }
246     # sort out the categories....
247     my @checkedcats;
248     my $cats = GetBranchCategory();
249     foreach my $cat (@$cats) {
250         my $code = $cat->{'categorycode'};
251         if ( $data->{$code} ) {
252             push( @checkedcats, $code );
253         }
254     }
255     my $branchcode = uc( $data->{'branchcode'} );
256     my $branch     = GetBranchInfo($branchcode);
257     $branch = $branch->[0];
258     my $branchcats = $branch->{'categories'};
259     my @addcats;
260     my @removecats;
261     foreach my $bcat (@$branchcats) {
262
263         unless ( grep { /^$bcat$/ } @checkedcats ) {
264             push( @removecats, $bcat );
265         }
266     }
267     foreach my $ccat (@checkedcats) {
268         unless ( grep { /^$ccat$/ } @$branchcats ) {
269             push( @addcats, $ccat );
270         }
271     }
272     foreach my $cat (@addcats) {
273         my $sth =
274           $dbh->prepare(
275 "insert into branchrelations (branchcode, categorycode) values(?, ?)"
276           );
277         $sth->execute( $branchcode, $cat );
278         $sth->finish;
279     }
280     foreach my $cat (@removecats) {
281         my $sth =
282           $dbh->prepare(
283             "delete from branchrelations where branchcode=? and categorycode=?"
284           );
285         $sth->execute( $branchcode, $cat );
286         $sth->finish;
287     }
288 }
289
290 =head2 GetBranchCategory
291
292 $results = GetBranchCategory($categorycode);
293
294 C<$results> is an ref to an array.
295
296 =cut
297
298 sub GetBranchCategory {
299
300     # returns a reference to an array of hashes containing branches,
301     my ($catcode) = @_;
302     my $dbh = C4::Context->dbh;
303     my $sth;
304
305     #    print DEBUG "GetBranchCategory: entry: catcode=".cvs($catcode)."\n";
306     if ($catcode) {
307         $sth =
308           $dbh->prepare(
309             "select * from branchcategories where categorycode = ?");
310         $sth->execute($catcode);
311     }
312     else {
313         $sth = $dbh->prepare("Select * from branchcategories");
314         $sth->execute();
315     }
316     my @results;
317     while ( my $data = $sth->fetchrow_hashref ) {
318         push( @results, $data );
319     }
320     $sth->finish;
321
322     #    print DEBUG "GetBranchCategory: exit: returning ".cvs(\@results)."\n";
323     return \@results;
324 }
325
326 =head2 GetBranchCategories
327
328   my $categories = GetBranchCategories($branchcode,$categorytype);
329
330 Returns a list ref of anon hashrefs with keys eq columns of branchcategories table,
331 i.e. categorycode, categorydescription, categorytype, categoryname.
332 if $branchcode and/or $categorytype are passed, limit set to categories that
333 $branchcode is a member of , and to $categorytype.
334
335 =cut
336
337 sub GetBranchCategories {
338     my ($branchcode,$categorytype) = @_;
339         my $dbh = C4::Context->dbh();
340         my $query = "SELECT c.* FROM branchcategories c";
341         my (@where, @bind);
342         if($branchcode) {
343                 $query .= ",branchrelations r, branches b ";
344                 push @where, "c.categorycode=r.categorycode and r.branchcode=? ";  
345                 push @bind , $branchcode;
346         }
347         if ($categorytype) {
348                 push @where, " c.categorytype=? ";
349                 push @bind, $categorytype;
350         }
351         $query .= " where " . join(" and ", @where) if(@where);
352         $query .= " order by categorytype,c.categorycode";
353         my $sth=$dbh->prepare( $query);
354         $sth->execute(@bind);
355         
356         my $branchcats = $sth->fetchall_arrayref({});
357         $sth->finish();
358         return( $branchcats );
359 }
360
361 =head2 GetCategoryTypes
362
363 $categorytypes = GetCategoryTypes;
364 returns a list of category types.
365 Currently these types are HARDCODED.
366 type: 'searchdomain' defines a group of agencies that the calling library may search in.
367 Other usage of agency categories falls under type: 'properties'.
368         to allow for other uses of categories.
369 The searchdomain bit may be better implemented as a separate module, but
370 the categories were already here, and minimally used.
371 =cut
372
373         #TODO  manage category types.  rename possibly to 'agency domains' ? as borrowergroups are called categories.
374 sub GetCategoryTypes() {
375         return ( 'searchdomain','properties');
376 }
377
378 =head2 GetBranch
379
380 $branch = GetBranch( $query, $branches );
381
382 =cut
383
384 sub GetBranch ($$) {
385     my ( $query, $branches ) = @_;    # get branch for this query from branches
386     my $branch = $query->param('branch');
387     my %cookie = $query->cookie('userenv');
388     ($branch)                || ($branch = $cookie{'branchname'});
389     ( $branches->{$branch} ) || ( $branch = ( keys %$branches )[0] );
390     return $branch;
391 }
392
393 =head2 GetBranchDetail
394
395     $branch = &GetBranchDetail($branchcode);
396
397 Given the branch code, the function returns a
398 hashref for the corresponding row in the branches table.
399
400 =cut
401
402 sub GetBranchDetail {
403     my ($branchcode) = shift or return;
404     my $sth = C4::Context->dbh->prepare("SELECT * FROM branches WHERE branchcode = ?");
405     $sth->execute($branchcode);
406     return $sth->fetchrow_hashref();
407 }
408
409 =head2 get_branchinfos_of
410
411   my $branchinfos_of = get_branchinfos_of(@branchcodes);
412
413 Associates a list of branchcodes to the information of the branch, taken in
414 branches table.
415
416 Returns a href where keys are branchcodes and values are href where keys are
417 branch information key.
418
419   print 'branchname is ', $branchinfos_of->{$code}->{branchname};
420
421 =cut
422
423 sub get_branchinfos_of {
424     my @branchcodes = @_;
425
426     my $query = '
427     SELECT branchcode,
428        branchname
429     FROM branches
430     WHERE branchcode IN ('
431       . join( ',', map( { "'" . $_ . "'" } @branchcodes ) ) . ')
432 ';
433     return C4::Koha::get_infos_of( $query, 'branchcode' );
434 }
435
436
437 =head2 GetBranchesInCategory
438
439   my $branches = GetBranchesInCategory($categorycode);
440
441 Returns a href:  keys %$branches eq (branchcode,branchname) .
442
443 =cut
444
445 sub GetBranchesInCategory($) {
446     my ($categorycode) = @_;
447         my @branches;
448         my $dbh = C4::Context->dbh();
449         my $sth=$dbh->prepare( "SELECT b.branchcode FROM branchrelations r, branches b 
450                                                         where r.branchcode=b.branchcode and r.categorycode=?");
451     $sth->execute($categorycode);
452         while (my $branch = $sth->fetchrow) {
453                 push @branches, $branch;
454         }
455         $sth->finish();
456         return( \@branches );
457 }
458
459 =head2 GetBranchInfo
460
461 $results = GetBranchInfo($branchcode);
462
463 returns C<$results>, a reference to an array of hashes containing branches.
464 if $branchcode, just this branch, with associated categories.
465 if ! $branchcode && $categorytype, all branches in the category.
466 =cut
467
468 sub GetBranchInfo {
469     my ($branchcode,$categorytype) = @_;
470     my $dbh = C4::Context->dbh;
471     my $sth;
472
473
474         if ($branchcode) {
475         $sth =
476           $dbh->prepare(
477             "Select * from branches where branchcode = ? order by branchcode");
478         $sth->execute($branchcode);
479     }
480     else {
481         $sth = $dbh->prepare("Select * from branches order by branchcode");
482         $sth->execute();
483     }
484     my @results;
485     while ( my $data = $sth->fetchrow_hashref ) {
486                 my @bind = ($data->{'branchcode'});
487         my $query= "select r.categorycode from branchrelations r";
488                 $query .= ", branchcategories c " if($categorytype);
489                 $query .= " where  branchcode=? ";
490                 if($categorytype) { 
491                         $query .= " and c.categorytype=? and r.categorycode=c.categorycode";
492                         push @bind, $categorytype;
493                 }
494         my $nsth=$dbh->prepare($query);
495                 $nsth->execute( @bind );
496         my @cats = ();
497         while ( my ($cat) = $nsth->fetchrow_array ) {
498             push( @cats, $cat );
499         }
500         $nsth->finish;
501         $data->{'categories'} = \@cats;
502         push( @results, $data );
503     }
504     $sth->finish;
505     return \@results;
506 }
507
508 =head2 DelBranch
509
510 &DelBranch($branchcode);
511
512 =cut
513
514 sub DelBranch {
515     my ($branchcode) = @_;
516     my $dbh = C4::Context->dbh;
517     my $sth = $dbh->prepare("delete from branches where branchcode = ?");
518     $sth->execute($branchcode);
519     $sth->finish;
520 }
521
522 =head2 ModBranchCategoryInfo
523
524 &ModBranchCategoryInfo($data);
525 sets the data from the editbranch form, and writes to the database...
526
527 =cut
528
529 sub ModBranchCategoryInfo {
530     my ($data) = @_;
531     my $dbh    = C4::Context->dbh;
532     if ($data->{'add'}){
533         # we are doing an insert
534         my $sth   = $dbh->prepare("INSERT INTO branchcategories (categorycode,categoryname,codedescription,categorytype) VALUES (?,?,?,?)");
535         $sth->execute(uc( $data->{'categorycode'} ),$data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'} );
536         $sth->finish();         
537     }
538     else {
539         # modifying
540         my $sth = $dbh->prepare("UPDATE branchcategories SET categoryname=?,codedescription=?,categorytype=? WHERE categorycode=?");
541         $sth->execute($data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'},uc( $data->{'categorycode'} ) );
542         $sth->finish();
543     }
544 }
545
546 =head2 CheckCategoryUnique
547
548 if (CheckCategoryUnique($categorycode)){
549   # do something
550 }
551
552 =cut
553
554 sub CheckCategoryUnique {
555     my $categorycode = shift;
556     my $dbh    = C4::Context->dbh;
557     my $sth = $dbh->prepare("SELECT categorycode FROM branchcategories WHERE categorycode = ?");
558     $sth->execute(uc( $categorycode) );
559     if (my $data = $sth->fetchrow_hashref){
560         return 0;
561     }
562     else {
563         return 1;
564     }
565 }
566
567     
568 =head2 DeleteBranchCategory
569
570 DeleteBranchCategory($categorycode);
571
572 =cut
573
574 sub DelBranchCategory {
575     my ($categorycode) = @_;
576     my $dbh = C4::Context->dbh;
577     my $sth = $dbh->prepare("delete from branchcategories where categorycode = ?");
578     $sth->execute($categorycode);
579     $sth->finish;
580 }
581
582 =head2 CheckBranchCategorycode
583
584 $number_rows_affected = CheckBranchCategorycode($categorycode);
585
586 =cut
587
588 sub CheckBranchCategorycode {
589
590     # check to see if the branchcode is being used in the database somewhere....
591     my ($categorycode) = @_;
592     my $dbh            = C4::Context->dbh;
593     my $sth            =
594       $dbh->prepare(
595         "select count(*) from branchrelations where categorycode=?");
596     $sth->execute($categorycode);
597     my ($total) = $sth->fetchrow_array;
598     return $total;
599 }
600
601 sub get_branch_code_from_name {
602    my @branch_name = @_;
603    my $query = "SELECT branchcode FROM branches WHERE branchname=?;";
604    my $dbh = C4::Context->dbh();
605    my $sth = $dbh->prepare($query);
606    $sth->execute(@branch_name);
607    return $sth->fetchrow_array;
608 }
609
610 1;
611 __END__
612
613 =head1 AUTHOR
614
615 Koha Development Team <http://koha-community.org/>
616
617 =cut