Add register and passwd
authorMarius Gavrilescu <marius@ieval.ro>
Wed, 15 Jan 2014 19:03:01 +0000 (21:03 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Wed, 15 Jan 2014 19:03:01 +0000 (21:03 +0200)
lib/Gruntmaster/Handlers.pm

index 9e92dc264139e3b65771e23b59b1901671357099..c9a6c70d99c534e1c38d621f693d5477a3bbb4f1 100644 (file)
@@ -6,6 +6,7 @@ use warnings;
 our $VERSION = '0.001';
 
 use Apache2::Access;
+use Apache2::Authen::Passphrase qw/pwcheck pwset USER_REGEX/;
 use Apache2::AuthzCaps qw/hascaps/;
 use Apache2::RequestRec;
 use Apache2::RequestIO;
@@ -18,12 +19,19 @@ use Cwd qw/cwd/;
 use File::Basename qw/fileparse/;
 use File::Temp qw/tempdir/;
 use File::Copy qw/move/;
-use Gruntmaster::Data qw/contest_start contest_end push_job set_job_inmeta PUBLISH/;
+use Gruntmaster::Data qw/contest_start contest_end push_job set_job_inmeta insert_user PUBLISH/;
 use Gruntmaster::Page::Log;
 
+sub aputs{
+       my ($r, $str) = @_;
+       $r->set_content_length(length $str);
+       $r->puts($str);
+       $r->content_type('text/plain');
+       OK
+}
+
 sub submit{
   my $r = shift;
-  chdir $r->dir_config('root');
   my $req = Apache2::Request->new($r);
   my ($problem, $format, $contest, $private) = map {scalar $req->param($_)} 'problem', 'prog_format', 'contest', 'private';
   my $prog;
@@ -56,6 +64,35 @@ sub submit{
   OK
 }
 
+sub register{
+       my $r = shift;
+       my $req = Apache2::Request->new($r);
+       my ($username, $password, $confirm_password, $name, $email, $town, $university) = map {scalar $req->param($_)} 'username', 'password', 'confirm_password', 'name', 'email', 'town', 'university';
+
+       local $Apache2::Authen::Passphrase::rootdir = $r->dir_config('AuthenPassphraseRootdir');
+       return aputs $r, 'Bad username. Allowed characters are letters, digits and underscores, and the username must be between 2 and 20 characters long.' unless $username =~ USER_REGEX;
+       return aputs $r, 'Username already in use' if -e "$Apache2::Authen::Passphrase::rootdir/$username.yml";
+       return aputs $r, 'The two passwords do not match' unless $password eq $confirm_password;
+       pwset $username, $password;
+
+       insert_user $username, name => $name, email => $email, town => $town, university => $university;
+
+       aputs $r, 'Registered successfully';
+}
+
+sub passwd{
+       my $r = shift;
+       my $req = Apache2::Request->new($r);
+       my ($oldpass, $newpass, $confirm) = map {scalar $req->param($_)} 'password', 'new_password', 'confirm_new_password';
+
+       local $Apache2::Authen::Passphrase::rootdir = $r->dir_config('AuthenPassphraseRootdir');
+       return aputs $r, 'Incorrect password' unless eval { pwcheck $r->user, $oldpass; 1 };
+       return aputs $r, 'The two passwords do not match' unless $newpass eq $confirm;
+
+       pwset $r->user, $newpass;
+       aputs $r, 'Password changed successfully';
+}
+
 =begin comment
 
 sub private{
This page took 0.011519 seconds and 4 git commands to generate.