Bug 27947: Add cancellation reason to article request
[koha.git] / Koha / REST / V1 / ArticleRequests.pm
1 package Koha::REST::V1::ArticleRequests;
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 Mojo::Base 'Mojolicious::Controller';
21
22 use Koha::Database;
23 use Koha::ArticleRequests;
24
25 use Scalar::Util qw( blessed );
26 use Try::Tiny qw( catch try );
27
28 =head1 NAME
29
30 Koha::REST::V1::ArticleRequests
31
32 =head1 API
33
34 =head2 Methods
35
36 =head3 cancel
37
38 Controller function that handles cancelling a Koha::ArticleRequest object
39
40 =cut
41
42 sub cancel {
43     my $c = shift->openapi->valid_input or return;
44
45     my $ar = Koha::ArticleRequests->find( $c->validation->param('ar_id') );
46
47     unless ( $ar ) {
48         return $c->render(
49             status  => 404,
50             openapi => { error => "Article request not found" }
51         );
52     }
53
54     my $reason = $c->validation->param('cancellation_reason');
55     my $notes = $c->validation->param('notes');
56
57     return try {
58
59         $ar->cancel($reason, $notes);
60         return $c->render(
61             status  => 204,
62             openapi => q{}
63         );
64     } catch {
65         if ( blessed $_ && $_->isa('Koha::Exceptions::ArticleRequests::FailedCancel') ) {
66             return $c->render(
67                 status  => 403,
68                 openapi => { error => "Article request cannot be canceled" }
69             );
70         }
71
72         $c->unhandled_exception($_);
73     };
74 }
75
76 1;