. * */ namespace OCA\user_ldap\lib; use OCA\user_ldap\lib\Access; abstract class Proxy { static private $accesses = array(); private $ldap = null; /** * @param ILDAPWrapper $ldap */ public function __construct(ILDAPWrapper $ldap) { $this->ldap = $ldap; $this->cache = \OC\Cache::getGlobalCache(); } /** * @param string $configPrefix */ private function addAccess($configPrefix) { $connector = new Connection($this->ldap, $configPrefix); self::$accesses[$configPrefix] = new Access($connector, $this->ldap); } /** * @param string $configPrefix * @return mixed */ protected function getAccess($configPrefix) { if(!isset(self::$accesses[$configPrefix])) { $this->addAccess($configPrefix); } return self::$accesses[$configPrefix]; } /** * @param string $uid * @return string */ protected function getUserCacheKey($uid) { return 'user-'.$uid.'-lastSeenOn'; } /** * @param string $gid * @return string */ protected function getGroupCacheKey($gid) { return 'group-'.$gid.'-lastSeenOn'; } /** * @param string $id * @param string $method * @param array $parameters * @param bool $passOnWhen * @return mixed */ abstract protected function callOnLastSeenOn($id, $method, $parameters, $passOnWhen); /** * @param string $id * @param string $method * @param array $parameters * @return mixed */ abstract protected function walkBackends($id, $method, $parameters); /** * Takes care of the request to the User backend * @param string $id * @param string $method string, the method of the user backend that shall be called * @param array $parameters an array of parameters to be passed * @param bool $passOnWhen * @return mixed, the result of the specified method */ protected function handleRequest($id, $method, $parameters, $passOnWhen = false) { $result = $this->callOnLastSeenOn($id, $method, $parameters, $passOnWhen); if($result === $passOnWhen) { $result = $this->walkBackends($id, $method, $parameters); } return $result; } /** * @param string|null $key * @return string */ private function getCacheKey($key) { $prefix = 'LDAP-Proxy-'; if(is_null($key)) { return $prefix; } return $prefix.md5($key); } /** * @param string $key * @return mixed|null */ public function getFromCache($key) { if(!$this->isCached($key)) { return null; } $key = $this->getCacheKey($key); return unserialize(base64_decode($this->cache->get($key))); } /** * @param string $key * @return bool */ public function isCached($key) { $key = $this->getCacheKey($key); return $this->cache->hasKey($key); } /** * @param string $key * @param mixed $value */ 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)); } }