Bug 25504: (QA follow-up) Remove unused include
[koha.git] / Koha / REST / V1.pm
blob6f17c4cea4b7b9d02117203cea81630dc17d6f2a
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 Koha::Logger;
25 use JSON::Validator::OpenAPI::Mojolicious;
26 use Try::Tiny;
28 =head1 NAME
30 Koha::REST::V1 - Main v.1 REST api class
32 =head1 API
34 =head2 Class Methods
36 =head3 startup
38 Overloaded Mojolicious->startup method. It is called at application startup.
40 =cut
42 sub startup {
43 my $self = shift;
45 $self->hook(
46 before_dispatch => sub {
47 my $c = shift;
49 # Remove /api/v1/app.pl/ from the path
50 $c->req->url->base->path('/');
52 # Handle CORS
53 $c->res->headers->header( 'Access-Control-Allow-Origin' =>
54 C4::Context->preference('AccessControlAllowOrigin') )
55 if C4::Context->preference('AccessControlAllowOrigin');
59 # Force charset=utf8 in Content-Type header for JSON responses
60 $self->types->type( json => 'application/json; charset=utf8' );
61 # MARC-related types
62 $self->types->type( marcxml => 'application/marcxml+xml' );
63 $self->types->type( mij => 'application/marc-in-json' );
64 $self->types->type( marc => 'application/marc' );
66 my $secret_passphrase = C4::Context->config('api_secret_passphrase');
67 if ($secret_passphrase) {
68 $self->secrets([$secret_passphrase]);
71 my $validator = JSON::Validator::OpenAPI::Mojolicious->new;
73 push @{$self->routes->namespaces}, 'Koha::Plugin';
75 # Try to load and merge all schemas first and validate the result just once.
76 my $spec;
77 my $swagger_schema = $self->home->rel_file("api/swagger-v2-schema.json");
78 try {
79 $spec = $validator->bundle(
81 replace => 1,
82 schema => $self->home->rel_file("api/v1/swagger/swagger.json")
86 $self->plugin(
87 'Koha::REST::Plugin::PluginRoutes' => {
88 spec => $spec,
89 validator => undef
91 ) unless C4::Context->needs_install; # load only if Koha is installed
93 $self->plugin(
94 OpenAPI => {
95 spec => $spec,
96 route => $self->routes->under('/api/v1')->to('Auth#under'),
97 schema => ( $swagger_schema ) ? $swagger_schema : undef,
98 allow_invalid_ref =>
99 1, # required by our spec because $ref directly under
100 # Paths-, Parameters-, Definitions- & Info-object
101 # is not allowed by the OpenAPI specification.
105 catch {
106 # Validation of the complete spec failed. Resort to validation one-by-one
107 # to catch bad ones.
109 # JSON::Validator uses confess, so trim call stack from the message.
110 my $logger = Koha::Logger->get({ interface => 'api' });
111 $logger->error("Warning: Could not load REST API spec bundle: " . $_);
113 try {
114 $validator->load_and_validate_schema(
115 $self->home->rel_file("api/v1/swagger/swagger.json"),
117 allow_invalid_ref => 1,
118 schema => ( $swagger_schema ) ? $swagger_schema : undef,
122 $spec = $validator->schema->data;
123 $self->plugin(
124 'Koha::REST::Plugin::PluginRoutes' => {
125 spec => $spec,
126 validator => $validator
128 ) unless C4::Context->needs_install; # load only if Koha is installed
130 $self->plugin(
131 OpenAPI => {
132 spec => $spec,
133 route => $self->routes->under('/api/v1')->to('Auth#under'),
134 allow_invalid_ref =>
135 1, # required by our spec because $ref directly under
136 # Paths-, Parameters-, Definitions- & Info-object
137 # is not allowed by the OpenAPI specification.
141 catch {
142 # JSON::Validator uses confess, so trim call stack from the message.
143 $logger->error("Warning: Could not load REST API spec bundle: " . $_);
147 $self->plugin( 'Koha::REST::Plugin::Pagination' );
148 $self->plugin( 'Koha::REST::Plugin::Query' );
149 $self->plugin( 'Koha::REST::Plugin::Objects' );
150 $self->plugin( 'Koha::REST::Plugin::Exceptions' );