Bug 4461: Extend problem_reports.problempage to TEXT
[koha.git] / Koha / REST / V1.pm
blob0b14b97b952c7081663d09f38be735e678115362
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' );
65 my $secret_passphrase = C4::Context->config('api_secret_passphrase');
66 if ($secret_passphrase) {
67 $self->secrets([$secret_passphrase]);
70 my $validator = JSON::Validator::OpenAPI::Mojolicious->new;
72 push @{$self->routes->namespaces}, 'Koha::Plugin';
74 # Try to load and merge all schemas first and validate the result just once.
75 my $spec;
76 try {
77 $spec = $validator->bundle(
79 replace => 1,
80 schema => $self->home->rel_file("api/v1/swagger/swagger.json")
84 $self->plugin(
85 'Koha::REST::Plugin::PluginRoutes' => {
86 spec => $spec,
87 validator => undef
91 $self->plugin(
92 OpenAPI => {
93 spec => $spec,
94 route => $self->routes->under('/api/v1')->to('Auth#under'),
95 allow_invalid_ref =>
96 1, # required by our spec because $ref directly under
97 # Paths-, Parameters-, Definitions- & Info-object
98 # is not allowed by the OpenAPI specification.
102 catch {
103 # Validation of the complete spec failed. Resort to validation one-by-one
104 # to catch bad ones.
105 $validator->load_and_validate_schema(
106 $self->home->rel_file("api/v1/swagger/swagger.json"),
108 allow_invalid_ref => 1,
112 $spec = $validator->schema->data;
113 $self->plugin(
114 'Koha::REST::Plugin::PluginRoutes' => {
115 spec => $spec,
116 validator => $validator
120 $self->plugin(
121 OpenAPI => {
122 spec => $spec,
123 route => $self->routes->under('/api/v1')->to('Auth#under'),
124 allow_invalid_ref =>
125 1, # required by our spec because $ref directly under
126 # Paths-, Parameters-, Definitions- & Info-object
127 # is not allowed by the OpenAPI specification.
132 $self->plugin( 'Koha::REST::Plugin::Pagination' );
133 $self->plugin( 'Koha::REST::Plugin::Query' );
134 $self->plugin( 'Koha::REST::Plugin::Objects' );