Bug 21535: Anonymize function in Patron should not scramble email addresses
[koha.git] / Koha / Template / Plugin / Biblio.pm
1 package Koha::Template::Plugin::Biblio;
2
3 # Copyright ByWater Solutions 2015
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 Template::Plugin;
23 use base qw( Template::Plugin );
24
25 use Koha::Holds;
26 use Koha::Biblios;
27 use Koha::Patrons;
28 use Koha::ArticleRequests;
29 use Koha::ArticleRequest::Status;
30
31 sub HoldsCount {
32     my ( $self, $biblionumber ) = @_;
33
34     my $holds = Koha::Holds->search( { biblionumber => $biblionumber } );
35
36     return $holds->count();
37 }
38
39 sub ArticleRequestsActiveCount {
40     my ( $self, $biblionumber ) = @_;
41
42     my $ar = Koha::ArticleRequests->search(
43         {
44             biblionumber => $biblionumber,
45             status       => [
46                 -or => [
47                     status => Koha::ArticleRequest::Status::Pending,
48                     status => Koha::ArticleRequest::Status::Processing
49                 ]
50             ]
51         }
52     );
53
54     return $ar->count();
55 }
56
57 sub CanArticleRequest {
58     my ( $self, $biblionumber, $borrowernumber ) = @_;
59
60     my $biblio = Koha::Biblios->find( $biblionumber );
61     my $borrower = Koha::Patrons->find( $borrowernumber );
62
63     return $biblio ? $biblio->can_article_request( $borrower ) : 0;
64 }
65
66 1;