Revert "Bug 25828: Update cpanfile for 20.05 release cycle"
[koha.git] / Koha / REST / V1.pm
blobaf6bc886fa7dca99f5cbbbd8eabbdfec3d6ca0af
1 package Koha::REST::V1;
3 # This file is part of Koha.
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.
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.
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>.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious';
22 use C4::Context;
23 use JSON::Validator::OpenAPI::Mojolicious;
24 use Try::Tiny;
26 =head1 NAME
28 Koha::REST::V1 - Main v.1 REST api class
30 =head1 API
32 =head2 Class Methods
34 =head3 startup
36 Overloaded Mojolicious->startup method. It is called at application startup.
38 =cut
40 sub startup {
41 my $self = shift;
43 $self->hook(
44 before_dispatch => sub {
45 my $c = shift;
47 # Remove /api/v1/app.pl/ from the path
48 $c->req->url->base->path('/');
50 # Handle CORS
51 $c->res->headers->header( 'Access-Control-Allow-Origin' =>
52 C4::Context->preference('AccessControlAllowOrigin') )
53 if C4::Context->preference('AccessControlAllowOrigin');
57 # Force charset=utf8 in Content-Type header for JSON responses
58 $self->types->type( json => 'application/json; charset=utf8' );
59 # MARC-related types
60 $self->types->type( marcxml => 'application/marcxml+xml' );
61 $self->types->type( mij => 'application/marc-in-json' );
62 $self->types->type( marc => 'application/marc' );
64 my $secret_passphrase = C4::Context->config('api_secret_passphrase');
65 if ($secret_passphrase) {
66 $self->secrets([$secret_passphrase]);
69 my $validator = JSON::Validator::OpenAPI::Mojolicious->new;
71 push @{$self->routes->namespaces}, 'Koha::Plugin';
73 # Try to load and merge all schemas first and validate the result just once.
74 my $spec;
75 try {
76 $spec = $validator->bundle(
78 replace => 1,
79 schema => $self->home->rel_file("api/v1/swagger/swagger.json")
83 $self->plugin(
84 'Koha::REST::Plugin::PluginRoutes' => {
85 spec => $spec,
86 validator => undef
88 ) unless C4::Context->needs_install; # load only if Koha is installed
90 $self->plugin(
91 OpenAPI => {
92 spec => $spec,
93 route => $self->routes->under('/api/v1')->to('Auth#under'),
94 allow_invalid_ref =>
95 1, # required by our spec because $ref directly under
96 # Paths-, Parameters-, Definitions- & Info-object
97 # is not allowed by the OpenAPI specification.
101 catch {
102 # Validation of the complete spec failed. Resort to validation one-by-one
103 # to catch bad ones.
104 $validator->load_and_validate_schema(
105 $self->home->rel_file("api/v1/swagger/swagger.json"),
107 allow_invalid_ref => 1,
111 $spec = $validator->schema->data;
112 $self->plugin(
113 'Koha::REST::Plugin::PluginRoutes' => {
114 spec => $spec,
115 validator => $validator
117 ) unless C4::Context->needs_install; # load only if Koha is installed
119 $self->plugin(
120 OpenAPI => {
121 spec => $spec,
122 route => $self->routes->under('/api/v1')->to('Auth#under'),
123 allow_invalid_ref =>
124 1, # required by our spec because $ref directly under
125 # Paths-, Parameters-, Definitions- & Info-object
126 # is not allowed by the OpenAPI specification.
131 $self->plugin( 'Koha::REST::Plugin::Pagination' );
132 $self->plugin( 'Koha::REST::Plugin::Query' );
133 $self->plugin( 'Koha::REST::Plugin::Objects' );
134 $self->plugin( 'Koha::REST::Plugin::Exceptions' );