]> git.sesse.net Git - pr0n/commitdiff
Refactor the authentication a bit, in anticipation of digest-auth support.
authorSteinar H. Gunderson <sesse@debian.org>
Mon, 29 Jun 2009 09:37:58 +0000 (11:37 +0200)
committerSteinar H. Gunderson <sesse@debian.org>
Mon, 29 Jun 2009 09:37:58 +0000 (11:37 +0200)
perl/Sesse/pr0n/Common.pm

index 57d0a6ba26b66514ab9d1b3f9abc5d675efa8d40..14ae88b40664c29f8f39a2f0595580f950325962 100644 (file)
@@ -312,19 +312,34 @@ sub update_image_info {
 
 sub check_access {
        my $r = shift;
 
 sub check_access {
        my $r = shift;
+       
+       #return qw(sesse Sesse);
 
        my $auth = $r->headers_in->{'authorization'};
 
        my $auth = $r->headers_in->{'authorization'};
-       if (!defined($auth) || $auth !~ m#^Basic ([a-zA-Z0-9+/]+=*)$#) {
-               $r->content_type('text/plain; charset=utf-8');
-               $r->status(401);
-               $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
-               $r->print("Need authorization\n");
+       if (!defined($auth)) {
+               output_401($r);
                return undef;
        }
                return undef;
        }
-       
-       #return qw(sesse Sesse);
+       if ($auth =~ /^Basic ([a-zA-Z0-9+\/]+=*)$/) {
+               return check_basic_auth($r, $1);
+       }
+       output_401($r);
+       return undef;
+}
+
+sub output_401 {
+       my $r = shift;
+       $r->content_type('text/plain; charset=utf-8');
+       $r->status(401);
+       $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
+       $r->print("Need authorization\n");
+}
+
+sub check_basic_auth {
+       my ($r, $auth) = @_;    
+
+       my ($user, $pass) = split /:/, MIME::Base64::decode_base64($auth);
 
 
-       my ($user, $pass) = split /:/, MIME::Base64::decode_base64($1);
        # WinXP is stupid :-)
        if ($user =~ /^.*\\(.*)$/) {
                $user = $1;
        # WinXP is stupid :-)
        if ($user =~ /^.*\\(.*)$/) {
                $user = $1;
@@ -344,11 +359,8 @@ sub check_access {
                undef, $user, $pass, $r->get_server_name);
        if ($ref->{'auth'} != 1) {
                $r->content_type('text/plain; charset=utf-8');
                undef, $user, $pass, $r->get_server_name);
        if ($ref->{'auth'} != 1) {
                $r->content_type('text/plain; charset=utf-8');
-               warn "No user exists, only $auth";
-               $r->status(401);
-               $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
-               $r->print("Authorization failed");
                $r->log->warn("Authentication failed for $user/$takenby");
                $r->log->warn("Authentication failed for $user/$takenby");
+               output_401($r);
                return undef;
        }
 
                return undef;
        }