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