Update for the new Gruntmaster::Data
[plack-app-gruntmaster.git] / app.psgi
... / ...
CommitLineData
1#!/usr/bin/perl
2use v5.14;
3use warnings;
4
5use Gruntmaster::Data;
6use Plack::App::Gruntmaster;
7use Plack::Builder;
8use Plack::Util;
9use Log::Log4perl;
10
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}
25
26my $dbinit;
27
28sub add_database {
29 my $app = $_[0];
30 sub {
31 Gruntmaster::Data::init $ENV{GRUNTMASTER_DSN} // 'dbi:Pg:' unless $dbinit;
32 $dbinit = 1;
33 $app->(@_)
34 }
35}
36
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
49Log::Log4perl->init_once('log.conf');
50$ENV{DBIC_NULLABLE_KEY_NOWARN} = 1;
51
52builder {
53 enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }};
54 enable 'ContentLength';
55 enable \&add_headers;
56 enable 'Static', path => qr,^/static/,;
57 enable 'Log4perl', category => 'plack';
58 enable \&add_database;
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};
63 Plack::App::Gruntmaster->run_if_script
64}
This page took 0.008413 seconds and 4 git commands to generate.