restructured openid login
git-svn-id: http://yolanda.mister-muffin.de/svn@268 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
parent
861e15f468
commit
fb3064b6c3
1 changed files with 52 additions and 44 deletions
|
@ -26,7 +26,7 @@ elsif($userinfo->{'username'})
|
||||||
print output_page();
|
print output_page();
|
||||||
}
|
}
|
||||||
#if password is empty and username begins with http:// or ret is specified, then it's an openid login
|
#if password is empty and username begins with http:// or ret is specified, then it's an openid login
|
||||||
elsif($query->param('pass') eq '' and ($query->param('user')=~m/^http:\/\// or $query->param('ret')))
|
elsif($query->param('pass') eq '' and $query->param('user')=~m/^http:\/\//)
|
||||||
{
|
{
|
||||||
#create our openid consumer object
|
#create our openid consumer object
|
||||||
$con = Net::OpenID::Consumer->new(
|
$con = Net::OpenID::Consumer->new(
|
||||||
|
@ -47,54 +47,12 @@ elsif($query->param('pass') eq '' and ($query->param('user')=~m/^http:\/\// or $
|
||||||
print "claim failed: ", $con->err;
|
print "claim failed: ", $con->err;
|
||||||
}
|
}
|
||||||
$check_url = $claimed->check_url(
|
$check_url = $claimed->check_url(
|
||||||
return_to => "$domain/login.pl?action=login&ret=true", #on success return to this address
|
return_to => "$domain/login.pl?action=openid", #on success return to this address
|
||||||
trust_root => $domain); #this is the string the user will be asked to trust
|
trust_root => $domain); #this is the string the user will be asked to trust
|
||||||
|
|
||||||
#redirect to openid server to check claim
|
#redirect to openid server to check claim
|
||||||
print $query->redirect($check_url);
|
print $query->redirect($check_url);
|
||||||
}
|
}
|
||||||
#we return from an identity check
|
|
||||||
elsif($query->param('ret'))
|
|
||||||
{
|
|
||||||
if($setup_url = $con->user_setup_url)
|
|
||||||
{
|
|
||||||
#redirect to setup url - user will give confirmation there
|
|
||||||
print $query->redirect($setup_url);
|
|
||||||
}
|
|
||||||
elsif ($con->user_cancel)
|
|
||||||
{
|
|
||||||
#cancelled - redirect to login form
|
|
||||||
print $session->header();
|
|
||||||
print "cancelled";
|
|
||||||
}
|
|
||||||
elsif ($vident = $con->verified_identity)
|
|
||||||
{
|
|
||||||
#we are verified!!
|
|
||||||
my $verified_url = $vident->url;
|
|
||||||
|
|
||||||
#check if this openid user already is in database
|
|
||||||
my $sth = $dbh->prepare(qq{select 1 from users where username = ? limit 1 });
|
|
||||||
$sth->execute($verified_url);
|
|
||||||
if($sth->fetchrow_array())
|
|
||||||
{
|
|
||||||
#store session id in database
|
|
||||||
$dbh->do(qq{update users set sid = ? where username = ? }, undef, $session->id, $verified_url) or die $dbh->errstr;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
#add openid user to dabase
|
|
||||||
$dbh->do(qq{insert into users (username, sid) values ( ?, ? ) }, undef, $verified_url, $session->id) or die $dbh->errstr;
|
|
||||||
}
|
|
||||||
|
|
||||||
print $query->redirect("index.pl?information=information_logged_in");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
#an error occured
|
|
||||||
print $session->header();
|
|
||||||
print "error validating identity: ", $con->err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if not, print login form
|
#if not, print login form
|
||||||
|
@ -103,6 +61,56 @@ elsif($query->param('pass') eq '' and ($query->param('user')=~m/^http:\/\// or $
|
||||||
print output_page();
|
print output_page();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#we return from an identity check
|
||||||
|
elsif($query->param('action') eq 'openid')
|
||||||
|
{
|
||||||
|
#create our openid consumer object
|
||||||
|
$con = Net::OpenID::Consumer->new(
|
||||||
|
ua => LWPx::ParanoidAgent->new, # FIXME - use LWPx::ParanoidAgent
|
||||||
|
cache => undef, # or File::Cache->new,
|
||||||
|
args => $query,
|
||||||
|
consumer_secret => $session->id, #is this save? don't know...
|
||||||
|
required_root => $domain );
|
||||||
|
|
||||||
|
if($setup_url = $con->user_setup_url)
|
||||||
|
{
|
||||||
|
#redirect to setup url - user will give confirmation there
|
||||||
|
print $query->redirect($setup_url);
|
||||||
|
}
|
||||||
|
elsif ($con->user_cancel)
|
||||||
|
{
|
||||||
|
#cancelled - redirect to login form
|
||||||
|
print $session->header();
|
||||||
|
print "cancelled";
|
||||||
|
}
|
||||||
|
elsif ($vident = $con->verified_identity)
|
||||||
|
{
|
||||||
|
#we are verified!!
|
||||||
|
my $verified_url = $vident->url;
|
||||||
|
|
||||||
|
#check if this openid user already is in database
|
||||||
|
my $sth = $dbh->prepare(qq{select 1 from users where username = ? limit 1 });
|
||||||
|
$sth->execute($verified_url);
|
||||||
|
if($sth->fetchrow_array())
|
||||||
|
{
|
||||||
|
#store session id in database
|
||||||
|
$dbh->do(qq{update users set sid = ? where username = ? }, undef, $session->id, $verified_url) or die $dbh->errstr;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
#add openid user to dabase
|
||||||
|
$dbh->do(qq{insert into users (username, sid) values ( ?, ? ) }, undef, $verified_url, $session->id) or die $dbh->errstr;
|
||||||
|
}
|
||||||
|
|
||||||
|
print $query->redirect("index.pl?information=information_logged_in");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
#an error occured
|
||||||
|
print $session->header();
|
||||||
|
print "error validating identity: ", $con->err;
|
||||||
|
}
|
||||||
|
}
|
||||||
#else it's a normal login
|
#else it's a normal login
|
||||||
elsif($query->param('pass') ne '' and $query->param('user')!~m/^http:\/\// and $query->param('user') ne '')
|
elsif($query->param('pass') ne '' and $query->param('user')!~m/^http:\/\// and $query->param('user') ne '')
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue