2013-01-11 21:13:22 +04:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ownCloud – LDAP Backend Proxy
|
|
|
|
|
*
|
|
|
|
|
* @author Arthur Schiwon
|
|
|
|
|
* @copyright 2013 Arthur Schiwon blizzz@owncloud.com
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OCA\user_ldap\lib;
|
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
|
use OCA\user_ldap\lib\Access;
|
|
|
|
|
|
2013-01-11 21:13:22 +04:00
|
|
|
|
abstract class Proxy {
|
2013-09-10 19:11:02 +04:00
|
|
|
|
static private $accesses = array();
|
|
|
|
|
private $ldap = null;
|
2013-01-11 21:13:22 +04:00
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
|
public function __construct(ILDAPWrapper $ldap) {
|
|
|
|
|
$this->ldap = $ldap;
|
2013-01-11 21:13:22 +04:00
|
|
|
|
$this->cache = \OC_Cache::getGlobalCache();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
|
private function addAccess($configPrefix) {
|
|
|
|
|
$connector = new Connection($this->ldap, $configPrefix);
|
|
|
|
|
self::$accesses[$configPrefix] = new Access($connector, $this->ldap);
|
2013-01-11 21:13:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
|
protected function getAccess($configPrefix) {
|
|
|
|
|
if(!isset(self::$accesses[$configPrefix])) {
|
|
|
|
|
$this->addAccess($configPrefix);
|
2013-01-11 21:13:22 +04:00
|
|
|
|
}
|
2013-09-10 19:11:02 +04:00
|
|
|
|
return self::$accesses[$configPrefix];
|
2013-01-11 21:13:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getUserCacheKey($uid) {
|
|
|
|
|
return 'user-'.$uid.'-lastSeenOn';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getGroupCacheKey($gid) {
|
|
|
|
|
return 'group-'.$gid.'-lastSeenOn';
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
|
/**
|
|
|
|
|
* @param boolean $passOnWhen
|
2014-02-19 12:31:54 +04:00
|
|
|
|
* @param string $method
|
2014-02-06 19:30:58 +04:00
|
|
|
|
*/
|
2013-11-26 01:05:00 +04:00
|
|
|
|
abstract protected function callOnLastSeenOn($id, $method, $parameters, $passOnWhen);
|
2014-02-19 12:31:54 +04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $method
|
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
|
abstract protected function walkBackends($id, $method, $parameters);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Takes care of the request to the User backend
|
|
|
|
|
* @param $uid string, the uid connected to the request
|
2014-02-06 19:30:58 +04:00
|
|
|
|
* @param string $method string, the method of the user backend that shall be called
|
2013-01-11 21:13:22 +04:00
|
|
|
|
* @param $parameters an array of parameters to be passed
|
|
|
|
|
* @return mixed, the result of the specified method
|
|
|
|
|
*/
|
2013-11-26 01:05:00 +04:00
|
|
|
|
protected function handleRequest($id, $method, $parameters, $passOnWhen = false) {
|
|
|
|
|
$result = $this->callOnLastSeenOn($id, $method, $parameters, $passOnWhen);
|
|
|
|
|
if($result === $passOnWhen) {
|
2013-01-11 21:13:22 +04:00
|
|
|
|
$result = $this->walkBackends($id, $method, $parameters);
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function getCacheKey($key) {
|
|
|
|
|
$prefix = 'LDAP-Proxy-';
|
|
|
|
|
if(is_null($key)) {
|
|
|
|
|
return $prefix;
|
|
|
|
|
}
|
|
|
|
|
return $prefix.md5($key);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
|
/**
|
|
|
|
|
* @param string $key
|
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
|
public function getFromCache($key) {
|
|
|
|
|
if(!$this->isCached($key)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
$key = $this->getCacheKey($key);
|
|
|
|
|
|
|
|
|
|
return unserialize(base64_decode($this->cache->get($key)));
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
|
/**
|
|
|
|
|
* @param string $key
|
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
|
public function isCached($key) {
|
|
|
|
|
$key = $this->getCacheKey($key);
|
|
|
|
|
return $this->cache->hasKey($key);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
|
/**
|
|
|
|
|
* @param string $key
|
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
|
public function writeToCache($key, $value) {
|
|
|
|
|
$key = $this->getCacheKey($key);
|
|
|
|
|
$value = base64_encode(serialize($value));
|
|
|
|
|
$this->cache->set($key, $value, '2592000');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function clearCache() {
|
|
|
|
|
$this->cache->clear($this->getCacheKey(null));
|
|
|
|
|
}
|
2013-08-18 13:02:08 +04:00
|
|
|
|
}
|