]> iEval git - gruntmaster-data.git/blame - lib/Gruntmaster/Data.pm
Add documentation for gruntmaster-problem check
[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'});
aadc8d86 82 $rs = $rs->search({'private' => 0}) 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;
e340417c 86 $params{contest} = $args{contest} if $args{contest} && $self->contest($args{contest})->is_running;
de625c9b
MG
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};
02844430 148 $rs = $rs->search({result => $args{result}}) if defined $args{result};
3473324b
MG
149 return {
150 log => [map {
151 my %params = $_->get_columns;
152 $params{owner_name} = $_->owner->name;
153 $params{problem_name} = $_->problem->name;
4adba835 154 $params{contest_name} = $_->contest->name if $params{contest};
3473324b
MG
155 $params{results} &&= decode_json $params{results};
156 $params{size} = length $params{source};
157 delete $params{source};
158 \%params
159 } $rs->all],
160 current_page => $rs->pager->current_page,
161 maybe previous_page => $rs->pager->previous_page,
162 maybe next_page => $rs->pager->next_page,
163 maybe last_page => $rs->pager->last_page,
164 }
de625c9b
MG
165}
166
167sub job_entry {
168 my ($self, $id) = @_;
7d499cdd 169 my $job = $self->jobs->find($id, {prefetch => ['problem', 'owner', 'contest']});
de625c9b
MG
170 my %params = $job->get_columns;
171 $params{owner_name} = $job->owner->name;
172 $params{problem_name} = $job->problem->name;
7d499cdd 173 $params{contest_name} = $job->contest->name if $params{contest};
de625c9b
MG
174 $params{results} &&= decode_json $params{results};
175 $params{size} = length $params{source};
176 delete $params{source};
177 \%params
178}
179
adb42d4d
MG
180sub update_status {
181 my ($self) = @_;
dbbf61be 182 my @jobs = $self->jobs->search({'me.private' => 0}, {cache => 1, prefetch => 'problem', order_by => 'me.id'})->all;
a2aa46e6 183
27a32e4b 184 my %private;
adb42d4d 185 my %hash;
64bc7dfb 186 for (@jobs) {
27a32e4b 187 my $pb = $_->get_column('problem');
5657ea00 188 $private{$pb} //= $_->problem->private;
9a24a777 189 next if $private{$pb};
95594d6d 190 $hash{$pb, $_->get_column('owner')} = [$_->id, $_->result ? 0 : 1];
64bc7dfb
MG
191 }
192
adb42d4d
MG
193 my @problem_statuses = map { [split ($;), @{$hash{$_}} ] } keys %hash;
194
195 my @contest_statuses = map {
196 my $contest = $_->id;
751c70b5 197 map { [$contest, $_->{user}, $_->{score}, $_->{rank}] } $_->standings
adb42d4d
MG
198 } $self->contests->all;
199
200 my $txn = sub {
201 $self->problem_statuses->delete;
202 $self->problem_statuses->populate([[qw/problem owner job solved/], @problem_statuses]);
203 $self->contest_statuses->delete;
204 $self->contest_statuses->populate([[qw/contest owner score rank/], @contest_statuses]);
205 };
206
207 $self->txn_do($txn);
208}
209
edfc5928
MG
210my @PURGE_HOSTS = exists $ENV{PURGE_HOSTS} ? split ' ', $ENV{PURGE_HOSTS} : ();
211my $ht = HTTP::Tiny->new;
212
de7226ca
MG
213sub purge {
214 $ht->request(PURGE => "http://$_$_[0]") for @PURGE_HOSTS;
215}
edfc5928 216
f7386aab 2171;
4a8747ef
MG
218
219__END__
220
221=encoding utf-8
222
223=head1 NAME
224
225Gruntmaster::Data - Gruntmaster 6000 Online Judge -- database interface and tools
226
227=head1 SYNOPSIS
228
229 my $db = Gruntmaster::Data->connect('dbi:Pg:');
cbb36c78
MG
230
231 my $problem = $db->problem('my_problem');
232 $problem->update({timeout => 2.5}); # Set time limit to 2.5 seconds
233 $problem->rerun; # And rerun all jobs for this problem
234
235 # ...
236
237 my $contest = $db->contests->create({ # Create a new contest
238 id => 'my_contest',
239 name => 'My Awesome Contest',
240 start => time + 100,
241 end => time + 1900,
242 });
243 $db->contest_problems->create({ # Add a problem to the contest
244 contest => 'my_contest',
245 problem => 'my_problem',
246 });
247
248 say 'The contest has not started yet' if $contest->is_pending;
249
250 # ...
251
252 my @jobs = $db->jobs->search({contest => 'my_contest', owner => 'MGV'})->all;
253 $_->rerun for @jobs; # Rerun all jobs sent by MGV in my_contest
4a8747ef
MG
254
255=head1 DESCRIPTION
256
cbb36c78
MG
257Gruntmaster::Data is the interface to the Gruntmaster 6000 database. Read the L<DBIx::Class> documentation for usage information.
258
259In addition to the typical DBIx::Class::Schema methods, this module contains several convenience methods:
260
261=over
262
263=item contests
264
265Equivalent to C<< $schema->resultset('Contest') >>
266
267=item contest_problems
268
269Equivalent to C<< $schema->resultset('ContestProblem') >>
270
271=item jobs
272
273Equivalent to C<< $schema->resultset('Job') >>
274
275=item problems
276
277Equivalent to C<< $schema->resultset('Problem') >>
278
279=item users
280
281Equivalent to C<< $schema->resultset('User') >>
282
283=item contest($id)
284
285Equivalent to C<< $schema->resultset('Contest')->find($id) >>
286
287=item job($id)
288
289Equivalent to C<< $schema->resultset('Job')->find($id) >>
290
291=item problem($id)
292
293Equivalent to C<< $schema->resultset('Problem')->find($id) >>
294
295=item user($id)
296
297Equivalent to C<< $schema->resultset('User')->find($id) >>
298
de625c9b
MG
299=item user_list
300
301Returns a list of users as an arrayref containing hashrefs.
302
303=item user_entry($id)
304
305Returns a hashref with information about the user $id.
306
307=item problem_list([%args])
308
309Returns a list of problems grouped by level. A hashref with levels as keys.
310
311Takes the following arguments:
312
313=over
314
315=item owner
316
317Only show problems owned by this user
318
319=item contest
320
321Only show problems in this contest
322
323=back
324
325=item problem_entry($id, [$contest, $user])
326
327Returns a hashref with information about the problem $id. If $contest and $user are present, problem open data is updated.
328
329=item contest_list([%args])
330
331Returns a list of contests grouped by state. A hashref with the following keys:
332
333=over
334
335=item pending
336
337An arrayref of hashrefs representing pending contests
338
339=item running
340
341An arrayref of hashrefs representing running contests
342
343=item finished
344
345An arrayref of hashrefs representing finished contests
346
347=back
348
349Takes the following arguments:
350
351=over
352
353=item owner
354
355Only show contests owned by this user.
356
357=back
358
359=item contest_entry($id)
360
361Returns a hashref with information about the contest $id.
362
363=item job_list([%args])
364
365Returns a list of jobs as an arrayref containing hashrefs. Takes the following arguments:
366
367=over
368
369=item owner
370
371Only show jobs submitted by this user.
372
373=item contest
374
375Only show jobs submitted in this contest.
376
377=item problem
378
379Only show jobs submitted for this problem.
380
381=item page
382
383Show this page of results. Defaults to 1. Pages have 10 entries, and the first page has the most recent jobs.
384
385=back
386
387=item job_entry($id)
388
389Returns a hashref with information about the job $id.
390
cbb36c78 391=back
4a8747ef
MG
392
393=head1 AUTHOR
394
395Marius Gavrilescu E<lt>marius@ieval.roE<gt>
396
397=head1 COPYRIGHT AND LICENSE
398
399Copyright (C) 2014 by Marius Gavrilescu
400
9d2e740e
MG
401This library is free software; you can redistribute it and/or modify
402it under the same terms as Perl itself, either Perl version 5.18.1 or,
403at your option, any later version of Perl 5 you may have available.
4a8747ef
MG
404
405
406=cut
This page took 0.092445 seconds and 4 git commands to generate.