2007-12-12 17:29:16 +01:00
|
|
|
<?php
|
|
|
|
// Provides HTTP Basic authentication of a user, and sets two variables, sId and username,
|
|
|
|
// with the user's info.
|
|
|
|
|
|
|
|
function authenticate() {
|
2008-04-02 16:57:28 +02:00
|
|
|
header('WWW-Authenticate: Basic realm="SemanticScuttle API"');
|
2007-12-12 17:29:16 +01:00
|
|
|
header('HTTP/1.0 401 Unauthorized');
|
|
|
|
die("Use of the API calls requires authentication.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
|
|
|
authenticate();
|
|
|
|
} else {
|
|
|
|
require_once('../header.inc.php');
|
|
|
|
$userservice =& ServiceFactory::getServiceInstance('UserService');
|
|
|
|
|
|
|
|
$login = $userservice->login($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
|
|
|
|
if (!$login) {
|
|
|
|
authenticate();
|
|
|
|
}
|
|
|
|
}
|
2008-04-02 16:57:28 +02:00
|
|
|
?>
|