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>.
20 use Mojo
::Base
'Mojolicious';
25 use JSON
::Validator
::OpenAPI
::Mojolicious
;
30 Koha::REST::V1 - Main v.1 REST api class
38 Overloaded Mojolicious->startup method. It is called at application startup.
46 before_dispatch
=> sub {
49 # Remove /api/v1/app.pl/ from the path
50 $c->req->url->base->path('/');
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' );
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.
77 my $swagger_schema = $self->home->rel_file("api/swagger-v2-schema.json");
79 $spec = $validator->bundle(
82 schema
=> $self->home->rel_file("api/v1/swagger/swagger.json")
87 'Koha::REST::Plugin::PluginRoutes' => {
91 ) unless C4
::Context
->needs_install; # load only if Koha is installed
96 route
=> $self->routes->under('/api/v1')->to('Auth#under'),
97 schema
=> ( $swagger_schema ) ?
$swagger_schema : undef,
99 1, # required by our spec because $ref directly under
100 # Paths-, Parameters-, Definitions- & Info-object
101 # is not allowed by the OpenAPI specification.
106 # Validation of the complete spec failed. Resort to validation one-by-one
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: " . $_);
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;
124 'Koha::REST::Plugin::PluginRoutes' => {
126 validator
=> $validator
128 ) unless C4
::Context
->needs_install; # load only if Koha is installed
133 route
=> $self->routes->under('/api/v1')->to('Auth#under'),
135 1, # required by our spec because $ref directly under
136 # Paths-, Parameters-, Definitions- & Info-object
137 # is not allowed by the OpenAPI specification.
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' );