Bug 13799: Add missing license notices
[koha.git] / Koha / REST / V1.pm
1 package Koha::REST::V1;
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
13 #
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.
17
18 use Modern::Perl;
19 use Mojo::Base 'Mojolicious';
20
21 use C4::Auth qw( check_cookie_auth get_session );
22 use Koha::Borrowers;
23
24 sub startup {
25     my $self = shift;
26
27     my $route = $self->routes->under->to(
28         cb => sub {
29             my $c = shift;
30
31             my ($status, $sessionID) = check_cookie_auth($c->cookie('CGISESSID'));
32             if ($status eq "ok") {
33                 my $session = get_session($sessionID);
34                 my $user = Koha::Borrowers->find($session->param('number'));
35                 $c->stash('koha.user' => $user);
36             }
37
38             return 1;
39         }
40     );
41
42     # Force charset=utf8 in Content-Type header for JSON responses
43     $self->types->type(json => 'application/json; charset=utf8');
44
45     $self->plugin(Swagger2 => {
46         route => $route,
47         url => $self->home->rel_file("api/v1/swagger.json"),
48     });
49 }
50
51 1;