Restrict submit size to 25KB
[gruntmaster-page.git] / lib / Gruntmaster / Page / Submit.pm
1 package Gruntmaster::Page::Submit;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use Gruntmaster::Page::Base;
7 our @ISA = qw/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
9
10 use Apache2::Authen::Passphrase qw/pwcheck pwset USER_REGEX/;
11 use File::Slurp qw/read_file/;
12 use Plack::Request;
13
14 use constant FORMAT_EXTENSION => {
15 C => 'c',
16 CPP => 'cpp',
17 MONO => 'cs',
18 JAVA => 'java',
19 PASCAL => 'pas',
20 PERL => 'pl',
21 PYTHON => 'py',
22 };
23
24 sub generate{
25 my ($self, $frm, $env) = @_;
26 my $r = Plack::Request->new($env);
27 my ($problem, $format, $contest, $private, $prog) = map {scalar $r->param($_)} 'problem', 'prog_format', 'contest', 'private', 'source_code';
28 my $upload = $r->upload('prog');
29 if (defined $upload) {
30 my $temp = read_file $upload->path;
31 $prog = $temp if $temp
32 }
33 die if defined $contest && $contest !~ /^\w+$/ ;
34 die if defined $contest && (time > contest_end $contest);
35 return reply 'A required parameter was not supplied' if grep { !defined } $problem, $format, $prog;
36 return reply 'Maximum source size is 10KB' if length $prog > 25 * 1024;
37 return reply 'You must wait 30 seconds between jobs' unless time > lastjob ($r->user) + 30;
38 set_lastjob $r->user;
39
40 local $Gruntmaster::Data::contest = $contest if $contest;
41
42 my $job = push_job (
43 date => time,
44 problem => $problem,
45 user => $r->user,
46 defined $private ? (private => $private) : (),
47 defined $contest ? (contest => $contest, private => 1) : (),
48 filesize => length $prog,
49 extension => FORMAT_EXTENSION->{$format},
50 );
51
52 set_job_inmeta $job, {
53 files => {
54 prog => {
55 format => $format,
56 name => 'prog.' . FORMAT_EXTENSION->{$format},
57 content => $prog,
58 }
59 }
60 };
61
62 $contest //= '';
63 PUBLISH 'jobs', "$contest.$job";
64 [303, [Location => $r->path =~ s,/pb/\w+/submit$,/log/,r], ['']]
65 }
66
67 sub variants{ [[reply => 1, undef, undef, undef, undef, undef]] }
68
69 1
This page took 0.022169 seconds and 4 git commands to generate.