]> iEval git - gruntmaster-data.git/blame - lib/Gruntmaster/Data.pm
Add editorial and description columns
[gruntmaster-data.git] / lib / Gruntmaster / Data.pm
CommitLineData
4ed3f8e7 1use utf8;
bbf8209c 2package Gruntmaster::Data;
4ed3f8e7
MG
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7use strict;
bbf8209c 8use warnings;
014ee8a6 9
4ed3f8e7
MG
10use base 'DBIx::Class::Schema';
11
12__PACKAGE__->load_namespaces;
014ee8a6 13
f7386aab 14
4ed3f8e7
MG
15# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-03-05 13:11:39
16# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dAEmtAexvUaNXLgYz2rNEg
17
edfc5928 18use parent qw/Exporter/;
9e130d3b 19our $VERSION = '5999.000_013';
de7226ca 20our @EXPORT = qw/purge/; ## no critic (ProhibitAutomaticExportation)
4ed3f8e7
MG
21
22use Lingua::EN::Inflect qw/PL_N/;
91203bd5 23use JSON::MaybeXS qw/decode_json/;
edfc5928 24use HTTP::Tiny;
3473324b 25use PerlX::Maybe qw/maybe/;
4ed3f8e7 26use Sub::Name qw/subname/;
014ee8a6 27
e890b3ae 28use constant PROBLEM_PUBLIC_COLUMNS => [qw/id author writer level name owner private timeout olimit value/];
73243865 29use constant USER_PUBLIC_COLUMNS => [qw/id admin name town university country level/];
de625c9b
MG
30use constant JOBS_PER_PAGE => 10;
31
014ee8a6 32sub dynsub{
fb6a4e3d 33 our ($name, $sub) = @_;
dcd72991 34 no strict 'refs'; ## no critic (Strict)
fb6a4e3d 35 *$name = subname $name => $sub
014ee8a6
MG
36}
37
38BEGIN {
adb42d4d 39 for my $rs (qw/contest contest_problem job open problem user problem_status contest_status/) {
4ed3f8e7 40 my $rsname = ucfirst $rs;
dcd72991 41 $rsname =~ s/_([a-z])/\u$1/gs;
4ed3f8e7
MG
42 dynsub PL_N($rs) => sub { $_[0]->resultset($rsname) };
43 dynsub $rs => sub { $_[0]->resultset($rsname)->find($_[1]) };
014ee8a6
MG
44 }
45}
46
de625c9b 47sub user_list {
c9311d50
MG
48 my ($self) = @_;
49 my $rs = $self->users->search(undef, {columns => USER_PUBLIC_COLUMNS} );
50 my (%solved, %attempted, %contests);
51
52 for my $row ($self->problem_statuses->all) {
53 $solved {$row->rawowner}++ if $row->solved;
54 $attempted{$row->rawowner}++ unless $row->solved;
55 }
56 $contests{$_->rawowner}++ for $self->contest_statuses->all;
57
1db27a21 58 [ sort { $b->{solved} <=> $a->{solved} or $b->{attempted} <=> $a->{attempted} } map { ## no critic (ProhibitReverseSort)
c9311d50
MG
59 my $id = $_->id;
60 +{ $_->get_columns,
61 solved => ($solved{$id} // 0),
62 attempted => ($attempted{$id} // 0),
63 contests => ($contests{$id} // 0) }
281c3952 64 } $rs->all ]
de625c9b
MG
65}
66
67sub user_entry {
68 my ($self, $id) = @_;
adb42d4d 69 my $user = $self->users->find($id, {columns => USER_PUBLIC_COLUMNS, prefetch => [qw/problem_statuses contest_statuses/]});
197d1959
MG
70 my @problems = map { {problem => $_->get_column('problem'), solved => $_->solved} } $user->problem_statuses->search(undef, {order_by => 'problem'});
71 my @contests = map { {contest => $_->contest->id, contest_name => $_->contest->name, rank => $_->rank, score => $_->score} } $user->contest_statuses->search(undef, {prefetch => 'contest', order_by => 'contest.start DESC'});
adb42d4d 72 +{ $user->get_columns, problems => \@problems, contests => \@contests }
de625c9b
MG
73}
74
75sub problem_list {
76 my ($self, %args) = @_;
4db1f725
MG
77 my @columns = @{PROBLEM_PUBLIC_COLUMNS()};
78 push @columns, 'solution' if $args{solution} && $args{contest} && !$self->contest($args{contest})->is_running;
79 my $rs = $self->problems->search(undef, {order_by => 'me.name', columns => \@columns, prefetch => 'owner'});
d4c5bf27 80 $rs = $rs->search({-or => ['contest_problems.contest' => undef, 'contest.stop' => {'<=', time}], 'me.private' => 0}, {join => {'contest_problems' => 'contest'}, distinct => 1}) unless $args{contest} || $args{private};
de625c9b
MG
81 $rs = $rs->search({'contest_problems.contest' => $args{contest}}, {join => 'contest_problems'}) if $args{contest};
82 $rs = $rs->search({'me.owner' => $args{owner}}) if $args{owner};
83 my %params;
84 $params{contest} = $args{contest} if $args{contest};
85 for ($rs->all) {
86 $params{$_->level} //= [];
35596ea8 87 push @{$params{$_->level}}, {$_->get_columns, owner_name => $_->owner->name} ;
de625c9b
MG
88 }
89 \%params
90}
91
92sub problem_entry {
93 my ($self, $id, $contest, $user) = @_;
de625c9b 94 my $running = $contest && $self->contest($contest)->is_running;
4db1f725
MG
95 my @columns = @{PROBLEM_PUBLIC_COLUMNS()};
96 push @columns, 'statement';
97 push @columns, 'solution' unless $running;
98 my $pb = $self->problems->find($id, {columns => \@columns, prefetch => 'owner'});
9396be04
MG
99 my $open;
100 $open = $self->opens->find_or_create({
101 contest => $contest,
102 problem => $id,
103 owner => $user,
104 time => time,
105 }) if $running;
2431260b 106 $contest &&= $self->contest($contest);
9396be04
MG
107 +{
108 $pb->get_columns,
109 owner_name => $pb->owner->name,
1ecf0766 110 cansubmit => !$contest || !$contest->is_finished,
9396be04
MG
111 $running ? (
112 contest_start => $contest->start,
113 contest_stop => $contest->stop,
114 open_time => $open->time
115 ) : (),
116 }
de625c9b
MG
117}
118
119sub contest_list {
120 my ($self, %args) = @_;
121 my $rs = $self->contests->search(undef, {order_by => {-desc => 'start'}, prefetch => 'owner'});
122 $rs = $rs->search({owner => $args{owner}}) if $args{owner};
123 my %params;
124 for ($rs->all) {
125 my $state = $_->is_pending ? 'pending' : $_->is_running ? 'running' : 'finished';
126 $params{$state} //= [];
b3cf23ae 127 push @{$params{$state}}, { $_->get_columns, owner_name => $_->owner->name };
de625c9b
MG
128 }
129 \%params
130}
131
132sub contest_entry {
133 my ($self, $id) = @_;
134 my $ct = $self->contest($id);
a11202e4 135 +{ $ct->get_columns, started => !$ct->is_pending, finished => $ct->is_finished, owner_name => $ct->owner->name }
de625c9b
MG
136}
137
138sub job_list {
139 my ($self, %args) = @_;
140 $args{page} //= 1;
4adba835 141 my $rs = $self->jobs->search(undef, {order_by => {-desc => 'me.id'}, prefetch => ['problem', 'owner', 'contest'], rows => JOBS_PER_PAGE, page => $args{page}});
9d16980e 142 $rs = $rs->search({contest => $args{contest} || undef}) if exists $args{contest};
d4c5bf27
MG
143 $rs = $rs->search({'me.private'=> 0}) unless $args{private};
144 $rs = $rs->search({'me.owner' => $args{owner}}) if $args{owner};
d4c5bf27 145 $rs = $rs->search({problem => $args{problem}}) if $args{problem};
3473324b
MG
146 return {
147 log => [map {
148 my %params = $_->get_columns;
149 $params{owner_name} = $_->owner->name;
150 $params{problem_name} = $_->problem->name;
4adba835 151 $params{contest_name} = $_->contest->name if $params{contest};
3473324b
MG
152 $params{results} &&= decode_json $params{results};
153 $params{size} = length $params{source};
154 delete $params{source};
155 \%params
156 } $rs->all],
157 current_page => $rs->pager->current_page,
158 maybe previous_page => $rs->pager->previous_page,
159 maybe next_page => $rs->pager->next_page,
160 maybe last_page => $rs->pager->last_page,
161 }
de625c9b
MG
162}
163
164sub job_entry {
165 my ($self, $id) = @_;
7d499cdd 166 my $job = $self->jobs->find($id, {prefetch => ['problem', 'owner', 'contest']});
de625c9b
MG
167 my %params = $job->get_columns;
168 $params{owner_name} = $job->owner->name;
169 $params{problem_name} = $job->problem->name;
7d499cdd 170 $params{contest_name} = $job->contest->name if $params{contest};
de625c9b
MG
171 $params{results} &&= decode_json $params{results};
172 $params{size} = length $params{source};
173 delete $params{source};
174 \%params
175}
176
adb42d4d
MG
177sub update_status {
178 my ($self) = @_;
c314c866 179 my @jobs = $self->jobs->search({'me.private' => 0}, {cache => 1, prefetch => 'problem'})->all;
a2aa46e6 180
27a32e4b 181 my %private;
adb42d4d 182 my %hash;
64bc7dfb 183 for (@jobs) {
27a32e4b
MG
184 my $pb = $_->get_column('problem');
185 $private{$pb} //= $_->problem->is_private;
9a24a777 186 next if $private{$pb};
95594d6d 187 $hash{$pb, $_->get_column('owner')} = [$_->id, $_->result ? 0 : 1];
64bc7dfb
MG
188 }
189
adb42d4d
MG
190 my @problem_statuses = map { [split ($;), @{$hash{$_}} ] } keys %hash;
191
192 my @contest_statuses = map {
193 my $contest = $_->id;
751c70b5 194 map { [$contest, $_->{user}, $_->{score}, $_->{rank}] } $_->standings
adb42d4d
MG
195 } $self->contests->all;
196
197 my $txn = sub {
198 $self->problem_statuses->delete;
199 $self->problem_statuses->populate([[qw/problem owner job solved/], @problem_statuses]);
200 $self->contest_statuses->delete;
201 $self->contest_statuses->populate([[qw/contest owner score rank/], @contest_statuses]);
202 };
203
204 $self->txn_do($txn);
205}
206
edfc5928
MG
207my @PURGE_HOSTS = exists $ENV{PURGE_HOSTS} ? split ' ', $ENV{PURGE_HOSTS} : ();
208my $ht = HTTP::Tiny->new;
209
de7226ca
MG
210sub purge {
211 $ht->request(PURGE => "http://$_$_[0]") for @PURGE_HOSTS;
212}
edfc5928 213
f7386aab 2141;
4a8747ef
MG
215
216__END__
217
218=encoding utf-8
219
220=head1 NAME
221
222Gruntmaster::Data - Gruntmaster 6000 Online Judge -- database interface and tools
223
224=head1 SYNOPSIS
225
226 my $db = Gruntmaster::Data->connect('dbi:Pg:');
cbb36c78
MG
227
228 my $problem = $db->problem('my_problem');
229 $problem->update({timeout => 2.5}); # Set time limit to 2.5 seconds
230 $problem->rerun; # And rerun all jobs for this problem
231
232 # ...
233
234 my $contest = $db->contests->create({ # Create a new contest
235 id => 'my_contest',
236 name => 'My Awesome Contest',
237 start => time + 100,
238 end => time + 1900,
239 });
240 $db->contest_problems->create({ # Add a problem to the contest
241 contest => 'my_contest',
242 problem => 'my_problem',
243 });
244
245 say 'The contest has not started yet' if $contest->is_pending;
246
247 # ...
248
249 my @jobs = $db->jobs->search({contest => 'my_contest', owner => 'MGV'})->all;
250 $_->rerun for @jobs; # Rerun all jobs sent by MGV in my_contest
4a8747ef
MG
251
252=head1 DESCRIPTION
253
cbb36c78
MG
254Gruntmaster::Data is the interface to the Gruntmaster 6000 database. Read the L<DBIx::Class> documentation for usage information.
255
256In addition to the typical DBIx::Class::Schema methods, this module contains several convenience methods:
257
258=over
259
260=item contests
261
262Equivalent to C<< $schema->resultset('Contest') >>
263
264=item contest_problems
265
266Equivalent to C<< $schema->resultset('ContestProblem') >>
267
268=item jobs
269
270Equivalent to C<< $schema->resultset('Job') >>
271
272=item problems
273
274Equivalent to C<< $schema->resultset('Problem') >>
275
276=item users
277
278Equivalent to C<< $schema->resultset('User') >>
279
280=item contest($id)
281
282Equivalent to C<< $schema->resultset('Contest')->find($id) >>
283
284=item job($id)
285
286Equivalent to C<< $schema->resultset('Job')->find($id) >>
287
288=item problem($id)
289
290Equivalent to C<< $schema->resultset('Problem')->find($id) >>
291
292=item user($id)
293
294Equivalent to C<< $schema->resultset('User')->find($id) >>
295
de625c9b
MG
296=item user_list
297
298Returns a list of users as an arrayref containing hashrefs.
299
300=item user_entry($id)
301
302Returns a hashref with information about the user $id.
303
304=item problem_list([%args])
305
306Returns a list of problems grouped by level. A hashref with levels as keys.
307
308Takes the following arguments:
309
310=over
311
312=item owner
313
314Only show problems owned by this user
315
316=item contest
317
318Only show problems in this contest
319
320=back
321
322=item problem_entry($id, [$contest, $user])
323
324Returns a hashref with information about the problem $id. If $contest and $user are present, problem open data is updated.
325
326=item contest_list([%args])
327
328Returns a list of contests grouped by state. A hashref with the following keys:
329
330=over
331
332=item pending
333
334An arrayref of hashrefs representing pending contests
335
336=item running
337
338An arrayref of hashrefs representing running contests
339
340=item finished
341
342An arrayref of hashrefs representing finished contests
343
344=back
345
346Takes the following arguments:
347
348=over
349
350=item owner
351
352Only show contests owned by this user.
353
354=back
355
356=item contest_entry($id)
357
358Returns a hashref with information about the contest $id.
359
360=item job_list([%args])
361
362Returns a list of jobs as an arrayref containing hashrefs. Takes the following arguments:
363
364=over
365
366=item owner
367
368Only show jobs submitted by this user.
369
370=item contest
371
372Only show jobs submitted in this contest.
373
374=item problem
375
376Only show jobs submitted for this problem.
377
378=item page
379
380Show this page of results. Defaults to 1. Pages have 10 entries, and the first page has the most recent jobs.
381
382=back
383
384=item job_entry($id)
385
386Returns a hashref with information about the job $id.
387
cbb36c78 388=back
4a8747ef
MG
389
390=head1 AUTHOR
391
392Marius Gavrilescu E<lt>marius@ieval.roE<gt>
393
394=head1 COPYRIGHT AND LICENSE
395
396Copyright (C) 2014 by Marius Gavrilescu
397
9d2e740e
MG
398This library is free software; you can redistribute it and/or modify
399it under the same terms as Perl itself, either Perl version 5.18.1 or,
400at your option, any later version of Perl 5 you may have available.
4a8747ef
MG
401
402
403=cut
This page took 0.084853 seconds and 4 git commands to generate.