63f124fdae616a0d1bc00f8bb8ce3ebdbc3e5b86
[srvgit] / 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::Koha::Patron::Modification::DuplicateVerificationToken->throw;
49         }
50     }
51
52     return $self->SUPER::store();
53 }
54
55 =head2 approve
56
57 $m->approve();
58
59 Commits the pending modifications to the borrower record and removes
60 them from the modifications table.
61
62 =cut
63
64 sub approve {
65     my ($self) = @_;
66
67     my $data = $self->unblessed();
68
69     delete $data->{timestamp};
70     delete $data->{verification_token};
71
72     foreach my $key ( keys %$data ) {
73         delete $data->{$key} unless ( defined( $data->{$key} ) );
74     }
75
76     my $patron = Koha::Patrons->find( $self->borrowernumber );
77
78     return unless $patron;
79
80     $patron->set($data);
81
82     if ( $patron->store() ) {
83         return $self->delete();
84     }
85 }
86
87 =head3 type
88
89 =cut
90
91 sub _type {
92     return 'BorrowerModification';
93 }
94
95 =head1 AUTHOR
96
97 Kyle M Hall <kyle@bywatersolutions.com>
98
99 =cut
100
101 1;