2013-01-11 21:13:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Roger Szabo <roger.szabo@web.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-01-11 21:13:22 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-01-11 21:13:22 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-01-11 21:13:22 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-01-11 21:13:22 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-01-11 21:13:22 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-01-11 21:13:22 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 17:11:59 +03:00
|
|
|
namespace OCA\User_LDAP;
|
2013-01-11 21:13:22 +04:00
|
|
|
|
2014-11-05 15:05:07 +03:00
|
|
|
use OCA\User_LDAP\Mapping\UserMapping;
|
|
|
|
use OCA\User_LDAP\Mapping\GroupMapping;
|
2016-06-13 20:32:54 +03:00
|
|
|
use OCA\User_LDAP\User\Manager;
|
2013-09-10 19:11:02 +04:00
|
|
|
|
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
|
|
|
|
2015-05-08 14:27:27 +03:00
|
|
|
/** @var \OCP\ICache|null */
|
|
|
|
private $cache;
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param ILDAPWrapper $ldap
|
|
|
|
*/
|
2013-09-10 19:11:02 +04:00
|
|
|
public function __construct(ILDAPWrapper $ldap) {
|
|
|
|
$this->ldap = $ldap;
|
2015-05-08 14:27:27 +03:00
|
|
|
$memcache = \OC::$server->getMemCacheFactory();
|
|
|
|
if($memcache->isAvailable()) {
|
2017-12-15 13:31:13 +03:00
|
|
|
$this->cache = $memcache->createDistributed();
|
2015-05-08 14:27:27 +03:00
|
|
|
}
|
2013-01-11 21:13:22 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $configPrefix
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
2013-09-10 19:11:02 +04:00
|
|
|
private function addAccess($configPrefix) {
|
2014-03-27 21:01:14 +04:00
|
|
|
static $ocConfig;
|
|
|
|
static $fs;
|
|
|
|
static $log;
|
|
|
|
static $avatarM;
|
2014-11-05 15:05:07 +03:00
|
|
|
static $userMap;
|
|
|
|
static $groupMap;
|
2015-01-07 02:52:18 +03:00
|
|
|
static $db;
|
2016-03-02 15:02:43 +03:00
|
|
|
static $coreUserManager;
|
2017-03-31 10:16:22 +03:00
|
|
|
static $coreNotificationManager;
|
2017-10-19 12:05:24 +03:00
|
|
|
if($fs === null) {
|
2014-03-27 21:01:14 +04:00
|
|
|
$ocConfig = \OC::$server->getConfig();
|
|
|
|
$fs = new FilesystemHelper();
|
|
|
|
$log = new LogWrapper();
|
|
|
|
$avatarM = \OC::$server->getAvatarManager();
|
2015-01-07 02:52:18 +03:00
|
|
|
$db = \OC::$server->getDatabaseConnection();
|
|
|
|
$userMap = new UserMapping($db);
|
|
|
|
$groupMap = new GroupMapping($db);
|
2016-03-02 15:02:43 +03:00
|
|
|
$coreUserManager = \OC::$server->getUserManager();
|
2017-03-31 10:16:22 +03:00
|
|
|
$coreNotificationManager = \OC::$server->getNotificationManager();
|
2014-03-27 21:01:14 +04:00
|
|
|
}
|
|
|
|
$userManager =
|
2017-03-31 10:16:22 +03:00
|
|
|
new Manager($ocConfig, $fs, $log, $avatarM, new \OCP\Image(), $db,
|
|
|
|
$coreUserManager, $coreNotificationManager);
|
2013-09-10 19:11:02 +04:00
|
|
|
$connector = new Connection($this->ldap, $configPrefix);
|
2017-11-08 03:51:14 +03:00
|
|
|
$access = new Access($connector, $this->ldap, $userManager, new Helper($ocConfig), $ocConfig);
|
2014-11-05 15:05:07 +03:00
|
|
|
$access->setUserMapper($userMap);
|
|
|
|
$access->setGroupMapper($groupMap);
|
|
|
|
self::$accesses[$configPrefix] = $access;
|
2013-01-11 21:13:22 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $configPrefix
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $uid
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
protected function getUserCacheKey($uid) {
|
|
|
|
return 'user-'.$uid.'-lastSeenOn';
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $gid
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
protected function getGroupCacheKey($gid) {
|
|
|
|
return 'group-'.$gid.'-lastSeenOn';
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $id
|
|
|
|
* @param string $method
|
|
|
|
* @param array $parameters
|
2014-05-11 17:17:27 +04:00
|
|
|
* @param bool $passOnWhen
|
|
|
|
* @return mixed
|
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
|
|
|
|
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $id
|
|
|
|
* @param string $method
|
|
|
|
* @param array $parameters
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return mixed
|
2014-02-19 12:31:54 +04:00
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
abstract protected function walkBackends($id, $method, $parameters);
|
|
|
|
|
2017-02-17 20:45:33 +03:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @return Access
|
|
|
|
*/
|
|
|
|
abstract public function getLDAPAccess($id);
|
|
|
|
|
2013-01-11 21:13:22 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Takes care of the request to the User backend
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $id
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $method string, the method of the user backend that shall be called
|
2014-05-11 17:17:27 +04:00
|
|
|
* @param array $parameters an array of parameters to be passed
|
|
|
|
* @param bool $passOnWhen
|
2013-01-11 21:13:22 +04:00
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
|
2014-04-14 19:39:29 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string|null $key
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return string
|
2014-04-14 19:39:29 +04:00
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
private function getCacheKey($key) {
|
|
|
|
$prefix = 'LDAP-Proxy-';
|
2017-10-19 12:05:24 +03:00
|
|
|
if($key === null) {
|
2013-01-11 21:13:22 +04:00
|
|
|
return $prefix;
|
|
|
|
}
|
2018-03-02 18:26:36 +03:00
|
|
|
return $prefix.hash('sha256', $key);
|
2013-01-11 21:13:22 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $key
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return mixed|null
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
public function getFromCache($key) {
|
2017-10-19 12:03:31 +03:00
|
|
|
if($this->cache === null) {
|
2013-01-11 21:13:22 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = $this->getCacheKey($key);
|
2017-10-19 12:03:31 +03:00
|
|
|
$value = $this->cache->get($key);
|
|
|
|
if ($value === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return json_decode(base64_decode($value));
|
2013-01-11 21:13:22 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2013-01-11 21:13:22 +04:00
|
|
|
public function writeToCache($key, $value) {
|
2017-10-19 12:05:24 +03:00
|
|
|
if($this->cache === null) {
|
2015-05-08 14:27:27 +03:00
|
|
|
return;
|
|
|
|
}
|
2013-01-11 21:13:22 +04:00
|
|
|
$key = $this->getCacheKey($key);
|
2015-09-02 13:12:31 +03:00
|
|
|
$value = base64_encode(json_encode($value));
|
2017-10-19 12:05:24 +03:00
|
|
|
$this->cache->set($key, $value, 2592000);
|
2013-01-11 21:13:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function clearCache() {
|
2017-10-19 12:05:24 +03:00
|
|
|
if($this->cache === null) {
|
2015-05-08 14:27:27 +03:00
|
|
|
return;
|
|
|
|
}
|
2013-01-11 21:13:22 +04:00
|
|
|
$this->cache->clear($this->getCacheKey(null));
|
|
|
|
}
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|