Bug 28489: Modify sessions.a_session from longtext to longblob
[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 use Carp;
23
24 use C4::Context;
25
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;
32
33 use base qw(Koha::Objects);
34
35 =head1 NAME
36
37 Koha::Libraries - Koha Library Object set class
38
39 =head1 API
40
41 =head2 Class methods
42
43 =head3 search_filtered
44
45 =cut
46
47 sub search_filtered {
48     my ( $self, $params, $attributes ) = @_;
49
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};
61             }
62         }
63     }
64     delete $params->{only_from_group};
65     return $self->SUPER::search( $params, $attributes );
66 }
67
68 =head3 type
69
70 =cut
71
72 sub _type {
73     return 'Branch';
74 }
75
76 sub object_class {
77     return 'Koha::Library';
78 }
79
80 1;