Bug 18403: Only display libraries from group in dropdown lists
[koha.git] / Koha / Libraries.pm
1 package Koha::Libraries;
2
3 # Copyright 2015 Koha Development team
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use Carp;
23
24 use C4::Context;
25
26 use Koha::Database;
27 use Koha::Library;
28
29 use base qw(Koha::Objects);
30
31 =head1 NAME
32
33 Koha::Libraries - Koha Library Object set class
34
35 =head1 API
36
37 =head2 Class Methods
38
39 =cut
40
41 =head3 search_filtered
42
43 =cut
44
45 sub search_filtered {
46     my ( $self, $params, $attributes ) = @_;
47
48     my @branchcodes;
49     if ( my $userenv = C4::Context->userenv ) {
50         if ( C4::Context::only_my_library ) {
51             push @branchcodes, $userenv->{branch};
52         }
53         else {
54             my $logged_in_user = Koha::Patrons->find( $userenv->{number} );
55             unless (
56                 $logged_in_user->can(
57                     { borrowers => 'view_borrower_infos_from_any_libraries' }
58                 )
59               )
60             {
61                 if ( my $library_groups = $logged_in_user->library->library_groups )
62                 {
63                     while ( my $library_group = $library_groups->next ) {
64                         push @branchcodes,
65                           $library_group->parent->children->get_column('branchcode');
66                     }
67                 }
68                 else {
69                     push @branchcodes, $userenv->{branch};
70                 }
71             }
72         }
73     }
74
75     $params->{branchcode} = { -in => \@branchcodes } if @branchcodes;
76     delete $params->{only_from_group};
77     return $self->SUPER::search( $params, $attributes );
78 }
79
80 =head3 type
81
82 =cut
83
84 sub _type {
85     return 'Branch';
86 }
87
88 sub object_class {
89     return 'Koha::Library';
90 }
91
92 1;