7bfb34fb6885c59aa92e582f7489122731957a97
[koha-ffzg.git] / debian / templates / plack.psgi
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it 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.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but 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.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 use Modern::Perl;
19
20 use Plack::Builder;
21 use Plack::App::CGIBin;
22 use Plack::App::Directory;
23 use Plack::App::URLMap;
24 use Plack::Request;
25
26 use Mojo::Server::PSGI;
27
28 # Pre-load libraries
29 use C4::Boolean;
30 use C4::Koha;
31 use C4::Languages;
32 use C4::Letters;
33 use C4::Members;
34 use C4::XSLT;
35 use Koha::Caches;
36 use Koha::Cache::Memory::Lite;
37 use Koha::Database;
38 use Koha::DateUtils;
39 use Koha::Logger;
40
41 use CGI qw(-utf8 ); # we will loose -utf8 under plack, otherwise
42 {
43     no warnings 'redefine';
44     my $old_new = \&CGI::new;
45     *CGI::new = sub {
46         my $q = $old_new->( @_ );
47         $CGI::PARAM_UTF8 = 1;
48         Koha::Caches->flush_L1_caches();
49         Koha::Cache::Memory::Lite->flush();
50         return $q;
51     };
52 }
53
54 my $home = $ENV{KOHA_HOME};
55 my $intranet = Plack::App::CGIBin->new(
56     root => $ENV{DEV_INSTALL}? $home: "$home/intranet/cgi-bin"
57 )->to_app;
58
59 my $opac = Plack::App::CGIBin->new(
60     root => $ENV{DEV_INSTALL}? "$home/opac": "$home/opac/cgi-bin/opac"
61 )->to_app;
62
63 my $apiv1  = builder {
64     my $server = Mojo::Server::PSGI->new;
65     $server->load_app("$home/api/v1/app.pl");
66     $server->to_psgi_app;
67 };
68
69 Koha::Logger->_init;
70
71 builder {
72     enable "ReverseProxy";
73     enable "Plack::Middleware::Static";
74
75     # + is required so Plack doesn't try to prefix Plack::Middleware::
76     enable "+Koha::Middleware::SetEnv";
77     enable "+Koha::Middleware::RealIP";
78
79     mount '/opac'          => builder {
80         enable 'Log4perl', category => 'plack-opac';
81         enable 'LogWarn';
82         $opac;
83     };
84     mount '/intranet'      => builder {
85         enable 'Log4perl', category => 'plack-intranet';
86         enable 'LogWarn';
87         $intranet;
88     };
89     mount '/api/v1/app.pl' => builder {
90         enable 'Log4perl', category => 'plack-api';
91         enable 'LogWarn';
92         $apiv1;
93     };
94 };