Update fonts and remove @import from readable.css
[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
3c434a02
MG
17use Email::Sender::Simple qw/sendmail/;
18use Email::Simple;
19
3b69df7a
MG
20use warnings NONFATAL => 'all';
21no warnings 'illegalproto';
f34254b8 22
594d53ba
MG
23##################################################
24
594d53ba
MG
25use constant USER_REGEX => qr/^\w{2,20}$/a;
26
e03e380b
MG
27use constant CONTENT_TYPES => +{
28 c => 'text/x-csrc',
29 cpp => 'text/x-c++src',
30 cs => 'text/x-csharp', # Used by GNOME. Not in mime.types.
a5e355d6
MG
31 go => 'text/plain', # ?
32 hs => 'text/x-haskell',
e03e380b
MG
33 java => 'text/x-java',
34 pas => 'text/x-pascal',
35 pl => 'text/x-perl',
36 py => 'text/x-python',
76454bde 37 l => 'text/plain',
e03e380b 38};
594d53ba
MG
39
40use constant FORMAT_EXTENSION => {
41 C => 'c',
42 CPP => 'cpp',
a5e355d6
MG
43 GCCGO => 'go',
44 GOLANG => 'go',
45 HASKELL => 'hs',
594d53ba
MG
46 MONO => 'cs',
47 JAVA => 'java',
48 PASCAL => 'pas',
49 PERL => 'pl',
50 PYTHON => 'py',
e6d1bcd4 51 SBCL => 'l',
594d53ba
MG
52};
53
3ef32174 54use constant NOT_FOUND => [404, ['X-Forever' => 1, 'Content-Type' => 'text/plain'], ['Not found']];
594d53ba 55
c039d63e 56my ($env, $privacy);
594d53ba
MG
57
58sub db { $env->{'gruntmaster.dbic'} }
59
60sub remote_user {
8d725691 61 my $user = $env->{REMOTE_USER};
594d53ba
MG
62 $user &&= db->user($user);
63 $user
64}
65
3b69df7a 66sub admin { remote_user && remote_user->admin }
594d53ba
MG
67sub contest { db->contest ($_{contest}) }
68sub problem { db->problem ($_{problem}) }
69sub job { db->job ($_{job}) }
70sub user { db->user ($_{user}) }
71
72sub redirect { [301, ['X-Forever' => 1, 'Location' => $_[0]], []] }
69c01de9 73sub reply { [200, ['Content-Type' => 'text/plain; charset=utf-8'], \@_] }
594d53ba 74sub response {
c039d63e 75 my ($template, $title, $params, $maxage) = @_;
594d53ba
MG
76 unless ($params) {
77 $params = $title;
78 $title = 'No title';
79 }
9a4806b3 80 $params->{time} = time;
39e2d01a 81 $params->{args} = {%_};
c039d63e 82 bless {template => $template, title => $title, params => $params, maxage => ($maxage // 1)}, __PACKAGE__.'::Response'
594d53ba 83}
3b69df7a 84
c039d63e
MG
85sub forbid {
86 my ($condition) = @_;
87 $privacy = 'private' if $condition;
88 return if !$condition || admin;
8d725691 89 unwind $env->{authcomplex}->unauthorized, SUB UP
594d53ba 90}
31d70015 91
594d53ba
MG
92sub dispatch_request{
93 $env = $_[PSGI_ENV];
c039d63e
MG
94 $privacy = 'public';
95
594d53ba 96 sub (GET) {
3ef32174 97 sub (/robots.txt) { NOT_FOUND },
3ef32174 98
594d53ba
MG
99 sub (/src/:job) {
100 return NOT_FOUND if !job;
c22928ed 101 my $isowner = remote_user && remote_user->id eq job->rawowner;
e547b147
MG
102 my $private = job->private || job->problem->private || job->contest && job->contest->is_running;
103 forbid !$isowner && $private;
104 my $privacy = $private ? 'private' : 'public';
1bc7c028 105 my @headers = ('X-Forever' => 1, 'Cache-Control' => "$privacy, max-age=604800", 'Content-Type' => CONTENT_TYPES->{job->extension});
e547b147 106 push @headers, (Vary => 'Authorization') if $private;
594d53ba
MG
107 [200, \@headers, [job->source]]
108 },
109
110 sub (?:contest=) {
111 return NOT_FOUND if !contest;
112 forbid contest->is_pending;
113 response_filter { return shift }
114 },
115
116 sub (?:problem=) {
117 return NOT_FOUND if !problem;
118 forbid problem->is_private;
119 response_filter { return shift }
120 },
121
d3892d73 122 sub (?:format~) {
feaa8f5a 123 my $format = lc ($_{format} // '');
594d53ba
MG
124 response_filter {
125 my ($r) = @_;
126 return $r if ref $r ne 'Plack::App::Gruntmaster::Response';
c039d63e 127 my @hdrs = ('X-Forever' => 1, 'Cache-Control' => "$privacy, max-age=$r->{maxage}");
be6551aa 128 push @hdrs, Vary => 'Authorization' if $privacy eq 'private';
69c01de9 129 return [200, ['Content-Type' => 'application/json; charset=utf-8', @hdrs], [encode_json $r->{params}]] if $format eq 'json';
3b69df7a 130 my $ret = render $r->{template}, 'en', title => $r->{title}, %{$r->{params}};
69c01de9 131 [200, ['Content-Type' => 'text/html; charset=utf-8', @hdrs], [encode 'UTF-8', $ret]]
594d53ba
MG
132 },
133 },
134
594d53ba
MG
135 sub (/st/:contest) {
136 response st => 'Standings', {
7468a6a7 137 st => [ contest->standings ],
ebca729d
MG
138 problems => [
139 map { [$_->id, $_->name] }
140 sort { $a->value <=> $b->value }
141 map { $_->problem } contest->contest_problems],
c039d63e 142 }, 10
594d53ba
MG
143 },
144
645cfb7d 145 sub (/ed/:contest) {
90f613d3 146 forbid !contest->is_finished;
42243f04
MG
147 my $pblist = db->problem_list(contest => $_{contest}, solution => 1);
148 response ed => 'Editorial of ' . contest->name, {%$pblist, editorial => contest->editorial};
645cfb7d
MG
149 },
150
462db4aa
MG
151 sub (/login) {
152 forbid !remote_user;
153
4f3b70b7
MG
154 my $return = $env->{HTTP_REFERER} // '/';
155 [303, ['Set-Cookie' => "username=".remote_user->id, Location => $return], []]
462db4aa
MG
156 },
157
594d53ba
MG
158 sub (/ct/:contest/log/st) { redirect "/st/$_{contest}" },
159
160 sub (/us/) { response us => 'Users', {us => db->user_list} },
161 sub (/ct/ + ?:owner~) { response ct => 'Contests', db->contest_list(%_) },
b8a0fa71
MG
162 sub (/log/ + ?:contest~&:owner~&:page~&:problem~&:private~) {
163 forbid $_{private};
39e2d01a 164 response log => 'Job list', {%{db->job_list(%_)}, maybe contest => $_{contest},}
b8a0fa71 165 },
87ffd88b 166 sub (/pb/ + ?:owner~&:contest~&:private~) {
b8a0fa71
MG
167 forbid $_{private};
168 response pb => 'Problems', {%{db->problem_list(%_)}, maybe contest => $_{contest}}
169 },
594d53ba
MG
170
171 sub (/us/:user) { response us_entry => user->name, db->user_entry($_{user}) },
172 sub (/ct/:contest) { response ct_entry => contest->name, db->contest_entry($_{contest}) },
28e89d6c
MG
173 sub (/log/:job) {
174 forbid job->private;
175 response log_entry => "Job $_{job}", db->job_entry($_{job})
176 },
84ca7535
MG
177 sub (/pb/:problem + ?contest~) {
178 my (undef, undef, $contest) = @_;
179 $_{contest} = $contest;
594d53ba
MG
180 return NOT_FOUND if !contest && !problem->is_in_archive || contest && !db->contest_problems->find($_{contest}, $_{problem});
181 forbid problem->is_private;
5b76a57d
MG
182 if (contest && contest->is_running) {
183 forbid !remote_user;
184 $privacy = 'private';
185 }
33ea2780 186 response pb_entry => problem->name, {%{db->problem_entry($_{problem}, $_{contest}, remote_user && remote_user->id)}, maybe contest => $_{contest}};
594d53ba 187 },
e4d5bdf5
MG
188 sub (/sol/:problem) {
189 forbid !problem->is_in_archive;
190 response sol => 'Solution of ' . problem->name, {solution => db->problem($_{problem})->solution};
191 },
594d53ba
MG
192
193 sub (/) { redispatch_to '/index' },
cb0122d7 194 sub (/favicon.ico) { redirect '/static/favicon.ico' },
69c01de9 195 sub (/:article) { [200, ['Content-Type' => 'text/html; charset=utf-8', 'Cache-Control' => 'public, max-age=60', 'X-Forever' => 1], [render_article $_{article}, 'en']] }
594d53ba
MG
196 },
197
198 sub (POST) {
08794667
MG
199 sub (/action/submit + %:problem=&:contest~&:prog_format=&:source_code~ + *prog~) {
200 my (undef, undef, $prog) = @_;
594d53ba 201 forbid !remote_user;
3b69df7a
MG
202 return reply 'This contest has finished' if contest && contest->is_finished;
203 return reply 'This contest has not yet started' if !admin && contest && contest->is_pending;
31f5eb01 204 return reply 'This problem does not belong to this contest' if !contest && !problem->is_in_archive || contest && !db->contest_problems->find($_{contest}, $_{problem});
08794667 205 return reply 'Maximum source size is 10KB' if ($prog ? $prog->size : length $_{source_code}) > 10 * 1024;
594d53ba
MG
206 return reply 'You must wait 30 seconds between jobs' if !admin && time <= remote_user->lastjob + 30;
207 remote_user->update({lastjob => time});
208
08794667
MG
209 my $source = $prog ? read_file $prog->path : $_{source_code};
210 unlink $prog->path if $prog;
cb6adaff 211 my $private = (problem->private && !$_{contest}) ? 1 : 0;
b2597e87 212 $private = 1 if contest && contest->is_pending;
31dc8096 213 my $newjob = db->jobs->create({
594d53ba 214 maybe contest => $_{contest},
cb6adaff 215 private => $private,
594d53ba
MG
216 date => time,
217 extension => FORMAT_EXTENSION->{$_{prog_format}},
218 format => $_{prog_format},
219 problem => $_{problem},
08794667 220 source => $source,
594d53ba
MG
221 owner => remote_user->id,
222 });
223
31dc8096 224 [303, [Location => '/log/' . $newjob->id], []]
3c434a02 225 },
594d53ba 226 }
7dc32473
MG
227}
228
594d53ba 229
7dc32473
MG
2301;
231__END__
This page took 0.039234 seconds and 4 git commands to generate.