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