3 no if $] >= 5.017011, warnings
=> 'experimental::smartmatch';
6 use Plack
::App
::Gruntmaster
;
11 use constant AUTH_TIMEOUT
=> 5 * 60;
12 use constant ACCESSLOG_FORMAT
=> 'combined';
14 sub CONTENT_SECURITY_POLICY
() {
19 frame-ancestors 'none'
21 referrer origin-when-cross-origin
35 $db //= Gruntmaster
::Data
->connect($ENV{GRUNTMASTER_DSN
} // 'dbi:Pg:');
36 $env->{'gruntmaster.dbic'} = $db;
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('Link', '</static/cyborg.css>; rel=stylesheet') if $hdrs->get('Content-Type') =~ m
,^text
/html
,;
48 $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO
} =~ qr
,^/static/,;
49 $resp->[1] = $hdrs->headers;
54 Log
::Log4perl
->init_once('log.conf');
55 my $access_logger = Log
::Log4perl
->get_logger('access');
56 $ENV{DBIC_NULLABLE_KEY_NOWARN
} = 1;
59 enable_if
{ $_[0]->{PATH_INFO
} eq '/ok' } sub { sub{ [200, [], []] }};
60 enable
'AccessLog', format
=> ACCESSLOG_FORMAT
, logger
=> sub { $access_logger->info(@_) };
61 enable
'ContentLength';
63 enable
'Static', path
=> qr
,^/static/,;
64 enable
'Log4perl', category
=> 'plack';
65 enable \
&add_database
;
66 enable
'+Plack::App::Gruntmaster::Auth',
67 dbi_connect
=> [$ENV{GRUNTMASTER_DSN
} // 'dbi:Pg:', '', ''],
68 realm
=> 'Gruntmaster 6000',
69 mail_from
=> $ENV{GRUNTMASTER_RESET_FROM
};
70 Plack
::App
::Gruntmaster
->run_if_script