Reduce DBIC dependency
[plack-app-gruntmaster.git] / lib / Plack / App / Gruntmaster.pm
CommitLineData
7dc32473
MG
1package Plack::App::Gruntmaster;
2
3use 5.014000;
4use strict;
7dc32473
MG
5our $VERSION = '5999.000_001';
6
3b69df7a 7use Encode qw/encode decode/;
f34254b8 8use File::Slurp qw/read_file/;
3b69df7a 9use JSON::MaybeXS qw/encode_json/;
594d53ba
MG
10use PerlX::Maybe;
11use Scope::Upper qw/unwind SUB UP/;
3b69df7a 12use Web::Simple;
594d53ba
MG
13
14use Gruntmaster::Data;
3b69df7a
MG
15use Plack::App::Gruntmaster::HTML;
16
17use warnings NONFATAL => 'all';
18no warnings 'illegalproto';
f34254b8 19
594d53ba
MG
20##################################################
21
594d53ba
MG
22use constant USER_REGEX => qr/^\w{2,20}$/a;
23
594d53ba
MG
24use constant FORMAT_EXTENSION => {
25 C => 'c',
26 CPP => 'cpp',
a5e355d6
MG
27 GCCGO => 'go',
28 GOLANG => 'go',
d39978bf 29 GOLFSCRIPT => 'gs',
a5e355d6 30 HASKELL => 'hs',
594d53ba
MG
31 MONO => 'cs',
32 JAVA => 'java',
33 PASCAL => 'pas',
34 PERL => 'pl',
35 PYTHON => 'py',
c83dca87 36 RUBY => 'rb',
e6d1bcd4 37 SBCL => 'l',
594d53ba
MG
38};
39
3ef32174 40use constant NOT_FOUND => [404, ['X-Forever' => 1, 'Content-Type' => 'text/plain'], ['Not found']];
594d53ba 41
c039d63e 42my ($env, $privacy);
594d53ba
MG
43
44sub db { $env->{'gruntmaster.dbic'} }
45
46sub remote_user {
8d725691 47 my $user = $env->{REMOTE_USER};
c5343878 48 $user &&= db->user_entry($user);
594d53ba
MG
49 $user
50}
51
c5343878 52sub admin { remote_user && remote_user->{admin} }
594d53ba
MG
53sub contest { db->contest ($_{contest}) }
54sub problem { db->problem ($_{problem}) }
594d53ba 55
54bc2c5c 56sub redirect { [301, ['X-Forever' => 1, 'Cache-Control' => 'public, max-age=86400', 'Location' => $_[0]], []] }
69c01de9 57sub reply { [200, ['Content-Type' => 'text/plain; charset=utf-8'], \@_] }
594d53ba 58sub response {
c039d63e 59 my ($template, $title, $params, $maxage) = @_;
594d53ba
MG
60 unless ($params) {
61 $params = $title;
62 $title = 'No title';
63 }
9a4806b3 64 $params->{time} = time;
39e2d01a 65 $params->{args} = {%_};
54bc2c5c 66 bless {template => $template, title => $title, params => $params, maxage => ($maxage // 3600)}, __PACKAGE__.'::Response'
594d53ba 67}
3b69df7a 68
c039d63e
MG
69sub forbid {
70 my ($condition) = @_;
71 $privacy = 'private' if $condition;
72 return if !$condition || admin;
8d725691 73 unwind $env->{authcomplex}->unauthorized, SUB UP
594d53ba 74}
31d70015 75
594d53ba
MG
76sub dispatch_request{
77 $env = $_[PSGI_ENV];
c039d63e
MG
78 $privacy = 'public';
79
594d53ba 80 sub (GET) {
3ef32174 81 sub (/robots.txt) { NOT_FOUND },
3ef32174 82
594d53ba 83 sub (/src/:job) {
02d17b02 84 my $job = db->job_full($_{job});
c5343878
MG
85 return NOT_FOUND if !$job;
86 my $isowner = remote_user && remote_user->{id} eq $job->{owner};
02d17b02
MG
87 my $contest = $job->{contest} && db->contest_entry($job->{contest});
88 my $private = $job->{private} || $contest && ($contest->{started} && !$contest->{finished});
e547b147
MG
89 forbid !$isowner && $private;
90 my $privacy = $private ? 'private' : 'public';
218d6f7e 91 my @headers = ('X-Forever' => 1, 'Cache-Control' => "$privacy, max-age=604800", 'Content-Type' => 'text/plain');
e547b147 92 push @headers, (Vary => 'Authorization') if $private;
02d17b02 93 [200, \@headers, [$job->{source}]]
594d53ba
MG
94 },
95
d3892d73 96 sub (?:format~) {
feaa8f5a 97 my $format = lc ($_{format} // '');
594d53ba
MG
98 response_filter {
99 my ($r) = @_;
100 return $r if ref $r ne 'Plack::App::Gruntmaster::Response';
928a611f
MG
101 my @hdrs = ('X-Forever' => 1, 'Cache-Control' => "$privacy, max-age=$r->{maxage}");
102 push @hdrs, Vary => 'Authorization' if $privacy eq 'private';
69c01de9 103 return [200, ['Content-Type' => 'application/json; charset=utf-8', @hdrs], [encode_json $r->{params}]] if $format eq 'json';
928a611f 104 my $ret = render $r->{template}, 'en', title => $r->{title}, %{$r->{params}};
69c01de9 105 [200, ['Content-Type' => 'text/html; charset=utf-8', @hdrs], [encode 'UTF-8', $ret]]
594d53ba
MG
106 },
107 },
108
594d53ba
MG
109 sub (/st/:contest) {
110 response st => 'Standings', {
7468a6a7 111 st => [ contest->standings ],
ebca729d
MG
112 problems => [
113 map { [$_->id, $_->name] }
114 sort { $a->value <=> $b->value }
115 map { $_->problem } contest->contest_problems],
c039d63e 116 }, 10
594d53ba
MG
117 },
118
645cfb7d 119 sub (/ed/:contest) {
90f613d3 120 forbid !contest->is_finished;
42243f04 121 my $pblist = db->problem_list(contest => $_{contest}, solution => 1);
54bc2c5c 122 response ed => 'Editorial of ' . contest->name, {%$pblist, editorial => contest->editorial}, contest->is_finished(time - 86400) ? 60 : ();
645cfb7d
MG
123 },
124
462db4aa
MG
125 sub (/login) {
126 forbid !remote_user;
2beb67b4 127 [200, ['Content-Type' => 'text/plain; charset=UTF-8', 'Cache-Control' => 'private, max-age=300', Vary => 'Authorization'], [$env->{REMOTE_USER}]]
462db4aa
MG
128 },
129
594d53ba
MG
130 sub (/ct/:contest/log/st) { redirect "/st/$_{contest}" },
131
132 sub (/us/) { response us => 'Users', {us => db->user_list} },
54bc2c5c 133 sub (/ct/ + ?:owner~) { response ct => 'Contests', db->contest_list(%_), 300 },
23e32638 134 sub (/log/ + ?:contest~&:owner~&:page~&:problem~&:private~&:result~) {
b8a0fa71 135 forbid $_{private};
7e158d3c 136 response log => 'Job list', db->job_list(%_), 5
b8a0fa71 137 },
87ffd88b 138 sub (/pb/ + ?:owner~&:contest~&:private~) {
b8a0fa71 139 forbid $_{private};
2ca1b4a6 140 forbid contest && contest->is_pending;
ee38c972 141 response pb => 'Problems', db->problem_list(%_)
b8a0fa71 142 },
594d53ba 143
c5343878
MG
144 sub (/us/:user) {
145 my $user = db->user_entry($_{user});
146 response us_entry => $user->{name}, $user
147 },
148 sub (/ct/:contest) {
149 my $contest = db->contest_entry($_{contest});
150 response ct_entry => $contest->{name}, $contest, 60
151 },
28e89d6c 152 sub (/log/:job) {
c5343878
MG
153 my $job = db->job_entry($_{job});
154 forbid $job->{private};
155 response log_entry => "Job $_{job}", $job, 10
28e89d6c 156 },
84ca7535
MG
157 sub (/pb/:problem + ?contest~) {
158 my (undef, undef, $contest) = @_;
159 $_{contest} = $contest;
8a4acaca
MG
160 return NOT_FOUND if contest && !db->contest_problems->find($_{contest}, $_{problem});
161 forbid problem->private && !contest;
162 if (contest) {
163 return redirect "/pb/$_{problem}" unless contest->is_running;
5b76a57d
MG
164 forbid !remote_user;
165 $privacy = 'private';
166 }
c5343878 167 response pb_entry => problem->name, db->problem_entry($_{problem}, $_{contest}, remote_user && remote_user->{id}), $_{contest} ? 10 : ();
594d53ba 168 },
e4d5bdf5 169 sub (/sol/:problem) {
8a4acaca 170 forbid problem->private;
e4d5bdf5
MG
171 response sol => 'Solution of ' . problem->name, {solution => db->problem($_{problem})->solution};
172 },
594d53ba
MG
173
174 sub (/) { redispatch_to '/index' },
cb0122d7 175 sub (/favicon.ico) { redirect '/static/favicon.ico' },
928a611f 176 sub (/:article) { [200, ['Content-Type' => 'text/html; charset=utf-8', 'Cache-Control' => 'public, max-age=3600', 'X-Forever' => 1], [render_article $_{article}, 'en']] }
594d53ba
MG
177 },
178
179 sub (POST) {
08794667
MG
180 sub (/action/submit + %:problem=&:contest~&:prog_format=&:source_code~ + *prog~) {
181 my (undef, undef, $prog) = @_;
594d53ba 182 forbid !remote_user;
8a4acaca 183 my $private = (problem->private && !contest) ? 1 : 0;
3b69df7a 184 return reply 'This contest has finished' if contest && contest->is_finished;
8a4acaca
MG
185 return reply 'This contest has not yet started' if contest && contest->is_pending;
186 return reply 'This problem is private' if !admin && $private;
187 return reply 'This problem does not belong to this contest' if contest && !db->contest_problems->find($_{contest}, $_{problem});
08794667 188 return reply 'Maximum source size is 10KB' if ($prog ? $prog->size : length $_{source_code}) > 10 * 1024;
c5343878 189 return reply 'You must wait 30 seconds between jobs' if !admin && time <= remote_user->{lastjob} + 30;
594d53ba 190
08794667
MG
191 my $source = $prog ? read_file $prog->path : $_{source_code};
192 unlink $prog->path if $prog;
c5343878 193 my $id = db->create_job(
594d53ba 194 maybe contest => $_{contest},
cb6adaff 195 private => $private,
594d53ba
MG
196 date => time,
197 extension => FORMAT_EXTENSION->{$_{prog_format}},
198 format => $_{prog_format},
199 problem => $_{problem},
08794667 200 source => $source,
c5343878
MG
201 owner => remote_user->{id},
202 );
594d53ba 203
c5343878 204 [303, [Location => '/log/' . $id], []]
3c434a02 205 },
594d53ba 206 }
7dc32473
MG
207}
208
594d53ba 209
7dc32473
MG
2101;
211__END__
This page took 0.050413 seconds and 4 git commands to generate.