Bug 17558: Fix adding manager id to patron messages in store method
[koha.git] / Koha / Patron / Modification.pm
1 package Koha::Patron::Modification;
2
3 # Copyright ByWater Solutions 2014
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use Carp;
23
24 use Koha::Database;
25
26 use Koha::Patron::Modifications;
27 use Koha::Exceptions::Patron::Modification;
28
29 use base qw(Koha::Object);
30
31 =head1 NAME
32
33 Koha::Patron::Modification - Class represents a request to modify or create a patron
34
35 =head2 Class Methods
36
37 =cut
38
39 =head2 store
40
41 =cut
42
43 sub store {
44     my ($self) = @_;
45
46     if ( $self->verification_token ) {
47         if ( Koha::Patron::Modifications->search( { verification_token => $self->verification_token } )->count() ) {
48             Koha::Exceptions::Patron::Modification::DuplicateVerificationToken->throw(
49                 "Duplicate verification token " . $self->verification_token
50             );
51         }
52     }
53
54     return $self->SUPER::store();
55 }
56
57 =head2 approve
58
59 $m->approve();
60
61 Commits the pending modifications to the borrower record and removes
62 them from the modifications table.
63
64 =cut
65
66 sub approve {
67     my ($self) = @_;
68
69     my $data = $self->unblessed();
70
71     delete $data->{timestamp};
72     delete $data->{verification_token};
73
74     foreach my $key ( keys %$data ) {
75         delete $data->{$key} unless ( defined( $data->{$key} ) );
76     }
77
78     my $patron = Koha::Patrons->find( $self->borrowernumber );
79
80     return unless $patron;
81
82     $patron->set($data);
83
84     if ( $patron->store() ) {
85         return $self->delete();
86     }
87 }
88
89 =head3 type
90
91 =cut
92
93 sub _type {
94     return 'BorrowerModification';
95 }
96
97 =head1 AUTHOR
98
99 Kyle M Hall <kyle@bywatersolutions.com>
100
101 =cut
102
103 1;