Update bootswatch to 3.3.4
[plack-app-gruntmaster.git] / app.psgi
1 #!/usr/bin/perl -w
2 use v5.14;
3 no if $] >= 5.017011, warnings => 'experimental::smartmatch';
4
5 use Gruntmaster::Data;
6 use Plack::App::Gruntmaster;
7 use Plack::Builder;
8 use Plack::Util;
9 use Log::Log4perl;
10
11 use constant AUTH_TIMEOUT => 5 * 60;
12 use constant ACCESSLOG_FORMAT => 'combined';
13
14 sub CONTENT_SECURITY_POLICY () {
15 my $csp = <<CSP;
16 default-src 'none'
17 connect-src 'self'
18 form-action 'self'
19 frame-ancestors 'none'
20 img-src 'self'
21 referrer origin-when-cross-origin
22 script-src 'self'
23 style-src 'self'
24 CSP
25 chomp $csp;
26 $csp =~ s/\n/; /gr;
27 }
28
29 my $db;
30
31 sub add_database {
32 my $app = $_[0];
33 sub {
34 my ($env) = @_;
35 $db //= Gruntmaster::Data->connect($ENV{GRUNTMASTER_DSN} // 'dbi:Pg:');
36 $env->{'gruntmaster.dbic'} = $db;
37 $app->($env)
38 }
39 }
40
41 sub add_headers {
42 my $app = $_[0];
43 sub {
44 my $resp = $app->($_[0]);
45 my $hdrs = Plack::Util::headers($resp->[1]);
46 $hdrs->set('Content-Security-Policy', CONTENT_SECURITY_POLICY);
47 $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO} =~ qr,^/static/,;
48 $resp->[1] = $hdrs->headers;
49 $resp;
50 }
51 }
52
53 Log::Log4perl->init_once('log.conf');
54 my $access_logger = Log::Log4perl->get_logger('access');
55 $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1;
56
57 builder {
58 enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }};
59 enable 'AccessLog', format => ACCESSLOG_FORMAT, logger => sub { $access_logger->info(@_) };
60 enable 'ContentLength';
61 enable \&add_headers;
62 enable 'Static', path => qr,^/static/,;
63 enable 'Log4perl', category => 'plack';
64 enable \&add_database;
65 enable '+Plack::App::Gruntmaster::Auth',
66 dbi_connect => [$ENV{GRUNTMASTER_DSN} // 'dbi:Pg:', '', ''],
67 realm => 'Gruntmaster 6000',
68 mail_from => $ENV{GRUNTMASTER_RESET_FROM};
69 Plack::App::Gruntmaster->run_if_script
70 }
This page took 0.02795 seconds and 4 git commands to generate.