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