Bug 24031: Add safety checks in Koha::Plugins::call
[koha.git] / Koha / Libraries.pm
blob8a45cc26addbe171fef8fa8b97a43d5432f78486
1 package Koha::Libraries;
3 # Copyright 2015 Koha Development team
5 # This file is part of Koha.
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.
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.
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>.
20 use Modern::Perl;
22 use Carp;
24 use C4::Context;
26 use Koha::Biblios;
27 use Koha::Database;
28 use Koha::Item::Transfer::Limits;
29 use Koha::Items;
30 use Koha::Library;
31 use Koha::Patrons;
33 use base qw(Koha::Objects);
35 =head1 NAME
37 Koha::Libraries - Koha Library Object set class
39 =head1 API
41 =head2 Class methods
43 =head3 search_filtered
45 =cut
47 sub search_filtered {
48 my ( $self, $params, $attributes ) = @_;
50 my @branchcodes;
51 my $userenv = C4::Context->userenv;
52 if ( $userenv and $userenv->{number} ) {
53 my $only_from_group = $params->{only_from_group};
54 if ( $only_from_group ) {
55 my $logged_in_user = Koha::Patrons->find( $userenv->{number} );
56 my @branchcodes = $logged_in_user->libraries_where_can_see_patrons;
57 $params->{branchcode} = { -in => \@branchcodes } if @branchcodes;
58 } else {
59 if ( C4::Context::only_my_library ) {
60 $params->{branchcode} = C4::Context->userenv->{branch};
64 delete $params->{only_from_group};
65 return $self->SUPER::search( $params, $attributes );
68 =head3 type
70 =cut
72 sub _type {
73 return 'Branch';
76 sub object_class {
77 return 'Koha::Library';