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