2019-02-13 02:14:56 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2019-02-13 02:14:56 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-02-13 02:14:56 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\User_LDAP\Handler;
|
|
|
|
|
|
|
|
use OCA\Files_External\Config\IConfigHandler;
|
|
|
|
use OCA\Files_External\Config\SimpleSubstitutionTrait;
|
2019-07-24 12:53:53 +03:00
|
|
|
use OCA\Files_External\Config\UserContext;
|
2019-02-13 02:14:56 +03:00
|
|
|
use OCA\User_LDAP\User_Proxy;
|
|
|
|
|
2019-07-24 12:53:53 +03:00
|
|
|
class ExtStorageConfigHandler extends UserContext implements IConfigHandler {
|
2019-02-13 02:14:56 +03:00
|
|
|
use SimpleSubstitutionTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param mixed $optionValue
|
|
|
|
* @return mixed the same type as $optionValue
|
|
|
|
* @since 16.0.0
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public function handle($optionValue) {
|
2019-07-24 12:53:53 +03:00
|
|
|
$this->placeholder = 'home';
|
2019-07-25 18:58:13 +03:00
|
|
|
$user = $this->getUser();
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($user === null) {
|
2019-02-13 02:14:56 +03:00
|
|
|
return $optionValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$backend = $user->getBackend();
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!$backend instanceof User_Proxy) {
|
2019-02-13 02:14:56 +03:00
|
|
|
return $optionValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$access = $backend->getLDAPAccess($user->getUID());
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!$access) {
|
2019-02-13 02:14:56 +03:00
|
|
|
return $optionValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$attribute = $access->connection->ldapExtStorageHomeAttribute;
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($attribute)) {
|
2019-02-13 02:14:56 +03:00
|
|
|
return $optionValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ldapUser = $access->userManager->get($user->getUID());
|
|
|
|
$extHome = $ldapUser->getExtStorageHome();
|
|
|
|
|
|
|
|
return $this->processInput($optionValue, $extHome);
|
|
|
|
}
|
|
|
|
}
|