Update for the new Gruntmaster::Data
[plack-app-gruntmaster.git] / app.psgi
CommitLineData
c492afe8 1#!/usr/bin/perl
7dc32473 2use v5.14;
c492afe8 3use warnings;
7dc32473 4
5a879d9a 5use Gruntmaster::Data;
7dc32473 6use Plack::App::Gruntmaster;
c85bf4a6 7use Plack::Builder;
3b69df7a 8use Plack::Util;
68d5c3ff
MG
9use Log::Log4perl;
10
031ffaf5
MG
11sub CONTENT_SECURITY_POLICY () {
12 my $csp = <<CSP;
13default-src 'none'
14connect-src 'self'
15form-action 'self'
16frame-ancestors 'none'
17img-src 'self'
18referrer origin-when-cross-origin
19script-src 'self'
20style-src 'self'
21CSP
22 chomp $csp;
23 $csp =~ s/\n/; /gr;
24}
c85bf4a6 25
1f64ef28 26my $dbinit;
5a879d9a 27
be1da3f9
MG
28sub add_database {
29 my $app = $_[0];
30 sub {
1f64ef28
MG
31 Gruntmaster::Data::init $ENV{GRUNTMASTER_DSN} // 'dbi:Pg:' unless $dbinit;
32 $dbinit = 1;
33 $app->(@_)
be1da3f9
MG
34 }
35}
36
3b69df7a
MG
37sub add_headers {
38 my $app = $_[0];
39 sub {
40 my $resp = $app->($_[0]);
41 my $hdrs = Plack::Util::headers($resp->[1]);
42 $hdrs->set('Content-Security-Policy', CONTENT_SECURITY_POLICY);
43 $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO} =~ qr,^/static/,;
44 $resp->[1] = $hdrs->headers;
45 $resp;
46 }
47}
48
28b3c465 49Log::Log4perl->init_once('log.conf');
58a0ba09 50$ENV{DBIC_NULLABLE_KEY_NOWARN} = 1;
68d5c3ff 51
7dc32473 52builder {
28aeef34 53 enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }};
287424cb 54 enable 'ContentLength';
3b69df7a 55 enable \&add_headers;
7e3d8247 56 enable 'Static', path => qr,^/static/,;
68d5c3ff 57 enable 'Log4perl', category => 'plack';
be1da3f9 58 enable \&add_database;
8d725691
MG
59 enable '+Plack::App::Gruntmaster::Auth',
60 dbi_connect => [$ENV{GRUNTMASTER_DSN} // 'dbi:Pg:', '', ''],
61 realm => 'Gruntmaster 6000',
62 mail_from => $ENV{GRUNTMASTER_RESET_FROM};
594d53ba 63 Plack::App::Gruntmaster->run_if_script
7dc32473 64}
This page took 0.023559 seconds and 4 git commands to generate.