Add some utility functions and POD
[gruntmaster-data.git] / lib / Gruntmaster / Data / Result / Contest.pm
index 829cde652d0900345c88dc0519f4da96bc68e7dd..fcb6a966185f16d9770792c67415c26b6b243b38 100644 (file)
@@ -152,6 +152,50 @@ __PACKAGE__->many_to_many("problems", "contest_problems", "problem");
 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-03-06 12:41:16
 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T5tUpU1TOahLKzx9iVie3A
 
+sub is_pending {
+       my ($self, $time) = @_;
+       $self->start > ($time // time)
+}
+
+sub is_finished {
+       my ($self, $time) = @_;
+       $self->stop <= ($time // time)
+}
+
+sub is_running {
+       my ($self, $time) = @_;
+       !$self->is_pending($time) && !$self->is_finished($time)
+}
 
-# You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;
+
+__END__
+
+=head1 METHODS
+
+=head2 is_pending(I<[$time]>)
+
+Returns true if the contest is pending at time I<$time> (which defaults to C<time>).
+
+=head2 is_finished(I<[$time]>)
+
+Returns true if the contest is finished at time I<$time> (which defaults to C<time>).
+
+=head2 is_running(I<[$time]>)
+
+Returns true if the contest is running at time I<$time> (which defaults to C<time>).
+
+=head1 AUTHOR
+
+Marius Gavrilescu E<lt>marius@ieval.roE<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2014 by Marius Gavrilescu
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.18.1 or,
+at your option, any later version of Perl 5 you may have available.
+
+
+=cut
This page took 0.010283 seconds and 4 git commands to generate.