c06ff4b91393f6a80dcab81c1bb1ca07cb719c2f
[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->get;
70
71 builder {
72     enable "ReverseProxy";
73     enable "Plack::Middleware::Static";
74     enable "Log4perl", category => "plack";
75     enable "LogWarn";
76
77     # + is required so Plack doesn't try to prefix Plack::Middleware::
78     enable "+Koha::Middleware::SetEnv";
79     enable "+Koha::Middleware::RealIP";
80
81     mount '/opac'          => $opac;
82     mount '/intranet'      => $intranet;
83     mount '/api/v1/app.pl' => $apiv1;
84
85 };