Update fields and enforce limits
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 25 Jan 2014 20:22:25 +0000 (22:22 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 25 Jan 2014 20:22:25 +0000 (22:22 +0200)
lib/Gruntmaster/Handlers.pm

index c9a6c70d99c534e1c38d621f693d5477a3bbb4f1..dec98dcc23c9113e357ee389cede24a47fc98ce4 100644 (file)
@@ -67,15 +67,16 @@ sub submit{
 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';
+       my ($username, $password, $confirm_password, $name, $email, $phone, $town, $university, $level) = map { die if length > 200; $_ } map {scalar $req->param($_)} qw/username password confirm_password name email phone town university level/;
 
        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;
+       return aputs $r, 'All fields are required' if grep { !length } $username, $password, $confirm_password, $name, $email, $phone, $town, $university, $level;
        pwset $username, $password;
 
-       insert_user $username, name => $name, email => $email, town => $town, university => $university;
+       insert_user $username, name => $name, email => $email, phone => $phone, town => $town, university => $university, level => $level;
 
        aputs $r, 'Registered successfully';
 }
This page took 0.010941 seconds and 4 git commands to generate.