Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / Koha / Virtualshelves.pm
blob3dde3c35da4ff15d46029892cfd0e3b37cf9e842
1 package Koha::Virtualshelves;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Carp;
22 use Koha::Database;
24 use Koha::Virtualshelf;
26 use base qw(Koha::Objects);
28 =head1 NAME
30 Koha::Virtualshelf - Koha Virtualshelf Object class
32 =head1 API
34 =head2 Class Methods
36 =cut
38 =head3 type
40 =cut
42 sub get_private_shelves {
43 my ( $self, $params ) = @_;
44 my $page = $params->{page};
45 my $rows = $params->{rows};
46 my $borrowernumber = $params->{borrowernumber} || 0;
48 $self->search(
50 category => 1,
51 -or => {
52 'virtualshelfshares.borrowernumber' => $borrowernumber,
53 'me.owner' => $borrowernumber,
57 join => [ 'virtualshelfshares' ],
58 distinct => 'shelfnumber',
59 order_by => 'shelfname',
60 ( ( $page and $rows ) ? ( page => $page, rows => $rows ) : () ),
66 sub get_public_shelves {
67 my ( $self, $params ) = @_;
68 my $page = $params->{page};
69 my $rows = $params->{rows};
71 $self->search(
73 category => 2,
76 distinct => 'shelfnumber',
77 order_by => 'shelfname',
78 ( ( $page and $rows ) ? ( page => $page, rows => $rows ) : () ),
83 sub get_some_shelves {
84 my ( $self, $params ) = @_;
85 my $borrowernumber = $params->{borrowernumber} || 0;
86 my $category = $params->{category} || 1;
87 my $add_allowed = $params->{add_allowed};
89 my @conditions;
90 if ( $add_allowed ) {
91 push @conditions, {
92 -or =>
95 "me.owner" => $borrowernumber,
96 "me.allow_change_from_owner" => 1,
98 "me.allow_change_from_others" => 1,
102 if ( $category == 1 ) {
103 push @conditions, {
104 -or =>
106 "virtualshelfshares.borrowernumber" => $borrowernumber,
107 "me.owner" => $borrowernumber,
112 $self->search(
114 category => $category,
115 ( @conditions ? ( -and => \@conditions ) : () ),
118 join => [ 'virtualshelfshares' ],
119 distinct => 'shelfnumber',
120 order_by => { -desc => 'lastmodified' },
125 sub get_shelves_containing_record {
126 my ( $self, $params ) = @_;
127 my $borrowernumber = $params->{borrowernumber};
128 my $biblionumber = $params->{biblionumber};
130 my @conditions = ( 'virtualshelfcontents.biblionumber' => $biblionumber );
131 if ($borrowernumber) {
132 push @conditions,
134 -or => [
136 category => 1,
137 -or => {
138 'me.owner' => $borrowernumber,
139 -or => {
140 'virtualshelfshares.borrowernumber' => $borrowernumber,
144 { category => 2 },
147 } else {
148 push @conditions, { category => 2 };
151 return Koha::Virtualshelves->search(
153 -and => \@conditions
156 join => [ 'virtualshelfcontents', 'virtualshelfshares' ],
157 distinct => 'shelfnumber',
158 order_by => { -asc => 'shelfname' },
163 sub _type {
164 return 'Virtualshelve';
167 sub object_class {
168 return 'Koha::Virtualshelf';