]> iEval git - gruntmaster-page.git/blame - lib/Plack/App/Gruntmaster/HTML.pm
Merge branch 'master' into newmc
[gruntmaster-page.git] / lib / Plack / App / Gruntmaster / HTML.pm
CommitLineData
3b69df7a
MG
1package Plack::App::Gruntmaster::HTML;
2use v5.14;
3use parent qw/Exporter/;
4our @EXPORT = qw/render render_article/;
5
6use File::Slurp qw/read_file/;
7use HTML::Seamstress;
8use POSIX qw//;
9use Data::Dumper qw/Dumper/;
10
11sub ftime ($) { POSIX::strftime '%c', localtime shift }
12sub literal ($) { HTML::Element::Library::super_literal shift // '' }
13
14sub HTML::Element::edit_href {
15 my ($self, $sub) = @_;
16 local $_ = $self->attr('href');
17 $sub->();
18 $self->attr(href => $_);
19}
20
21sub HTML::Element::iter3 {
22 my ($self, $data, $code) = @_;
23 my $orig = $self;
24 my $prev = $orig;
25 for my $el (@$data) {
26 my $current = $orig->clone;
27 $code->($el, $current);
28 $prev->postinsert($current);
29 $prev = $current;
30 }
31 $orig->detach;
32}
33
34sub HTML::Element::fid { shift->look_down(id => shift) }
28ec8060 35sub HTML::Element::fclass { shift->look_down(class => qr/\b$_[0]\b/) }
3b69df7a
MG
36
37sub HTML::Element::namedlink {
38 my ($self, $id, $name) = @_;
39 $name = $id unless $name =~ /[[:graph:]]/;
40 $self = $self->find('a');
41 $self->edit_href(sub {s/id/$id/});
42 $self->replace_content($name);
43}
44
4b3f09fe
MG
45my %page_cache;
46for (<tmpl/*>) {
47 my ($tmpl, $lang) = m,tmpl/(\w+)\.(\w+),;
48 my $builder = HTML::Seamstress->new;
49 $builder->ignore_unknown(0);
50 $page_cache{$tmpl, $lang} = $builder->parse_file($_);
51}
52
3b69df7a
MG
53sub render {
54 my ($tmpl, $lang, %args) = @_;
55 $lang //= 'en';
56 my $meat = _render($tmpl, $lang, %args);
57 _render('skel', $lang, %args, meat => $meat)
58}
59
60sub render_article {
6533844f 61 my ($art, $lang, %args) = @_;
3b69df7a
MG
62 $lang //= 'en';
63 my $title = read_file "a/$art.$lang.title";
64 my $meat = read_file "a/$art.$lang";
6533844f 65 _render('skel', $lang, title => $title , meat => $meat, %args)
3b69df7a
MG
66}
67
68sub _render {
69 my ($tmpl, $lang, %args) = @_;
4b3f09fe 70 my $tree = $page_cache{$tmpl, $lang}->clone or die "No such template/language combination: $tmpl/$lang\n";
3b69df7a
MG
71 $tree = $tree->guts unless $tmpl eq 'skel';
72 $tree->defmap(smap => \%args);
73 my $process = __PACKAGE__->can("process_$tmpl");
74 $process->($tree, %args) if $process;
6533844f
MG
75 $_->detach for $tree->look_down(static => $args{static} ? 'no' : 'yes');
76 $_->attr('static', undef) for $tree->look_down(sub {$_[0]->attr('static')});
f4154608 77 $_->attr('smap', undef) for $tree->look_down(sub {$_[0]->attr('defmap')});
3b69df7a
MG
78 $tree->as_HTML;
79}
80
81sub process_skel {
82 my ($tree, %args) = @_;
d6a46d2d 83 $tree->fid('logo')->replace_with(literal scalar read_file "mclogo.svg");
3b69df7a
MG
84 $tree->content_handler(
85 title => $args{title},
86 content => literal $args{meat});
87}
88
89sub process_us_entry {
90 my ($tree, %args) = @_;
91 $tree->fid($_)->attr('href', "/$_/?owner=$args{id}") for qw/log pb/;
f1c090e7 92 $tree->fid('track_user')->attr('data-user', $args{id});
9a8a3012
MG
93 my @solved = map { $_->{solved} ? ($_->{problem}) : () } @{$args{problems}};
94 my @attempted = map { !$_->{solved} ? ($_->{problem}) : () } @{$args{problems}};
95
96 my $pbiter = sub {
97 my ($data, $li) = @_;
98 $li->find('a')->namedlink($data);
99 };
100 $tree->fid('solved')->find('li')->iter3(\@solved, $pbiter);
101 $tree->fid('attempted')->find('li')->iter3(\@attempted, $pbiter);
102 $tree->fid('solved_count')->replace_content(scalar @solved);
103 $tree->fid('attempted_count')->replace_content(scalar @attempted);
104
105 my $ctiter = sub {
106 my ($data, $td) = @_;
dc6ca3bc 107 $td->fclass('contest')->namedlink($data->{contest}, $data->{contest_name});
9a8a3012
MG
108 $td->fclass('score')->replace_content($data->{score});
109 $td->fclass('rank')->replace_content($data->{rank});
110 };
111 $tree->find('table')->find('tbody')->find('tr')->iter3($args{contests}, $ctiter);
3b69df7a
MG
112}
113
114sub process_us {
115 my ($tree, %args) = @_;
c5ff0b09
MG
116 my $iter = sub {
117 my ($data, $tr) = @_;
118 $tr->fclass('user')->namedlink($data->{id}, $data->{name});
119 $tr->fclass($_)->replace_content($data->{$_}) for qw/solved attempted contests/;
120 };
121 $tree->find('tbody')->find('tr')->iter3($args{us}, $iter);
3b69df7a
MG
122}
123
124sub process_ct_entry {
125 my ($tree, %args) = @_;
126 $_->edit_href (sub {s/contest_id/$args{id}/}) for $tree->find('a');
f34b3eac 127 $tree->fid('editorial')->detach unless $args{finished};
3b69df7a 128 $tree->fid('links')->detach unless $args{started};
20777d84
MG
129 my $status = ($args{time} < $args{start} ? 'starts' : 'ends');
130 $tree->fclass('timer')->attr('data-stop', $status eq 'ends' ? $args{stop} : $args{start});
3b69df7a
MG
131 $tree->content_handler(
132 start => ftime $args{start},
133 stop => ftime $args{stop},
20777d84 134 status => $status,
3b69df7a 135 description => literal $args{description});
00398f5c 136 $tree->fid('ctcountdown')->detach if $args{time} >= $args{stop};
3b69df7a
MG
137}
138
139sub process_ct {
140 my ($tree, %args) = @_;
141 my $iter = sub {
142 my ($data, $tr) = @_;
143 $data->{$_} = ftime $data->{$_} for qw/start stop/;
144 $tr->hashmap(class => $data, [qw/name owner/]);
145 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
146 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
147 };
148 $args{$_} ? $tree->fid($_)->find('tbody')->find('tr')->iter3($args{$_}, $iter) : $tree->fid($_)->detach for qw/running pending finished/;
149}
150
151sub process_pb_entry {
152 my ($tree, %args) = @_;
153 $tree->fid('owner')->edit_href(sub{s/owner_id/$args{owner}/});
154 $tree->fid('job_log')->edit_href(sub{s/problem_id/$args{id}/});
e4d5bdf5 155 $tree->fid('solution')->edit_href(sub{s/problem_id/$args{id}/});
3b69df7a
MG
156 $tree->content_handler(
157 statement => literal $args{statement},
6eb88ef9 158 level => ucfirst $args{level},
3b69df7a
MG
159 author => $args{author},
160 owner => $args{owner_name} || $args{owner});
14582b6f
MG
161 if ($args{limits}) {
162 my @limits = (@{$args{limits}}, {format => 'Other', timeout => $args{timeout} });
163 @limits = map { sprintf '%s (%s)', @{$_}{qw/timeout format/} } @limits;
164 $tree->look_down(smap => 'timeout')->replace_content(join ', ', @limits);
165 }
9a4806b3 166 if ($args{contest_stop}) {
e4d5bdf5
MG
167 $tree->fid('solution')->detach;
168 $tree->fid('solution_modal')->detach;
b3da3730 169 $tree->fid('score')->replace_content($args{value});
20777d84 170 $tree->fid('countdown')->attr('data-stop' => $args{contest_stop});
9a4806b3 171 } else {
bca1707c 172 $tree->fid('job_log')->edit_href(sub{$_ .= "&private=$args{private}"}) if $args{private};
c016b644 173 $tree->fid('solution')->detach unless $args{solution};
9a4806b3 174 $_->detach for $tree->fclass('rc'); # requires contest
e4d5bdf5 175 $tree->fid('solution_modal')->fclass('modal-body')->replace_content(literal $args{solution});
9a4806b3 176 }
3b69df7a 177 if ($args{cansubmit}) {
a221db10 178 $tree->fid('nosubmit')->detach;
3b69df7a
MG
179 $tree->look_down(name => 'problem')->attr(value => $args{id});
180 my $contest = $tree->look_down(name => 'contest');
7e158d3c
MG
181 $contest->attr(value => $args{args}{contest}) if $args{args}{contest};
182 $contest->detach unless $args{args}{contest}
3b69df7a 183 } else {
a221db10 184 $tree->fid('nosubmit')->find('a')->edit_href(sub{s/id/$args{id}/});
3b69df7a
MG
185 $tree->fid('submit')->detach
186 }
187}
188
e4d5bdf5
MG
189sub process_sol {
190 my ($tree, %args) = @_;
191 $tree->content_handler(solution => literal $args{solution});
192}
193
3b69df7a
MG
194sub process_pb {
195 my ($tree, %args) = @_;
196 my $titer = sub {
197 my ($data, $tr) = @_;
198 $tr->set_child_content(class => 'author', $data->{author});
199 $tr->fclass('name')->namedlink($data->{id}, $data->{name});
200 $tr->fclass('name')->find('a')->edit_href(sub {$_ .= "?contest=$args{contest}"}) if $args{contest};
201 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
3994b2a7 202 $tr->find('td')->attr(class => $tr->find('td')->attr('class').' warning') if $data->{private} && !$args{contest};
3b69df7a
MG
203 };
204 my $iter = sub {
205 my ($data, $div) = @_;
206 $div->attr(id => $data);
207 $div->find('h2')->replace_content(ucfirst $data);
caafa703 208 $div->find('tbody')->find('tr')->iter3($args{$data}, $titer);
3b69df7a
MG
209 };
210 $tree->fid('beginner')->iter3([grep {$args{$_}} qw/beginner easy medium hard/], $iter);
89d8eeb7 211 $tree->fid('open-alert')->detach unless $args{contest};
3b69df7a
MG
212}
213
214sub process_log_entry {
215 my ($tree, %args) = @_;
435a869c
MG
216 $tree->fid('problem')->namedlink(@args{qw/problem problem_name/});
217 $tree->fid('owner')->namedlink(@args{qw/owner owner_name/});
218 $tree->fid('source')->namedlink("$args{id}.$args{extension}", sprintf '%.2fKB', $args{size}/1024);
219 if ($args{contest}) {
220 $tree->fid('contest')->namedlink(@args{qw/contest contest_name/});
221 $tree->fid('problem')->find('a')->edit_href(sub {$_.="?contest=$args{contest}"});
222 } else {
223 $tree->fid('contest')->left->detach;
224 $tree->fid('contest')->detach;
225 }
226
3b69df7a
MG
227 $args{errors} ? $tree->fid('errors')->find('pre')->replace_content($args{errors}) : $tree->fid('errors')->detach;
228 my $iter = sub {
229 my ($data, $tr) = @_;
230 $data->{time} = sprintf '%.4fs', $data->{time};
231 $tr->defmap(class => $data);
232 $tr->fclass('result_text')->attr(class => "r$data->{result}")
233 };
e1fab7d7
MG
234 $tree->fclass('result_text')->replace_content($args{result_text});
235 $tree->fclass('result_text')->attr(class => "r$args{result}");
435a869c 236 $args{results} ? $tree->fid('results')->find('tbody')->find('tr')->iter3($args{results}, $iter) : $tree->fid('results')->detach;
0f67fb90 237 $tree->fid('no_results')->detach if $tree->fid('results') || $tree->fid('errors');
3b69df7a
MG
238}
239
240sub process_log {
241 my ($tree, %args) = @_;
242 my $iter = sub {
243 my ($data, $tr) = @_;
244 $tr->fclass('id')->namedlink($data->{id});
245 $tr->fclass('problem')->namedlink($data->{problem}, $data->{problem_name});
7e158d3c 246 $tr->fclass('problem')->find('a')->edit_href(sub{$_ .= "?contest=$args{args}{contest}"}) if $args{args}{contest};
8d690af5
MG
247 $tr->fclass('contest')->namedlink($data->{contest}, $data->{contest_name}) if $data->{contest};
248 $tr->fclass('contest')->replace_content('None') unless $data->{contest};
3b69df7a 249 $tr->fclass('date')->replace_content(ftime $data->{date});
93ed6f84 250 $tr->fclass('source')->namedlink("$data->{id}.$data->{extension}", sprintf "%.2fKB %s", $data->{size}/1024, Plack::App::Gruntmaster::FORMAT_EXTENSION()->{$data->{format}});
3b69df7a
MG
251 $tr->fclass('owner')->namedlink($data->{owner}, $data->{owner_name});
252 $tr->fclass('result_text')->replace_content($data->{result_text});
253 $tr->fclass('result_text')->attr(class => "r$data->{result}");
a33e01dd 254 $tr->find('td')->attr(class => $tr->find('td')->attr('class').' warning') if $data->{private};
3b69df7a
MG
255 };
256 $tree->find('table')->find('tbody')->find('tr')->iter3($args{log}, $iter);
fddf958b
MG
257 $args{next_page} ? $tree->fclass('next')->namedlink($args{next_page}, 'Next') : $tree->fclass('next')->detach;
258 $args{previous_page} ? $tree->fclass('previous')->namedlink($args{previous_page}, 'Previous') : $tree->fclass('previous')->detach;
4a3952b2
MG
259 for my $cls (qw/next previous/) {
260 my $elem = $tree->fclass($cls);
261 next unless $elem;
262 delete $args{args}{page};
418101af 263 my $str = join '&', map { $_ . '=' . $args{args}{$_} } keys %{$args{args}};
8678e0dd 264 $elem->find('a')->edit_href(sub{s/$/&$str/}) if $str;
4a3952b2 265 }
3b69df7a
MG
266 $tree->fclass('current')->replace_content("Page $args{current_page} of $args{last_page}");
267}
268
269sub process_st {
270 my ($tree, %args) = @_;
271 $args{problems} //= [];
272 my $pbiter = sub {
273 my ($data, $th) = @_;
274 $th->attr(class => undef);
ebca729d 275 $th->namedlink(@$data);
b7aa9f38 276 $th->find('a')->edit_href(sub{s/$/?contest=$args{args}{contest}/});
3b69df7a
MG
277 };
278 $tree->fclass('problem')->iter3($args{problems}, $pbiter);
279 my $iter = sub {
280 my ($st, $tr) = @_;
281 $tr->set_child_content(class => 'rank', $st->{rank});
282 $tr->set_child_content(class => 'score', $st->{score});
dc7e3b7c 283 $tr->fclass('user')->namedlink($st->{user}, $st->{user_name});
3b69df7a 284 my $pbscore = $tr->fclass('pbscore');
3b69df7a
MG
285 $pbscore->iter($pbscore => @{$st->{scores}});
286 };
287 $tree->find('tbody')->find('tr')->iter3($args{st}, $iter);
288}
645cfb7d
MG
289
290sub process_ed {
291 my ($tree, %args) = @_;
00c887ce 292 $tree->content_handler(editorial => literal $args{editorial});
645cfb7d
MG
293 my $iter = sub {
294 my ($data, $div) = @_;
295 $div->set_child_content(class => 'value', $data->{value});
296 $div->set_child_content(class => 'solution', literal $data->{solution});
297 $div->fclass('problem')->namedlink($data->{id}, $data->{name});
298 };
c7f959c0 299 my @pb = map { @{$args{$_} // []} } qw/beginner easy medium hard/;
645cfb7d
MG
300 $tree->fclass('well')->iter3(\@pb, $iter);
301}
4b3f09fe
MG
302
3031;
304__END__
This page took 0.105509 seconds and 4 git commands to generate.