138 lines
4.6 KiB
Perl
138 lines
4.6 KiB
Perl
|
require "functions.pl";
|
||
|
|
||
|
#initialize session data
|
||
|
CGI::Session->name($config->{"page_cookie_name"});
|
||
|
$query = new CGI;
|
||
|
$session = new CGI::Session;
|
||
|
|
||
|
@userinfo = get_userinfo_from_sid($session->id);
|
||
|
|
||
|
#TODO: use $query->http("HTTP_REFERER"); to redirect to the site last visited
|
||
|
|
||
|
if($query->param('action') eq "logout")
|
||
|
{
|
||
|
#if logout is requested
|
||
|
#remove sid from database
|
||
|
$dbh->do(qq{update users set sid = '' where id = ?}, undef, $userinfo->{'id'}) or die $dbh->errstr;
|
||
|
$session->delete();
|
||
|
|
||
|
print $query->redirect("index.pl?information=information_logged_out");
|
||
|
}
|
||
|
#check if user is logged in
|
||
|
elsif($userinfo->{'username'})
|
||
|
{
|
||
|
print $query->redirect("/index.pl?error=error_already_logged_in");
|
||
|
}
|
||
|
#if password is empty and username begins with http:// then it's an openid login
|
||
|
elsif($query->param('pass') eq '' and $query->param('user')=~m/^http:\/\//)
|
||
|
{
|
||
|
#create our openid consumer object
|
||
|
$con = Net::OpenID::Consumer->new(
|
||
|
ua => LWPx::ParanoidAgent->new,
|
||
|
cache => undef, # or File::Cache->new,
|
||
|
args => $query,
|
||
|
consumer_secret => $session->id, #is this save? don't know...
|
||
|
required_root => $config->{"url_root"}
|
||
|
);
|
||
|
|
||
|
#claim identity
|
||
|
$claimed = $con->claimed_identity($query->param('user'));
|
||
|
|
||
|
#if claim failed, redirect
|
||
|
if(!defined($claimed))
|
||
|
{
|
||
|
print $query->redirect("/index.pl?error=error_openid_".$con->errcode);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
#try to set the check_url
|
||
|
$check_url = $claimed->check_url(
|
||
|
return_to => $config->{"url_root"}."login.pl?action=openid", #on success return to this address
|
||
|
trust_root => $config->{"url_root"}); #this is the string the user will be asked to trust
|
||
|
|
||
|
#redirect to openid server to check claim
|
||
|
print $query->redirect($check_url);
|
||
|
}
|
||
|
}
|
||
|
#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,
|
||
|
cache => undef, # or File::Cache->new,
|
||
|
args => $query,
|
||
|
consumer_secret => $session->id, #is this save? don't know...
|
||
|
required_root => $config->{"url_root"}
|
||
|
);
|
||
|
|
||
|
#redirect to setup url
|
||
|
if($setup_url = $con->user_setup_url)
|
||
|
{
|
||
|
#redirect to setup url - user will give confirmation there
|
||
|
print $query->redirect($setup_url);
|
||
|
}
|
||
|
#or cancel process
|
||
|
elsif ($con->user_cancel)
|
||
|
{
|
||
|
#cancelled - redirect to login form
|
||
|
print $query->redirect("index.pl");
|
||
|
}
|
||
|
#or verify identity
|
||
|
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->errcode;
|
||
|
}
|
||
|
}
|
||
|
#else it's a normal login
|
||
|
#check if password is not empty and username is neither beginning with http nor empty
|
||
|
elsif($query->param('pass') ne '' and $query->param('user')!~m/^http:\/\// and $query->param('user') ne '')
|
||
|
{
|
||
|
#prepare query
|
||
|
my $sth = $dbh->prepare(qq{select id from users
|
||
|
where password = password( ? ) and username = ? limit 1 });
|
||
|
|
||
|
#execute query
|
||
|
$sth->execute($query->param('pass'), $query->param('user'));
|
||
|
|
||
|
#if something was returned username and password match
|
||
|
if($sth->fetchrow_array())
|
||
|
{
|
||
|
#store session id in database
|
||
|
$dbh->do(qq{update users set sid = ? where username = ? }, undef, $session->id, $query->param('user')) or die $dbh->errstr;
|
||
|
print $query->redirect("index.pl?information=information_logged_in");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
print $query->redirect("index.pl?error=error_username_password_do_not_match");
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
print $query->redirect("index.pl");
|
||
|
}
|