Bug 32030: ERM - Agreement documents (FIXED)
[koha-ffzg.git] / Koha / REST / V1 / ERM / Documents.pm
1 package Koha::REST::V1::ERM::Documents;
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::ERM::Agreement::Documents;
23
24 use Scalar::Util qw( blessed );
25 use Try::Tiny qw( catch try );
26
27 =head1 API
28
29 =head2 Methods
30
31 =head3 get
32
33 Controller function that handles retrieving a single Koha::ERM::Agreement object
34
35 =cut
36
37 sub get {
38     my $c = shift->openapi->valid_input or return;
39
40     return try {
41         my $agreement_id = $c->validation->param('agreement_id');
42         my $document_id = $c->validation->param('document_id');
43
44         # Do not use $c->objects->find here, we need the file_content
45         my $document = Koha::ERM::Agreement::Documents->find($document_id);
46
47         if ( !$document || $document->agreement_id != $agreement_id) {
48             return $c->render(
49                 status  => 404,
50                 openapi => { error => "Document not found" }
51             );
52         }
53
54         $c->render_file('data' => $document->file_content, 'filename' => $document->file_name);
55     }
56     catch {
57         $c->unhandled_exception($_);
58     };
59 }
60
61 1;