X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FPb%2FEntry.pm;h=8b770efe3a24bcc5f193675171a685e364480227;hb=277f05a743e67e24327bded2a851a8cb998a55d0;hp=53cc2102babd8a53c1a4ba73564906be0d924742;hpb=832cb45e325364ca1de645a2256efa69284fcf06;p=gruntmaster-page.git diff --git a/lib/Gruntmaster/Page/Pb/Entry.pm b/lib/Gruntmaster/Page/Pb/Entry.pm index 53cc210..8b770ef 100644 --- a/lib/Gruntmaster/Page/Pb/Entry.pm +++ b/lib/Gruntmaster/Page/Pb/Entry.pm @@ -3,67 +3,37 @@ package Gruntmaster::Page::Pb::Entry; use 5.014000; use strict; use warnings; -use parent qw/Exporter/; -our @EXPORT_OK = qw/generate/; +use Gruntmaster::Page::Base pb_entry => ''; +our @ISA = qw/Gruntmaster::Page::Base/; our $VERSION = '0.001'; -use Fcntl qw/:flock/; -use HTML::Template::Compiled; -use IO::File; -use POSIX qw/strftime/; -use YAML::Any qw/LoadFile/; -use File::Basename qw/fileparse/; -use File::Slurp qw/slurp/; -use Gruntmaster::Page::Common qw/header footer/; - -use constant FORMATS => [qw/CPP/]; -use constant TITLE => ''; - -my %templates = ( - en => <<'HTML', - - - -

Submit solution

-
- - - - - - - - -HTML -); - -$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates; -$templates{$_} .= footer $_ for keys %templates; - -sub generate{ - my ($path, $lang) = @_; - my $contest; - $contest = $1 if $path =~ m,ct/([^/]*)/,; - my $id = ($path =~ m,pb/([^/]*)/index,)[0]; - $path =~ s,/index\.html$,,; - my $template = $templates{$_[1]}; - my $htc = HTML::Template::Compiled->new(scalarref => \$template); - flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH; - my $meta = LoadFile "$path/meta.yml"; - - $htc->param(cansubmit => 1); - if (defined $contest) { - my $meta = LoadFile "ct/$contest/meta.yml"; - $htc->param(cansubmit => time >= $meta->{start} && time <= $meta->{end}); - $htc->param(contest => $contest); - } - $htc->param(formats => FORMATS); - $htc->param(id => $id); - $htc->param(name => $meta->{name}); - $htc->param(statement => scalar slurp "$path/statement.$lang"); - $htc->output +use constant FORMATS => [qw/C CPP JAVA PERL PYTHON/]; + +sub _generate{ + my ($self, $htc, $lang, $env, $contest, $id) = @_; + debug $env => "language is '$lang', contest is '$contest', id is '$id'"; + my $user = $env->{REMOTE_USER}; + if ($contest && $user) { + local $Gruntmaster::Data::contest = $contest; + mark_open $id, $user; + debug $env => "Marking problem $id of contest $contest open by $user"; + } + + $htc->param(cansubmit => 1); + if ($contest) { + $htc->param(cansubmit => time <= contest_end $contest); + $htc->param(contest => $contest); + } + $htc->param(formats => FORMATS); + $htc->param(id => $id); + local $Gruntmaster::Data::contest = $contest if $contest; + $htc->param(name => problem_name $id); + $htc->param(author => problem_author $id); + $htc->param(owner => problem_owner $id); + $htc->param(statement => problem_statement $id); } +sub vary { 'Authorization' } +sub max_age { 600 } + 1