Bug 27796: (QA follow-up) Missing filters
[koha.git] / Koha / Patron / Relationship.pm
1 package Koha::Patron::Relationship;
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19
20 use Carp;
21 use List::MoreUtils qw( any );
22 use Try::Tiny;
23
24 use Koha::Database;
25 use Koha::Exceptions::Patron::Relationship;
26
27 use base qw(Koha::Object);
28
29 =head1 NAME
30
31 Koha::Patron::Relationship - A class to represent relationships between patrons
32
33 Patrons in Koha may be guarantors or guarantees. This class models that relationship
34 and provides a way to access those relationships.
35
36 =head1 API
37
38 =head2 Class methods
39
40 =cut
41
42 =head3 store
43
44 Overloaded method that makes some checks before storing on the DB
45
46 =cut
47
48 sub store {
49     my ( $self ) = @_;
50
51     my @valid_relationships = split /\|/, C4::Context->preference('borrowerRelationship'), -1;
52     @valid_relationships = ('') unless @valid_relationships;
53
54     Koha::Exceptions::Patron::Relationship::InvalidRelationship->throw(
55         no_relationship => 1 )
56         unless defined $self->relationship;
57
58     Koha::Exceptions::Patron::Relationship::InvalidRelationship->throw(
59         relationship => $self->relationship )
60         unless any { $_ eq $self->relationship } @valid_relationships;
61
62     return try {
63         $self->SUPER::store;
64     }
65     catch {
66         if ( ref($_) eq 'Koha::Exceptions::Object::DuplicateID' ) {
67             Koha::Exceptions::Patron::Relationship::DuplicateRelationship->throw(
68                 guarantee_id => $self->guarantee_id,
69                 guarantor_id => $self->guarantor_id
70             );
71         }
72     };
73 }
74
75 =head3 guarantor
76
77 Returns the Koha::Patron object for the guarantor, if there is one
78
79 =cut
80
81 sub guarantor {
82     my ( $self ) = @_;
83
84     return unless $self->guarantor_id;
85
86     return Koha::Patrons->find( $self->guarantor_id );
87 }
88
89 =head3 guarantee
90
91 Returns the Koha::Patron object for the guarantee
92
93 =cut
94
95 sub guarantee {
96     my ( $self ) = @_;
97
98     return Koha::Patrons->find( $self->guarantee_id );
99 }
100
101 =head3 type
102
103 =cut
104
105 sub _type {
106     return 'BorrowerRelationship';
107 }
108
109 1;