]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/perl -w | |
2 | use v5.14; | |
3 | no if $] >= 5.017011, warnings => 'experimental::smartmatch'; | |
4 | ||
5 | use Apache2::Authen::Passphrase qw/pwcheck/; | |
6 | use Apache2::AuthzCaps qw/hascaps/; | |
7 | use Gruntmaster::Data; | |
8 | use Plack::App::Gruntmaster; | |
9 | use Plack::Builder; | |
10 | use Plack::Request; | |
11 | use Digest::SHA qw/sha256/; | |
12 | use Log::Log4perl; | |
13 | ||
14 | use constant ACCESSLOG_FORMAT => '%{X-Forwarded-For}i|%h %u "%r" %>s %b "%{Referer}i" "%{User-agent}i"'; | |
15 | 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 | ||
17 | $Apache2::AuthzCaps::rootdir = $Apache2::Authen::Passphrase::rootdir; | |
18 | my $word = qr,(\w+),a; | |
19 | my $number = qr,(\d+),a; | |
20 | my $db = Gruntmaster::Data->connect('dbi:Pg:'); | |
21 | ||
22 | sub debug { | |
23 | local $Log::Log4perl::caller_depth = $Log::Log4perl::caller_depth + 1; | |
24 | $_[0]->{'psgix.logger'}->({qw/level debug message/ => $_[1]}) | |
25 | } | |
26 | ||
27 | sub some_auth_required { | |
28 | my $r = Plack::Request->new($_[0]); | |
29 | return 1 if $_[0]->{'gruntmaster.reqadmin'} || $r->path eq '/action/passwd' || $r->path eq '/submit'; | |
30 | return 1 if $r->path =~ m,^/ct/$word/pb/$word, && time < $db->contest($1)->stop; | |
31 | '' | |
32 | } | |
33 | ||
34 | sub is_problem_private { | |
35 | my $pb = $_[0]; | |
36 | return 1 if $db->problem($pb)->private; | |
37 | my $prv = 0; | |
38 | for my $cp ($db->problem($pb)->contest_problems) { | |
39 | $prv = 1; | |
40 | return '' if $cp->contest->start <= time; | |
41 | } | |
42 | ||
43 | $prv | |
44 | } | |
45 | ||
46 | sub is_problem_in_contest { | |
47 | my ($pb, $ct) = @_; | |
48 | return 1 if $db->contest_problems->find($ct, $pb); | |
49 | return 1 unless defined $ct || $db->contest_problems->count({problem => $pb}); | |
50 | '' | |
51 | } | |
52 | ||
53 | sub admin_required { | |
54 | local $_ = $_[0]; | |
55 | my $env = $_[1]; | |
56 | return $db->contest($env->{'gruntmaster.contest'})->owner->id if $env->{'gruntmaster.contest'} && $db->contest($env->{'gruntmaster.contest'})->start > time; | |
57 | return $db->problem($1)->owner->id if m,^/pb/$word, && is_problem_private $1 || $env->{'gruntmaster.problem'} && is_problem_private $env->{'gruntmaster.problem'} || !is_problem_in_contest $1, $env->{'gruntmaster.contest'}; | |
58 | return $db->job ($1)->owner->id if m,^/log/(?:src/)?$number, && ($db->job($1)->private || is_problem_private $db->job($1)->problem->id || $db->job($1)->contest && $db->contest($db->job($1)->contest)->stop > time); | |
59 | '' | |
60 | } | |
61 | ||
62 | sub require_admin { | |
63 | my $app = $_[0]; | |
64 | sub { | |
65 | local *__ANON__ = "require_admin_middleware"; | |
66 | my $env = $_[0]; | |
67 | my $r = Plack::Request->new($env); | |
68 | $env->{'gruntmaster.reqadmin'} = admin_required $r->path, $env; | |
69 | $app->($env) | |
70 | } | |
71 | } | |
72 | ||
73 | sub mangle_request { | |
74 | my $app = $_[0]; | |
75 | sub { | |
76 | local *__ANON__ = 'mangle_request_middleware'; | |
77 | my $env = $_[0]; | |
78 | my ($number, $word) = (qr,(\d+),a, qr,(\w+),a); | |
79 | for ($env->{PATH_INFO}) { | |
80 | $env->{'gruntmaster.page'} = $1 if s,/page/$number$,/,; | |
81 | $env->{'gruntmaster.contest'} = $1 if s,^/ct/$word/,/,; | |
82 | $env->{'gruntmaster.problem'} = $1 if s,^/pb/$word/,/,; | |
83 | $env->{'gruntmaster.user'} = $1 if s,^/us/$word/,/,; | |
84 | $env->{'gruntmaster.page'} //= -1 if m,^/log/$,; | |
85 | } | |
86 | $app->($env); | |
87 | } | |
88 | } | |
89 | ||
90 | my %authen_cache; | |
91 | ||
92 | sub authenticate { | |
93 | my ($user, $pass, $env) = @_; | |
94 | my $cache_key = sha256 "$user:$pass"; | |
95 | my $time = $authen_cache{$cache_key} // 0; | |
96 | if ($time >= time - 300) { | |
97 | return 1; | |
98 | } else { | |
99 | delete $authen_cache{$cache_key}; | |
100 | } | |
101 | ||
102 | return unless eval { | |
103 | pwcheck $user, $pass; | |
104 | 1 | |
105 | }; | |
106 | $authen_cache{$cache_key} = time; | |
107 | ||
108 | return if $env->{'gruntmaster.reqadmin'} && $env->{'gruntmaster.reqadmin'} ne $user && !hascaps $user, 'gmadm'; | |
109 | 1 | |
110 | } | |
111 | ||
112 | Log::Log4perl->init('log.conf'); | |
113 | my $access_logger = Log::Log4perl->get_logger('access'); | |
114 | $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1; | |
115 | ||
116 | builder { | |
117 | enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }}; | |
118 | enable 'AccessLog', format => ACCESSLOG_FORMAT, logger => sub { $access_logger->info(@_) }; | |
119 | enable 'ContentLength'; | |
120 | enable Header => set => ['Content-Security-Policy', CONTENT_SECURITY_POLICY]; | |
121 | enable_if { $_[0]->{PATH_INFO} =~ qr,^/static/,} Header => set => ['Cache-Control', 'public, max-age=604800']; | |
122 | enable 'Static', path => qr,^/static/,; | |
123 | enable 'Log4perl', category => 'plack'; | |
124 | enable \&mangle_request; | |
125 | enable \&require_admin; | |
126 | enable_if \&some_auth_required, 'Auth::Basic', authenticator => \&authenticate, realm => 'Gruntmaster 6000'; | |
127 | enable sub { my $app = $_[0]; sub { $_[0]->{'gruntmaster.dbic'} = $db; $app->($_[0]) } }; | |
128 | Plack::App::Gruntmaster->to_app | |
129 | } |