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