X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=cdef1df1aa9f4fbb167bd40d6ebc10b6760e7f8a;hb=a73373457a03facd0c96632a9c19150eda3f85f3;hp=d276f558b0b38313440da4cc5e850fa8a30caec7;hpb=fe78f0c128c35e68e65850b02057997bad6717fe;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index d276f55..cdef1df 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -3,60 +3,48 @@ package Gruntmaster::Page::Log; use 5.014000; use strict; use warnings; -use parent qw/Exporter/; -our @EXPORT_OK = qw/generate/; +use Gruntmaster::Page::Base log => 'Job log'; +our @ISA = qw/Gruntmaster::Page::Base/; our $VERSION = '0.001'; -use constant TITLE => 'Job log'; +use constant PAGE_SIZE => 10; -use Fcntl qw/:flock/; -use HTML::Template::Compiled; -use IO::File; -use POSIX qw/strftime/; -use YAML::Any qw/LoadFile/; -use Gruntmaster::Page qw/header footer/; - -my %templates = ( - en => <<'HTML', +use constant TEMPLATES => { + en => <<'HTML', -
IDProblemDateSizeUserResult
- +
+ - data-private> + data-private>
HTML -); +}; + +sub _generate{ + my ($self, $htc, $path, $lang) = @_; -$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates; -$templates{$_} .= footer $_ for keys %templates; + $path =~ m,^(?:ct/([^/]+)/)?log/(\w+)\.html$,; + local $Gruntmaster::Data::contest = $1 if $1; + my $pages = POSIX::ceil (jobcard / PAGE_SIZE); + my $page = $2 eq 'index' ? $pages : $2; -sub generate{ - my ($path, $lang) = @_; - $path =~ s,/index\.html$,,; - my $template = $templates{$lang}; - my $htc = HTML::Template::Compiled->new(scalarref => \$template); - IO::File->new(">$path/meta.yml")->close unless -f "$path/meta.yml"; - flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH; - my $meta = LoadFile "$path/meta.yml"; - my @log = sort { $b->{id} <=> $a->{id} } map { - my $meta = LoadFile "$path/$_/meta.yml"; - +{ id => $_, - date => strftime ('%c' => localtime $meta->{date}), - user => $meta->{user}, - result => $meta->{result}, - name => $meta->{name}, - problem => $meta->{problem}, - filename => $meta->{files}{prog}{name}, - (defined $meta->{private} ? (private => $meta->{private}) : ()), - size => sprintf ("%.2f KiB", (-s "$path/$_/in/" . $meta->{files}{prog}{name}) / 1024), - result_text => $meta->{result_text}} } 1 .. $meta->{last}; - $htc->param(log => \@log); - $htc->output + my @log = sort { $b->{id} <=> $a->{id} } map +{ + id => $_, + (job_private() ? (private => job_private) : ()), + date => (job_date() ? strftime ('%c' => localtime job_date) : '?'), + extension => job_extension, + name => problem_name job_problem, + problem => job_problem, + result => job_result, + result_text => job_result_text, + size => sprintf ("%.2f KiB", job_filesize() / 1024), + user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. ($page == $pages ? jobcard : $page * PAGE_SIZE); + $htc->param(log => \@log); } 1