X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=gruntmaster-contest;h=ff121cddaefed32dad808978b4920a381627a33c;hb=4af3660592d7b245e02e48b146d0a950b7f54ffc;hp=23fd515e84ef1c7af73bc44d4a819e2e51bc4db2;hpb=4a8747effd02a1e0f9dde86b1c81f6c26ce66f04;p=gruntmaster-data.git diff --git a/gruntmaster-contest b/gruntmaster-contest index 23fd515..ff121cd 100755 --- a/gruntmaster-contest +++ b/gruntmaster-contest @@ -17,15 +17,18 @@ sub cmd_help{ sub cmd_list{ local $, = "\n"; - say contests; + say map { $_->id } $db->contests->all; } sub cmd_show{ -# local $_ = shift or goto &cmd_list; -# say "Name: ", contest_name; -# say "Owner: ", contest_owner; -# say "Start: ", strftime '%c', localtime contest_start; -# say "End: ", strftime '%c', localtime contest_end; + my %columns = $db->contest(shift)->get_columns; + $columns{$_} = strftime '%c', localtime $columns{$_} for qw/start stop/; + print <contests->create({id => $id, name => $name, owner => $owner, start => $start, stop => $stop}); -# insert_contest $id => name => $name, owner => $owner, start => $start, stop => $stop; -# PUBLISH genpage => "ct/$id/index.html"; -# PUBLISH genpage => "ct/index.html"; + $db->contests->create({id => $id, name => $name, owner => $owner, start => $start, stop => $stop}) } sub cmd_rm{ -# remove_contest shift; -# PUBLISH genpage => "ct/index.html"; + $db->contest(shift)->delete +} + +sub cmd_get{ + my ($id, $col) = @_; + say $db->contest($id)->get_column($col) +} + +sub cmd_set{ + my ($id, %values) = @_; + $db->contest($id)->update(\%values) } ################################################## @@ -68,6 +77,8 @@ gruntmaster-contest - shell interface to Gruntmaster 6000 contests gruntmaster-contest show id gruntmaster-contest add id gruntmaster-contest rm id + gruntmaster-contest get id key + gruntmaster-contest set id key value =head1 DESCRIPTION @@ -89,7 +100,15 @@ Adds a new contest with id I. =item B I -Removes the contest with id I +Removes the contest with id I. + +=item B I I I + +Sets the I configuration option of contest I to I. + +=item B I I + +Get the value of the I configuration option of contest I. =back @@ -101,10 +120,9 @@ Marius Gavrilescu Emarius@ieval.roE Copyright (C) 2014 by Marius Gavrilescu -This library is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +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