Do not minify CSS/JS in development
[gruntmaster-page.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
e03e380b 7use CSS::Minifier::XS;
3b69df7a 8use Encode qw/encode decode/;
f34254b8 9use File::Slurp qw/read_file/;
e03e380b 10use JavaScript::Minifier::XS;
3b69df7a 11use JSON::MaybeXS qw/encode_json/;
594d53ba
MG
12use PerlX::Maybe;
13use Scope::Upper qw/unwind SUB UP/;
3b69df7a 14use Web::Simple;
594d53ba
MG
15
16use Gruntmaster::Data;
3b69df7a
MG
17use Plack::App::Gruntmaster::HTML;
18
19use warnings NONFATAL => 'all';
20no warnings 'illegalproto';
594d53ba 21no if $] >= 5.017011, warnings => 'experimental::smartmatch';
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',
37};
594d53ba
MG
38
39use constant FORMAT_EXTENSION => {
40 C => 'c',
41 CPP => 'cpp',
a5e355d6
MG
42 GCCGO => 'go',
43 GOLANG => 'go',
44 HASKELL => 'hs',
594d53ba
MG
45 MONO => 'cs',
46 JAVA => 'java',
47 PASCAL => 'pas',
48 PERL => 'pl',
49 PYTHON => 'py',
50};
51
e03e380b 52use constant NOT_FOUND => [404, ['Content-Type' => 'text/plain'], ['Not found']];
3b69df7a 53use constant FORBIDDEN => [401, ['Content-Type' => 'text/plain', 'WWW-Authenticate' => 'Basic realm="Gruntmaster 6000"'], ['Forbidden']];
594d53ba 54
1bb102ef
MG
55sub development() { ($ENV{PLACK_ENV} // 'development') eq 'development' }
56
594d53ba
MG
57my $env;
58
59sub db { $env->{'gruntmaster.dbic'} }
60
61sub remote_user {
62 my $user = $env->{'gruntmaster.user'};
63 $user &&= db->user($user);
64 $user
65}
66
3b69df7a 67sub admin { remote_user && remote_user->admin }
594d53ba
MG
68sub contest { db->contest ($_{contest}) }
69sub problem { db->problem ($_{problem}) }
70sub job { db->job ($_{job}) }
71sub user { db->user ($_{user}) }
72
73sub redirect { [301, ['X-Forever' => 1, 'Location' => $_[0]], []] }
74sub reply { [200, ['Content-Type' => 'text/plain'], \@_] }
75sub response {
76 my ($template, $title, $params) = @_;
77 unless ($params) {
78 $params = $title;
79 $title = 'No title';
80 }
9a4806b3 81 $params->{time} = time;
594d53ba
MG
82 bless {template => $template, title => $title, params => $params}, __PACKAGE__.'::Response'
83}
3b69df7a 84
594d53ba
MG
85sub forbid {
86 return if !shift || admin;
87 unwind FORBIDDEN, SUB UP
88}
31d70015 89
594d53ba
MG
90sub dispatch_request{
91 $env = $_[PSGI_ENV];
92 sub (GET) {
93 sub (/css/:theme) {
94 my $theme = $_{theme};
95 return NOT_FOUND unless -e "css/themes/$theme.css";
96 my $css = read_file "css/themes/$theme.css";
97 $css .= read_file $_ for <css/*.css>;
98 my @headers = ('X-Forever' => 1, 'Cache-Control' => 'public, max-age=604800', 'Content-Type' => 'text/css');
1bb102ef 99 [200, \@headers, [development ? $css : CSS::Minifier::XS::minify $css]]
594d53ba
MG
100 },
101
102 sub (/js.js) {
103 my $js;
104 $js .= read_file $_ for <js/*.js>;
105 my @headers = ('X-Forever' => 1, 'Cache-Control' => 'public, max-age=604800', 'Content-Type' => 'application/javascript');
1bb102ef 106 [200, \@headers, [development ? $js : JavaScript::Minifier::XS::minify $js]]
594d53ba
MG
107 },
108
109 sub (/src/:job) {
110 return NOT_FOUND if !job;
111 forbid job->private || job->problem->private || job->contest && job->contest->private;
112 my @headers = ('X-Forever' => 1, 'Cache-Control' => 'public, max-age=604800', 'Content-Type' => CONTENT_TYPES->{job->format});
113 [200, \@headers, [job->source]]
114 },
115
116 sub (?:contest=) {
117 return NOT_FOUND if !contest;
118 forbid contest->is_pending;
119 response_filter { return shift }
120 },
121
122 sub (?:problem=) {
123 return NOT_FOUND if !problem;
124 forbid problem->is_private;
125 response_filter { return shift }
126 },
127
128 sub () {
129 response_filter {
130 my ($r) = @_;
131 return $r if ref $r ne 'Plack::App::Gruntmaster::Response';
3b69df7a
MG
132 return [200, ['Content-Type' => 'application/json', 'X-Forever' => 1], [encode 'UTF-8', encode_json $r->{params}]] if $env->{HTTP_ACCEPT} =~ m,^\s*application/json\s*$,g;
133 my $ret = render $r->{template}, 'en', title => $r->{title}, %{$r->{params}};
134 [200, ['Content-Type' => 'text/html'], [encode 'UTF-8', $ret]]
594d53ba
MG
135 },
136 },
137
138 sub (/st/) {
139 response st => 'Standings', { st => [db->standings] }
140 },
141
142 sub (/st/:contest) {
143 response st => 'Standings', {
144 st => [ db->standings($_{contest}) ],
145 problems => [map { $_->problem } contest->contest_problems]
146 }
147 },
148
149 sub (/ct/:contest/log/st) { redirect "/st/$_{contest}" },
150
151 sub (/us/) { response us => 'Users', {us => db->user_list} },
152 sub (/ct/ + ?:owner~) { response ct => 'Contests', db->contest_list(%_) },
3b69df7a
MG
153 sub (/log/ + ?:contest~&:owner~&:page~&:problem~) { response log => 'Job list', {%{db->job_list(%_)}, maybe contest => $_{contest}} },
154 sub (/pb/ + ?:owner~&:contest~) { response pb => 'Problems', {%{db->problem_list(%_)}, maybe contest => $_{contest}} },
594d53ba
MG
155
156 sub (/us/:user) { response us_entry => user->name, db->user_entry($_{user}) },
157 sub (/ct/:contest) { response ct_entry => contest->name, db->contest_entry($_{contest}) },
158 sub (/log/:job) { response log_entry => "Job $_{job}", db->job_entry($_{job}) },
84ca7535
MG
159 sub (/pb/:problem + ?contest~) {
160 my (undef, undef, $contest) = @_;
161 $_{contest} = $contest;
594d53ba
MG
162 return NOT_FOUND if !contest && !problem->is_in_archive || contest && !db->contest_problems->find($_{contest}, $_{problem});
163 forbid problem->is_private;
164 response pb_entry => problem->name, db->problem_entry($_{problem}, $_{contest}, remote_user && remote_user->id);
165 },
e4d5bdf5
MG
166 sub (/sol/:problem) {
167 forbid !problem->is_in_archive;
168 response sol => 'Solution of ' . problem->name, {solution => db->problem($_{problem})->solution};
169 },
594d53ba
MG
170
171 sub (/) { redispatch_to '/index' },
3b69df7a 172 sub (/:article) { [200, ['Content-Type' => 'text/html'], [render_article $_{article}, 'en']] }
594d53ba
MG
173 },
174
175 sub (POST) {
176 sub (/action/register + %:username=&:password=&:confirm_password=&:name=&:email=&:phone=&:town=&:university=&:level=) {
177 return reply 'Parameter too long' if grep { length > 200 } values %_;
178 return reply 'Bad username. Allowed characters are letters, digits and underscores, and the username must be between 2 and 20 characters long.' unless $_{username} =~ USER_REGEX;
179 return reply 'Username already in use' if db->user($_{username});
180 return reply 'The two passwords do not match' unless $_{password} eq $_{confirm_password};
181
182 db->users->create({id => $_{username}, name => $_{name}, email => $_{email}, phone => $_{phone}, town => $_{town}, university => $_{university}, level => $_{level}});
183 db->user($_{username})->set_passphrase($_{password});
184
185 reply 'Registered successfully';
186 },
187
188 sub (/action/passwd + %:password=&:new_password=&:confirm_new_password=) {
189 forbid !remote_user;
190 return reply 'Incorrect password' unless remote_user->check_passphrase($_{password});
191 return reply 'The two passwords do not match' unless $_{new_password} eq $_{confirm_new_password};
192 remote_user->set_passphrase($_{new_password});
193 reply 'Password changed successfully';
194 },
195
3b69df7a 196 sub (/action/submit + %:problem=&:contest~&:prog_format=&:private~&:source_code~ + *:prog~) {
594d53ba 197 forbid !remote_user;
3b69df7a
MG
198 return reply 'This contest has finished' if contest && contest->is_finished;
199 return reply 'This contest has not yet started' if !admin && contest && contest->is_pending;
200 return reply 'Maximum source size is 10KB' if ($_{prog} ? $_{prog}->size : length $_{source_code}) > 10 * 1024;
594d53ba
MG
201 return reply 'You must wait 30 seconds between jobs' if !admin && time <= remote_user->lastjob + 30;
202 remote_user->update({lastjob => time});
203
3b69df7a
MG
204 my $prog = $_{prog} ? read_file $_{prog}->path : $_{source_code};
205 unlink $_{prog}->path if $_{prog};
594d53ba
MG
206 db->jobs->create({
207 maybe contest => $_{contest},
208 maybe private => $_{private},
209 date => time,
210 extension => FORMAT_EXTENSION->{$_{prog_format}},
211 format => $_{prog_format},
212 problem => $_{problem},
213 source => $prog,
214 owner => remote_user->id,
215 });
216
217 redirect $_{contest} ? "/log/?contest=$_{contest}" : '/log/';
218 }
219 }
7dc32473
MG
220}
221
594d53ba 222
7dc32473
MG
2231;
224__END__
This page took 0.02877 seconds and 4 git commands to generate.