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