mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 02:10:02 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5137 201d5d3c-b55e-5fd7-737f-ddc643e51545
169 lines
No EOL
4.2 KiB
PHP
169 lines
No EOL
4.2 KiB
PHP
<?php
|
|
|
|
require_once "lib/common.php";
|
|
require_once "lib/session.php";
|
|
require_once "lib/render.php";
|
|
|
|
require_once "lib/render/login.php";
|
|
require_once "lib/render/sites.php";
|
|
|
|
require_once "Auth/OpenID.php";
|
|
|
|
/**
|
|
* Handle a standard OpenID server request
|
|
*/
|
|
function action_default()
|
|
{
|
|
$server =& getServer();
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
|
$request = null;
|
|
if ($method == 'GET') {
|
|
$request = $_GET;
|
|
} else {
|
|
$request = $_POST;
|
|
}
|
|
|
|
$request = Auth_OpenID::fixArgs($request);
|
|
$request = $server->decodeRequest($request);
|
|
|
|
if (!$request) {
|
|
return about_render();
|
|
}
|
|
|
|
setRequestInfo($request);
|
|
|
|
if (in_array($request->mode,
|
|
array('checkid_immediate', 'checkid_setup'))) {
|
|
|
|
if (isTrusted($request->identity, $request->trust_root)) {
|
|
$response =& $request->answer(true);
|
|
$sreg = getSreg($request->identity);
|
|
if (is_array($sreg)) {
|
|
foreach ($sreg as $k => $v) {
|
|
$response->addField('sreg', $k,
|
|
$v);
|
|
}
|
|
}
|
|
} else if ($request->immediate) {
|
|
$response =& $request->answer(false, getServerURL());
|
|
} else {
|
|
if (!getLoggedInUser()) {
|
|
return login_render();
|
|
}
|
|
return trust_render($request);
|
|
}
|
|
} else {
|
|
$response =& $server->handleRequest($request);
|
|
}
|
|
|
|
$webresponse =& $server->encodeResponse($response);
|
|
|
|
foreach ($webresponse->headers as $k => $v) {
|
|
header("$k: $v");
|
|
}
|
|
|
|
header(header_connection_close);
|
|
print $webresponse->body;
|
|
exit(0);
|
|
}
|
|
|
|
/**
|
|
* Log out the currently logged in user
|
|
*/
|
|
function action_logout()
|
|
{
|
|
setLoggedInUser(null);
|
|
setRequestInfo(null);
|
|
return authCancel(null);
|
|
}
|
|
|
|
/**
|
|
* Check the input values for a login request
|
|
*/
|
|
function login_checkInput($input)
|
|
{
|
|
$openid_url = false;
|
|
$errors = array();
|
|
|
|
if (!isset($input['openid_url'])) {
|
|
$errors[] = 'Enter an OpenID URL to continue';
|
|
}
|
|
if (!isset($input['password'])) {
|
|
$errors[] = 'Enter a password to continue';
|
|
}
|
|
if (count($errors) == 0) {
|
|
$openid_url = $input['openid_url'];
|
|
$openid_url = Auth_OpenID::normalizeUrl($openid_url);
|
|
$password = $input['password'];
|
|
if (!checkLogin($openid_url, $password)) {
|
|
$errors[] = 'The entered password does not match the ' .
|
|
'entered identity URL.';
|
|
}
|
|
}
|
|
return array($errors, $openid_url);
|
|
}
|
|
|
|
/**
|
|
* Log in a user and potentially continue the requested identity approval
|
|
*/
|
|
function action_login()
|
|
{
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
|
switch ($method) {
|
|
case 'GET':
|
|
return login_render();
|
|
case 'POST':
|
|
$info = getRequestInfo();
|
|
$fields = $_POST;
|
|
if (isset($fields['cancel'])) {
|
|
return authCancel($info);
|
|
}
|
|
|
|
list ($errors, $openid_url) = login_checkInput($fields);
|
|
if (count($errors) || !$openid_url) {
|
|
$needed = $info ? $info->identity : false;
|
|
return login_render($errors, @$fields['openid_url'], $needed);
|
|
} else {
|
|
setLoggedInUser($openid_url);
|
|
return doAuth($info);
|
|
}
|
|
default:
|
|
return login_render(array('Unsupported HTTP method: $method'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Ask the user whether he wants to trust this site
|
|
*/
|
|
function action_trust()
|
|
{
|
|
$info = getRequestInfo();
|
|
$trusted = isset($_POST['trust']);
|
|
if ($info && isset($_POST['remember'])) {
|
|
$sites = getSessionSites();
|
|
$sites[$info->trust_root] = $trusted;
|
|
setSessionSites($sites);
|
|
}
|
|
return doAuth($info, $trusted, true);
|
|
}
|
|
|
|
function action_sites()
|
|
{
|
|
$sites = getSessionSites();
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
if (isset($_POST['forget'])) {
|
|
$sites = null;
|
|
setSessionSites($sites);
|
|
} elseif (isset($_POST['remove'])) {
|
|
foreach ($_POST as $k => $v) {
|
|
if (preg_match('/^site[0-9]+$/', $k) && isset($sites[$v])) {
|
|
unset($sites[$v]);
|
|
}
|
|
}
|
|
setSessionSites($sites);
|
|
}
|
|
}
|
|
return sites_render($sites);
|
|
}
|
|
|
|
?>
|