Bug 24545: Fix license statements
[srvgit] / Koha / REST / V1 / Static.pm
1 package Koha::REST::V1::Static;
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 Try::Tiny;
23
24 =head1 API
25
26 =head2 Class methods
27
28 =head3 get
29
30 Mehtod that gets file contents
31
32 =cut
33
34 sub get {
35     my $self = shift;
36     my $c = $self->openapi->valid_input or return;
37
38     if (   C4::Context->preference('UseKohaPlugins')
39         && C4::Context->config("enable_plugins") )
40     {
41         my $path = $c->req->url->path->leading_slash(1);
42
43         return $c->render(status => 400, openapi => { error => 'Endpoint inteded for plugin static files' }) unless "$path" =~ /^\/api\/v1\/contrib/;
44
45         my $namespace = $path->[3];
46
47         my $checkpath = '/api/v1/contrib/'.$namespace.'/static';
48
49         return $c->render(status => 400, openapi => { error => 'Endpoint inteded for plugin static files' }) unless "$path" =~ /\Q$checkpath/;
50
51         my @plugins = Koha::Plugins->new()->GetPlugins(
52             {
53                 method => 'api_namespace',
54             }
55         );
56
57         @plugins = grep { $_->api_namespace eq $namespace} @plugins;
58
59         return $c->render({ status => 404, openapi => { error => 'File not found' } }) unless scalar(@plugins) > 0;
60         return $c->render({ status => 500, openapi => { error => 'Namespace not unique' } }) unless scalar(@plugins) == 1;
61
62         my $plugin = $plugins[0];
63
64         my $basepath = $plugin->bundle_path;
65
66         my $relpath = join ('/', splice (@$path, 5));
67
68         return try {
69             my $asset = Mojo::Asset::File->new(path => join('/', $basepath, $relpath));
70             return $c->render({ status => 404, openapi => { error => 'File not found' } }) unless $asset->is_file;
71             return $c->reply->asset($asset);
72         }
73         catch {
74             return $c->render({ status => 404, openapi => { error => 'File not found' } });
75         }
76
77     } else {
78         $c->render({ status => 500, openapi => { error => 'Plugins are not enabled' } })
79     }
80
81
82 }
83
84 1;