Bug 17006: Add /patrons/{patron_id}/password
[koha.git] / Koha / REST / V1 / Patrons / Password.pm
blobf8e14947d80b52ed97b4079d3cefdc33f53beabc
1 package Koha::REST::V1::Patrons::Password;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Controller';
22 use Koha::Patrons;
24 use Scalar::Util qw(blessed);
25 use Try::Tiny;
27 =head1 NAME
29 Koha::REST::V1::Patrons::Password
31 =head1 API
33 =head2 Methods
35 =head3 set
37 Controller method that sets a patron's password, permission driven
39 =cut
41 sub set {
43 my $c = shift->openapi->valid_input or return;
45 my $patron = Koha::Patrons->find( $c->validation->param('patron_id') );
46 my $body = $c->validation->param('body');
48 unless ($patron) {
49 return $c->render( status => 404, openapi => { error => "Patron not found." } );
52 my $password = $body->{password} // "";
53 my $password_2 = $body->{password_2} // "";
55 unless ( $password eq $password_2 ) {
56 return $c->render( status => 400, openapi => { error => "Passwords don't match" } );
59 return try {
61 ## Change password
62 $patron->set_password($password);
64 return $c->render( status => 200, openapi => "" );
66 catch {
67 unless ( blessed $_ && $_->can('rethrow') ) {
68 return $c->render( status => 500, openapi => { error => "$_" } );
71 # an exception was raised. return 400 with the stringified exception
72 return $c->render( status => 400, openapi => { error => "$_" } );