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