Update version
[gruntmaster-page.git] / lib / Gruntmaster / Page / Generic.pm
CommitLineData
fdbf59e5
MG
1package Gruntmaster::Page::Generic;
2
3use 5.014000;
4use strict;
5use warnings;
e046c73a 6our $VERSION = '5999.000_001';
fdbf59e5
MG
7
8use Gruntmaster::Data;
9use Gruntmaster::Page::Base;
5c6aea93 10use JSON qw/encode_json decode_json/;
fdbf59e5
MG
11
12sub hgetall {
13 my $hash = shift;
14 my $cp = $Gruntmaster::Data::contest ? "contest.$Gruntmaster::Data::contest." : '';
15 map { { id => $_, HGETALL "$cp$hash.$_" } } SMEMBERS "$cp$hash"
16}
17
18sub putsym {
19 my ($key, $value) = @_;
20 no strict 'refs';
21 *{"$key"} = $value;
22}
23
24sub makepkg {
25 my ($pkg, $id, $title) = @_;
26 my $fn = $pkg =~ s,::,/,gr;
27 return if $INC{"$fn.pm"};
28 $INC{"$fn.pm"} = 1;
29 Gruntmaster::Page::Base->import_to($pkg, $id, $title);
5c6aea93 30 1
fdbf59e5
MG
31}
32
81cce380
MG
33sub list {
34 my ($thing, $lang, $env, $ct) = @_;
35 my %thing = %$thing;
36 undef $ct unless $thing{contest};
37 debug $env => "Contest is $ct";
38 local $Gruntmaster::Data::contest = $ct if $ct;
39 my @thing = hgetall $thing{hash};
40 @thing = map { $thing{mangle}->(); $_ } @thing if exists $thing{mangle};
41 @thing = grep { $thing{choose}->() } @thing if exists $thing{choose};
42 @thing = sort { $thing{sortby}->() } @thing if exists $thing{sortby};
43 my %params;
44 $thing{group} //= sub { $thing{id} };
45 for (@thing) {
46 my $group = $thing{group}->();
47 $params{$group} //= [];
48 push $params{$group}, $_
fdbf59e5 49 }
81cce380 50 wantarray ? %params : \%params
fdbf59e5
MG
51}
52
81cce380
MG
53sub entry {
54 my ($thing, $lang, $env, $id, $ct) = @_;
55 my %thing = %$thing;
56 ($id, $ct) = ($ct, $id) if $thing{contest};
57 local $Gruntmaster::Data::contest = $ct if $ct;
58 debug $env => "Hash is $thing{hash} and id is $id";
59 my %params = HGETALL "$thing{hash}.$id";
60 $thing{mangle}->(local $_ = \%params) if exists $thing{mangle};
61 wantarray ? %params : \%params
fdbf59e5
MG
62}
63
81cce380
MG
64sub headers ($) { ['Content-Type' => 'application/json', 'Cache-Control' => 'max-age=' . $_[0]->max_age] }
65
fdbf59e5
MG
66sub create_thing {
67 my %thing = @_;
68 my $ucid = ucfirst $thing{id};
69 my $pkg = "Gruntmaster::Page::$ucid";
70
81cce380
MG
71 putsym "${pkg}::_generate", sub { $_[1]->param(list \%thing, @_[2..$#_]) } if makepkg $pkg, @thing{qw/id title/};
72 putsym "${pkg}::Entry::_generate", sub { $_[1]->param(entry \%thing, @_[2..$#_]) } if makepkg "${pkg}::Entry", "$thing{id}_entry", '<tmpl_var name>';
73 putsym "${pkg}::Read::generate", sub { [200, headers shift, [encode_json list \%thing, @_]] } if makepkg "${pkg}::Read";
74 putsym "${pkg}::Entry::Read::generate", sub { [200, headers shift, [encode_json entry \%thing, @_]] } if makepkg "${pkg}::Entry::Read";
fdbf59e5
MG
75}
76
77sub params;
78sub contest;
79sub choose (&);
80sub sortby (&);
81sub group (&);
82sub mangle (&);
fdbf59e5
MG
83
84sub thing (&){
85 my %thing;
86 no strict 'refs';
87 local *{"params"} = sub { @thing{qw/id hash title/} = @_ };
88 local *{"choose"} = sub { $thing{choose} = shift };
89 local *{"sortby"} = sub { $thing{sortby} = shift };
90 local *{"mangle"} = sub { $thing{mangle} = shift };
91 local *{"group"} = sub { $thing{group} = shift };
92 local *{"contest"} = sub { $thing{contest} = 1 };
fdbf59e5
MG
93 use strict 'refs';
94
95 shift->();
96 create_thing %thing
97}
98
99##################################################
100
101thing {
102 params qw/us user Users/;
103 choose { $_->{name} =~ /\w/ };
104 sortby { lc $a->{name} cmp lc $b->{name} };
105};
106
107thing {
108 params qw/pb problem Problems/;
109 contest;
110 sortby { $a->{name} cmp $b->{name} };
111 group { $_->{level} };
e3ab4b03 112 mangle { $_->{owner_name} = do { local $Gruntmaster::Data::contest; user_name $_->{owner} } }
fdbf59e5
MG
113};
114
115thing {
116 params qw/ct contest Contests/;
d9f11916 117 sortby { $b->{start} <=> $a->{start} };
fdbf59e5 118 group { time < $_->{start} ? 'pending' : time > $_->{end} ? 'finished' : 'running' };
e3ab4b03 119 mangle { $_->{started} = time >= $_->{start}; $_->{owner_name} = do { local $Gruntmaster::Data::contest; user_name $_->{owner} } };
fdbf59e5
MG
120};
121
122thing {
123 params qw/log job/, 'Job log';
124 contest;
e3ab4b03 125 mangle { $_->{results} &&= decode_json $_->{results}; $_->{user_name} = do { local $Gruntmaster::Data::contest; user_name $_->{user} } }
fdbf59e5
MG
126};
127
1281
This page took 0.019937 seconds and 4 git commands to generate.