Bug 10690 - Warn about trailing slashes in description of OPACBaseURL and staffClient...
[koha.git] / C4 / Branch.pm
blob108f24fdf3bcdc6c27d150affc3a6112ddec4e47
1 package C4::Branch;
3 # This file is part of Koha.
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.
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.
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
19 use strict;
20 #use warnings; FIXME - Bug 2505
21 require Exporter;
22 use C4::Context;
24 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
26 BEGIN {
27 # set the version for version checking
28 $VERSION = 3.07.00.049;
29 @ISA = qw(Exporter);
30 @EXPORT = qw(
31 &GetBranchCategory
32 &GetBranchName
33 &GetBranch
34 &GetBranches
35 &GetBranchesLoop
36 &GetBranchDetail
37 &get_branchinfos_of
38 &ModBranch
39 &CheckBranchCategorycode
40 &GetBranchInfo
41 &GetCategoryTypes
42 &GetBranchCategories
43 &GetBranchesInCategory
44 &ModBranchCategoryInfo
45 &DelBranch
46 &DelBranchCategory
47 &CheckCategoryUnique
48 &mybranch
49 &GetBranchesCount
51 @EXPORT_OK = qw( &onlymine &mybranch );
54 =head1 NAME
56 C4::Branch - Koha branch module
58 =head1 SYNOPSIS
60 use C4::Branch;
62 =head1 DESCRIPTION
64 The functions in this module deal with branches.
66 =head1 FUNCTIONS
68 =head2 GetBranches
70 $branches = &GetBranches();
72 Returns informations about ALL branches, IndependentBranches Insensitive.
73 GetBranchInfo() returns the same information without the problems of this function
74 (namespace collision, mainly).
76 Create a branch selector with the following code.
78 =head3 in PERL SCRIPT
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},
88 push @branchloop, \%row;
91 =head3 in TEMPLATE
93 <select name="branch" id="branch">
94 <option value=""></option>
95 [% FOREACH branchloo IN branchloop %]
96 [% IF ( branchloo.selected ) %]
97 <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>
98 [% ELSE %]
99 <option value="[% branchloo.value %]" >[% branchloo.branchname %]</option>
100 [% END %]
101 [% END %]
102 </select>
104 =head4 Note that you often will want to just use GetBranchesLoop, for exactly the example above.
106 =cut
108 sub GetBranches {
109 my ($onlymine)=@_;
110 # returns a reference to a hash of references to ALL branches...
111 my %branches;
112 my $dbh = C4::Context->dbh;
113 my $sth;
114 my $query="SELECT * FROM branches";
115 my @bind_parameters;
116 if ($onlymine && C4::Context->userenv && C4::Context->userenv->{branch}){
117 $query .= ' WHERE branchcode = ? ';
118 push @bind_parameters, C4::Context->userenv->{branch};
120 $query.=" ORDER BY branchname";
121 $sth = $dbh->prepare($query);
122 $sth->execute( @bind_parameters );
124 my $nsth = $dbh->prepare(
125 "SELECT categorycode FROM branchrelations WHERE branchcode = ?"
126 ); # prepare once, outside while loop
128 while ( my $branch = $sth->fetchrow_hashref ) {
129 $nsth->execute( $branch->{'branchcode'} );
130 while ( my ($cat) = $nsth->fetchrow_array ) {
131 # FIXME - This seems wrong. It ought to be
132 # $branch->{categorycodes}{$cat} = 1;
133 # otherwise, there's a namespace collision if there's a
134 # category with the same name as a field in the 'branches'
135 # table (i.e., don't create a category called "issuing").
136 # In addition, the current structure doesn't really allow
137 # you to list the categories that a branch belongs to:
138 # you'd have to list keys %$branch, and remove those keys
139 # that aren't fields in the "branches" table.
140 # $branch->{$cat} = 1;
141 $branch->{category}{$cat} = 1;
143 $branches{ $branch->{'branchcode'} } = $branch;
145 return ( \%branches );
148 sub onlymine {
149 return
150 C4::Context->preference('IndependentBranches') &&
151 C4::Context->userenv &&
152 C4::Context->userenv->{flags} %2 != 1 &&
153 C4::Context->userenv->{branch} ;
156 # always returns a string for OK comparison via "eq" or "ne"
157 sub mybranch {
158 C4::Context->userenv or return '';
159 return C4::Context->userenv->{branch} || '';
162 sub GetBranchesLoop { # since this is what most pages want anyway
163 my $branch = @_ ? shift : mybranch(); # optional first argument is branchcode of "my branch", if preselection is wanted.
164 my $onlymine = @_ ? shift : onlymine();
165 my $branches = GetBranches($onlymine);
166 my @loop;
167 foreach my $branchcode ( sort { uc($branches->{$a}->{branchname}) cmp uc($branches->{$b}->{branchname}) } keys %$branches ) {
168 push @loop, {
169 value => $branchcode,
170 branchcode => $branchcode,
171 selected => ($branchcode eq $branch) ? 1 : 0,
172 branchname => $branches->{$branchcode}->{branchname},
175 return \@loop;
178 =head2 GetBranchName
180 =cut
182 sub GetBranchName {
183 my ($branchcode) = @_;
184 my $dbh = C4::Context->dbh;
185 my $sth;
186 $sth = $dbh->prepare("Select branchname from branches where branchcode=?");
187 $sth->execute($branchcode);
188 my $branchname = $sth->fetchrow_array;
189 $sth->finish;
190 return ($branchname);
193 =head2 ModBranch
195 $error = &ModBranch($newvalue);
197 This function modify an existing branch
199 C<$newvalue> is a ref to an array wich is containt all the column from branches table.
201 =cut
203 sub ModBranch {
204 my ($data) = @_;
206 my $dbh = C4::Context->dbh;
207 if ($data->{add}) {
208 my $query = "
209 INSERT INTO branches
210 (branchcode,branchname,branchaddress1,
211 branchaddress2,branchaddress3,branchzip,branchcity,branchstate,
212 branchcountry,branchphone,branchfax,branchemail,
213 branchurl,branchip,branchprinter,branchnotes,opac_info)
214 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
216 my $sth = $dbh->prepare($query);
217 $sth->execute(
218 $data->{'branchcode'}, $data->{'branchname'},
219 $data->{'branchaddress1'}, $data->{'branchaddress2'},
220 $data->{'branchaddress3'}, $data->{'branchzip'},
221 $data->{'branchcity'}, $data->{'branchstate'},
222 $data->{'branchcountry'},
223 $data->{'branchphone'}, $data->{'branchfax'},
224 $data->{'branchemail'}, $data->{'branchurl'},
225 $data->{'branchip'}, $data->{'branchprinter'},
226 $data->{'branchnotes'}, $data->{opac_info},
228 return 1 if $dbh->err;
229 } else {
230 my $query = "
231 UPDATE branches
232 SET branchname=?,branchaddress1=?,
233 branchaddress2=?,branchaddress3=?,branchzip=?,
234 branchcity=?,branchstate=?,branchcountry=?,branchphone=?,
235 branchfax=?,branchemail=?,branchurl=?,branchip=?,
236 branchprinter=?,branchnotes=?,opac_info=?
237 WHERE branchcode=?
239 my $sth = $dbh->prepare($query);
240 $sth->execute(
241 $data->{'branchname'},
242 $data->{'branchaddress1'}, $data->{'branchaddress2'},
243 $data->{'branchaddress3'}, $data->{'branchzip'},
244 $data->{'branchcity'}, $data->{'branchstate'},
245 $data->{'branchcountry'},
246 $data->{'branchphone'}, $data->{'branchfax'},
247 $data->{'branchemail'}, $data->{'branchurl'},
248 $data->{'branchip'}, $data->{'branchprinter'},
249 $data->{'branchnotes'}, $data->{opac_info},
250 $data->{'branchcode'},
253 # sort out the categories....
254 my @checkedcats;
255 my $cats = GetBranchCategories();
256 foreach my $cat (@$cats) {
257 my $code = $cat->{'categorycode'};
258 if ( $data->{$code} ) {
259 push( @checkedcats, $code );
262 my $branchcode = uc( $data->{'branchcode'} );
263 my $branch = GetBranchInfo($branchcode);
264 $branch = $branch->[0];
265 my $branchcats = $branch->{'categories'};
266 my @addcats;
267 my @removecats;
268 foreach my $bcat (@$branchcats) {
270 unless ( grep { /^$bcat$/ } @checkedcats ) {
271 push( @removecats, $bcat );
274 foreach my $ccat (@checkedcats) {
275 unless ( grep { /^$ccat$/ } @$branchcats ) {
276 push( @addcats, $ccat );
279 foreach my $cat (@addcats) {
280 my $sth =
281 $dbh->prepare(
282 "insert into branchrelations (branchcode, categorycode) values(?, ?)"
284 $sth->execute( $branchcode, $cat );
285 $sth->finish;
287 foreach my $cat (@removecats) {
288 my $sth =
289 $dbh->prepare(
290 "delete from branchrelations where branchcode=? and categorycode=?"
292 $sth->execute( $branchcode, $cat );
293 $sth->finish;
297 =head2 GetBranchCategory
299 $results = GetBranchCategory($categorycode);
301 C<$results> is an hashref
303 =cut
305 sub GetBranchCategory {
306 my ($catcode) = @_;
307 return unless $catcode;
309 my $dbh = C4::Context->dbh;
310 my $sth;
312 $sth = $dbh->prepare(q{
313 SELECT *
314 FROM branchcategories
315 WHERE categorycode = ?
317 $sth->execute( $catcode );
318 return $sth->fetchrow_hashref;
321 =head2 GetBranchCategories
323 my $categories = GetBranchCategories($categorytype,$show_in_pulldown,$selected_in_pulldown);
325 Returns a list ref of anon hashrefs with keys eq columns of branchcategories table,
326 i.e. categorydescription, categorytype, categoryname.
328 =cut
330 sub GetBranchCategories {
331 my ( $categorytype, $show_in_pulldown, $selected_in_pulldown ) = @_;
332 my $dbh = C4::Context->dbh();
334 my $query = "SELECT * FROM branchcategories ";
336 my ( @where, @bind );
337 if ( $categorytype ) {
338 push @where, " categorytype = ? ";
339 push @bind, $categorytype;
342 if ( defined( $show_in_pulldown ) ) {
343 push( @where, " show_in_pulldown = ? " );
344 push( @bind, $show_in_pulldown );
347 $query .= " WHERE " . join(" AND ", @where) if(@where);
348 $query .= " ORDER BY categorytype, categorycode";
349 my $sth=$dbh->prepare( $query);
350 $sth->execute(@bind);
352 my $branchcats = $sth->fetchall_arrayref({});
354 if ( $selected_in_pulldown ) {
355 foreach my $bc ( @$branchcats ) {
356 $bc->{selected} = 1 if $bc->{categorycode} eq $selected_in_pulldown;
360 return $branchcats;
363 =head2 GetCategoryTypes
365 $categorytypes = GetCategoryTypes;
366 returns a list of category types.
367 Currently these types are HARDCODED.
368 type: 'searchdomain' defines a group of agencies that the calling library may search in.
369 Other usage of agency categories falls under type: 'properties'.
370 to allow for other uses of categories.
371 The searchdomain bit may be better implemented as a separate module, but
372 the categories were already here, and minimally used.
373 =cut
375 #TODO manage category types. rename possibly to 'agency domains' ? as borrowergroups are called categories.
376 sub GetCategoryTypes {
377 return ( 'searchdomain','properties');
380 =head2 GetBranch
382 $branch = GetBranch( $query, $branches );
384 =cut
386 sub GetBranch {
387 my ( $query, $branches ) = @_; # get branch for this query from branches
388 my $branch = $query->param('branch');
389 my %cookie = $query->cookie('userenv');
390 ($branch) || ($branch = $cookie{'branchname'});
391 ( $branches->{$branch} ) || ( $branch = ( keys %$branches )[0] );
392 return $branch;
395 =head2 GetBranchDetail
397 $branch = &GetBranchDetail($branchcode);
399 Given the branch code, the function returns a
400 hashref for the corresponding row in the branches table.
402 =cut
404 sub GetBranchDetail {
405 my ($branchcode) = shift or return;
406 my $sth = C4::Context->dbh->prepare("SELECT * FROM branches WHERE branchcode = ?");
407 $sth->execute($branchcode);
408 return $sth->fetchrow_hashref();
411 =head2 GetBranchesInCategory
413 my $branches = GetBranchesInCategory($categorycode);
415 Returns a href: keys %$branches eq (branchcode,branchname) .
417 =cut
419 sub GetBranchesInCategory {
420 my ($categorycode) = @_;
421 my @branches;
422 my $dbh = C4::Context->dbh();
423 my $sth=$dbh->prepare( "SELECT b.branchcode FROM branchrelations r, branches b
424 where r.branchcode=b.branchcode and r.categorycode=?");
425 $sth->execute($categorycode);
426 while (my $branch = $sth->fetchrow) {
427 push @branches, $branch;
429 $sth->finish();
430 return( \@branches );
433 =head2 GetBranchInfo
435 $results = GetBranchInfo($branchcode);
437 returns C<$results>, a reference to an array of hashes containing branches.
438 if $branchcode, just this branch, with associated categories.
439 if ! $branchcode && $categorytype, all branches in the category.
440 =cut
442 sub GetBranchInfo {
443 my ($branchcode,$categorytype) = @_;
444 my $dbh = C4::Context->dbh;
445 my $sth;
448 if ($branchcode) {
449 $sth =
450 $dbh->prepare(
451 "Select * from branches where branchcode = ? order by branchcode");
452 $sth->execute($branchcode);
454 else {
455 $sth = $dbh->prepare("Select * from branches order by branchcode");
456 $sth->execute();
458 my @results;
459 while ( my $data = $sth->fetchrow_hashref ) {
460 my @bind = ($data->{'branchcode'});
461 my $query= "select r.categorycode from branchrelations r";
462 $query .= ", branchcategories c " if($categorytype);
463 $query .= " where branchcode=? ";
464 if($categorytype) {
465 $query .= " and c.categorytype=? and r.categorycode=c.categorycode";
466 push @bind, $categorytype;
468 my $nsth=$dbh->prepare($query);
469 $nsth->execute( @bind );
470 my @cats = ();
471 while ( my ($cat) = $nsth->fetchrow_array ) {
472 push( @cats, $cat );
474 $nsth->finish;
475 $data->{'categories'} = \@cats;
476 push( @results, $data );
478 $sth->finish;
479 return \@results;
482 =head2 DelBranch
484 &DelBranch($branchcode);
486 =cut
488 sub DelBranch {
489 my ($branchcode) = @_;
490 my $dbh = C4::Context->dbh;
491 my $sth = $dbh->prepare("delete from branches where branchcode = ?");
492 $sth->execute($branchcode);
493 $sth->finish;
496 =head2 ModBranchCategoryInfo
498 &ModBranchCategoryInfo($data);
499 sets the data from the editbranch form, and writes to the database...
501 =cut
503 sub ModBranchCategoryInfo {
504 my ($data) = @_;
505 my $dbh = C4::Context->dbh;
506 if ($data->{'add'}){
507 # we are doing an insert
508 my $sth = $dbh->prepare("INSERT INTO branchcategories (categorycode,categoryname,codedescription,categorytype,show_in_pulldown) VALUES (?,?,?,?,?)");
509 $sth->execute(uc( $data->{'categorycode'} ),$data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'},$data->{'show_in_pulldown'} );
510 $sth->finish();
512 else {
513 # modifying
514 my $sth = $dbh->prepare("UPDATE branchcategories SET categoryname=?,codedescription=?,categorytype=?,show_in_pulldown=? WHERE categorycode=?");
515 $sth->execute($data->{'categoryname'}, $data->{'codedescription'},$data->{'categorytype'},$data->{'show_in_pulldown'},uc( $data->{'categorycode'} ) );
516 $sth->finish();
520 =head2 CheckCategoryUnique
522 if (CheckCategoryUnique($categorycode)){
523 # do something
526 =cut
528 sub CheckCategoryUnique {
529 my $categorycode = shift;
530 my $dbh = C4::Context->dbh;
531 my $sth = $dbh->prepare("SELECT categorycode FROM branchcategories WHERE categorycode = ?");
532 $sth->execute(uc( $categorycode) );
533 if (my $data = $sth->fetchrow_hashref){
534 return 0;
536 else {
537 return 1;
542 =head2 DeleteBranchCategory
544 DeleteBranchCategory($categorycode);
546 =cut
548 sub DelBranchCategory {
549 my ($categorycode) = @_;
550 my $dbh = C4::Context->dbh;
551 my $sth = $dbh->prepare("delete from branchcategories where categorycode = ?");
552 $sth->execute($categorycode);
553 $sth->finish;
556 =head2 CheckBranchCategorycode
558 $number_rows_affected = CheckBranchCategorycode($categorycode);
560 =cut
562 sub CheckBranchCategorycode {
564 # check to see if the branchcode is being used in the database somewhere....
565 my ($categorycode) = @_;
566 my $dbh = C4::Context->dbh;
567 my $sth =
568 $dbh->prepare(
569 "select count(*) from branchrelations where categorycode=?");
570 $sth->execute($categorycode);
571 my ($total) = $sth->fetchrow_array;
572 return $total;
575 sub GetBranchesCount {
576 my $dbh = C4::Context->dbh();
577 my $query = "SELECT COUNT(*) AS branches_count FROM branches";
578 my $sth = $dbh->prepare( $query );
579 $sth->execute();
580 my $row = $sth->fetchrow_hashref();
581 return $row->{'branches_count'};
585 __END__
587 =head1 AUTHOR
589 Koha Development Team <http://koha-community.org/>
591 =cut