4 use Apache2
::Authen
::Passphrase qw
/pwcheck/;
5 use Apache2
::AuthzCaps qw
/hascaps/;
7 use Plack
::App
::Gruntmaster
;
10 use Digest
::SHA qw
/sha256/;
13 use constant ACCESSLOG_FORMAT
=> '%{X-Forwarded-For}i|%h %u "%r" %>s %b "%{Referer}i" "%{User-agent}i"';
14 use constant CONTENT_SECURITY_POLICY
=> q
,default-src
'none'; script
-src
'self' www
.google
-analytics
.com
; style
-src
'self'; img
-src
'self' www
.google
-analytics
.com
; connect-src
'self',;
16 $Apache2::AuthzCaps
::rootdir
= $Apache2::Authen
::Passphrase
::rootdir
;
17 my $word = qr
,(\w
+),a
;
20 local $Log::Log4perl
::caller_depth
= $Log::Log4perl
::caller_depth
+ 1;
21 $_[0]->{'psgix.logger'}->({qw
/level debug message/ => $_[1]})
24 sub some_auth_required
{
25 my $r = Plack
::Request
->new($_[0]);
26 return 1 if $_[0]->{'gruntmaster.reqadmin'} || $r->path eq '/action/passwd' || $r->path =~ m
,/pb/$word/submit
$,;
27 return 1 if $r->path =~ m
,^/ct/$word/pb/$word, && time < contest_end
$1;
33 return problem_owner
$1 if m
,^/pb/$word, && problem_private
$1;
34 return job_user
$1 if m
,^/log/(?
:job
|src
)/$word, && job_private
$1;
35 return contest_owner
$1 if m
,^/ct/$word/(?
:pb
|log), && time < contest_start
$1;
36 if (m
,^/ct/$word/log/(?
:job
|src
)/$word, && time < contest_end
$1){
37 local $Gruntmaster::Data
::contest
= $1;
46 local *__ANON__
= "require_admin_middleware";
48 my $r = Plack
::Request
->new($env);
49 $env->{'gruntmaster.reqadmin'} = admin_required
$r->path;
57 my ($user, $pass, $env) = @_;
58 my $cache_key = sha256
"$user:$pass";
59 my $time = $authen_cache{$cache_key} // 0;
60 if ($time >= time - 300) {
63 delete $authen_cache{$cache_key};
70 $authen_cache{$cache_key} = time;
72 return if $env->{'gruntmaster.reqadmin'} && $env->{'gruntmaster.reqadmin'} ne $user && !hascaps
$user, 'gmadm';
76 Log
::Log4perl
->init('log.conf');
77 my $access_logger = Log
::Log4perl
->get_logger('access');
80 enable_if
{ $_[0]->{PATH_INFO
} eq '/ok' } sub { sub{ [200, [], []] }};
81 enable
'AccessLog', format
=> ACCESSLOG_FORMAT
, logger
=> sub { $access_logger->info(@_) };
82 enable
'ContentLength';
83 enable Header
=> set
=> ['Content-Security-Policy', CONTENT_SECURITY_POLICY
];
84 enable_if
{ $_[0]->{PATH_INFO
} =~ qr
,^/static/,} Header
=> set
=> ['Cache-Control', 'public, max-age=604800'];
85 enable
'Static', path
=> qr
,^/static/,;
86 enable
'Log4perl', category
=> 'plack';
87 enable \
&require_admin
;
88 enable_if \
&some_auth_required
, 'Auth::Basic', authenticator
=> \
&authenticate
, realm
=> 'Gruntmaster 6000';
89 Plack
::App
::Gruntmaster
->to_app