friendica-addons/dav/friendica/dav_friendica_auth.inc.php

94 lines
2.2 KiB
PHP
Raw Normal View History

2012-06-03 20:19:28 +02:00
<?php
2018-02-12 01:00:01 +01:00
class Sabre_DAV_Auth_Backend_Std extends Sabre_DAV_Auth_Backend_AbstractBasic {
public function __construct() {
}
2012-06-03 20:19:28 +02:00
/**
* @var Sabre_DAV_Auth_Backend_Std|null
*/
2018-02-12 01:00:01 +01:00
private static $intstance = null;
/**
* @static
* @return Sabre_DAV_Auth_Backend_Std
*/
2018-02-12 01:00:01 +01:00
public static function &getInstance() {
if (is_null(self::$intstance)) {
self::$intstance = new Sabre_DAV_Auth_Backend_Std();
}
2018-02-12 01:00:01 +01:00
return self::$intstance;
}
2018-02-12 01:00:01 +01:00
/**
* @return array
*/
2018-02-12 01:00:01 +01:00
public function getUsers() {
return array($this->currentUser);
}
/**
* @return null|string
*/
2018-02-12 01:00:01 +01:00
public function getCurrentUser() {
return $this->currentUser;
}
2012-06-03 20:19:28 +02:00
/**
* Authenticates the user based on the current request.
*
* If authentication is successful, true must be returned.
* If authentication fails, an exception must be thrown.
*
* @param Sabre_DAV_Server $server
* @param string $realm
* @throws Sabre_DAV_Exception_NotAuthenticated
* @return bool
*/
2018-02-12 01:00:01 +01:00
public function authenticate(Sabre_DAV_Server $server, $realm) {
$a = get_app();
if (isset($a->user["uid"])) {
$this->currentUser = strtolower($a->user["nickname"]);
return true;
}
2012-06-03 20:19:28 +02:00
$auth = new Sabre_HTTP_BasicAuth();
$auth->setHTTPRequest($server->httpRequest);
$auth->setHTTPResponse($server->httpResponse);
$auth->setRealm($realm);
$userpass = $auth->getUserPass();
if (!$userpass) {
$auth->requireLogin();
throw new Sabre_DAV_Exception_NotAuthenticated('No basic authentication headers were found');
}
// Authenticates the user
2018-02-12 01:00:01 +01:00
if (!$this->validateUserPass($userpass[0],$userpass[1])) {
2012-06-03 20:19:28 +02:00
$auth->requireLogin();
throw new Sabre_DAV_Exception_NotAuthenticated('Username or password does not match');
}
$this->currentUser = strtolower($userpass[0]);
return true;
}
2018-02-12 01:00:01 +01:00
/**
* @param string $username
* @param string $password
* @return bool
*/
2018-02-12 01:00:01 +01:00
protected function validateUserPass($username, $password) {
$encrypted = hash('whirlpool',trim($password));
$r = q("SELECT COUNT(*) anz FROM `user` WHERE `nickname` = '%s' AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
dbesc(trim($username)),
dbesc($encrypted)
);
return ($r[0]["anz"] == 1);
}
2012-06-03 20:19:28 +02:00
}