Bug 32482: (follow-up) Add markup comments
[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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22
23 use C4::Context;
24
25 use Koha::Biblios;
26 use Koha::Database;
27 use Koha::Item::Transfer::Limits;
28 use Koha::Items;
29 use Koha::Library;
30 use Koha::Patrons;
31
32 use base qw(Koha::Objects);
33
34 =head1 NAME
35
36 Koha::Libraries - Koha Library Object set class
37
38 =head1 API
39
40 =head2 Class methods
41
42 =head3 search_filtered
43
44 =cut
45
46 sub search_filtered {
47     my ( $self, $params, $attributes ) = @_;
48
49     my @branchcodes;
50     my $userenv = C4::Context->userenv;
51     if ( $userenv and $userenv->{number} ) {
52         my $only_from_group = $params->{only_from_group};
53         if ( $only_from_group ) {
54             my $logged_in_user = Koha::Patrons->find( $userenv->{number} );
55             my @branchcodes = $logged_in_user->libraries_where_can_see_patrons;
56             $params->{branchcode} = { -in => \@branchcodes } if @branchcodes;
57         } else {
58             if ( C4::Context::only_my_library ) {
59                 $params->{branchcode} = C4::Context->userenv->{branch};
60             }
61         }
62     }
63     delete $params->{only_from_group};
64     return $self->SUPER::search( $params, $attributes );
65 }
66
67 =head3 type
68
69 =cut
70
71 sub _type {
72     return 'Branch';
73 }
74
75 sub object_class {
76     return 'Koha::Library';
77 }
78
79 1;