Bug 15743: Allow plugins to embed Perl modules
[koha.git] / Koha / REST / V1.pm
blob62f76932b7d28f3ae385196e7840178d879e67dd
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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 use Modern::Perl;
19 use Mojo::Base 'Mojolicious';
21 use C4::Auth qw( check_cookie_auth get_session );
22 use C4::Context;
23 use Koha::Borrowers;
25 sub startup {
26 my $self = shift;
28 my $route = $self->routes->under->to(
29 cb => sub {
30 my $c = shift;
32 my ($status, $sessionID) = check_cookie_auth($c->cookie('CGISESSID'));
33 if ($status eq "ok") {
34 my $session = get_session($sessionID);
35 my $user = Koha::Borrowers->find($session->param('number'));
36 $c->stash('koha.user' => $user);
39 return 1;
43 # Force charset=utf8 in Content-Type header for JSON responses
44 $self->types->type(json => 'application/json; charset=utf8');
46 my $secret_passphrase = C4::Context->config('api_secret_passphrase');
47 if ($secret_passphrase) {
48 $self->secrets([$secret_passphrase]);
51 $self->plugin(Swagger2 => {
52 route => $route,
53 url => $self->home->rel_file("api/v1/swagger.json"),
54 });