2014-08-21 19:59:13 +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>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 10:59:29 +03:00
|
|
|
namespace OCA\User_LDAP\Command;
|
2014-08-21 19:59:13 +04:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\User_LDAP\Helper;
|
|
|
|
use OCA\User_LDAP\Mapping\UserMapping;
|
|
|
|
use OCA\User_LDAP\User\DeletedUsersIndex;
|
|
|
|
use OCA\User_LDAP\User_Proxy;
|
2014-08-21 19:59:13 +04:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
class CheckUser extends Command {
|
2019-07-18 15:30:43 +03:00
|
|
|
/** @var User_Proxy */
|
2014-08-21 19:59:13 +04:00
|
|
|
protected $backend;
|
|
|
|
|
2019-07-18 15:30:43 +03:00
|
|
|
/** @var Helper */
|
2014-08-21 19:59:13 +04:00
|
|
|
protected $helper;
|
|
|
|
|
2019-07-18 15:30:43 +03:00
|
|
|
/** @var DeletedUsersIndex */
|
2014-12-20 19:08:26 +03:00
|
|
|
protected $dui;
|
|
|
|
|
2019-07-18 15:30:43 +03:00
|
|
|
/** @var UserMapping */
|
2014-12-20 19:08:26 +03:00
|
|
|
protected $mapping;
|
2014-08-21 19:59:13 +04:00
|
|
|
|
|
|
|
/**
|
2016-05-12 10:59:29 +03:00
|
|
|
* @param User_Proxy $uBackend
|
2019-07-18 15:30:43 +03:00
|
|
|
* @param Helper $helper
|
2016-05-12 10:59:29 +03:00
|
|
|
* @param DeletedUsersIndex $dui
|
|
|
|
* @param UserMapping $mapping
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2019-07-18 15:30:43 +03:00
|
|
|
public function __construct(User_Proxy $uBackend, Helper $helper, DeletedUsersIndex $dui, UserMapping $mapping) {
|
2014-08-21 19:59:13 +04:00
|
|
|
$this->backend = $uBackend;
|
|
|
|
$this->helper = $helper;
|
2014-12-20 19:08:26 +03:00
|
|
|
$this->dui = $dui;
|
|
|
|
$this->mapping = $mapping;
|
2014-08-21 19:59:13 +04:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('ldap:check-user')
|
|
|
|
->setDescription('checks whether a user exists on LDAP.')
|
|
|
|
->addArgument(
|
|
|
|
'ocName',
|
|
|
|
InputArgument::REQUIRED,
|
2017-04-12 07:16:27 +03:00
|
|
|
'the user name as used in Nextcloud'
|
2020-04-09 10:22:29 +03:00
|
|
|
)
|
2014-08-21 19:59:13 +04:00
|
|
|
->addOption(
|
|
|
|
'force',
|
|
|
|
null,
|
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'ignores disabled LDAP configuration'
|
2020-04-09 10:22:29 +03:00
|
|
|
)
|
2019-07-18 15:30:43 +03:00
|
|
|
->addOption(
|
|
|
|
'update',
|
|
|
|
null,
|
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'syncs values from LDAP'
|
|
|
|
)
|
2014-08-21 19:59:13 +04:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
try {
|
|
|
|
$uid = $input->getArgument('ocName');
|
|
|
|
$this->isAllowed($input->getOption('force'));
|
|
|
|
$this->confirmUserIsMapped($uid);
|
|
|
|
$exists = $this->backend->userExistsOnLDAP($uid);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($exists === true) {
|
2014-08-21 19:59:13 +04:00
|
|
|
$output->writeln('The user is still available on LDAP.');
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($input->getOption('update')) {
|
2019-07-18 15:30:43 +03:00
|
|
|
$this->updateUser($uid, $output);
|
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-20 19:08:26 +03:00
|
|
|
$this->dui->markUser($uid);
|
2014-08-21 19:59:13 +04:00
|
|
|
$output->writeln('The user does not exists on LDAP anymore.');
|
|
|
|
$output->writeln('Clean up the user\'s remnants by: ./occ user:delete "'
|
|
|
|
. $uid . '"');
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$output->writeln('<error>' . $e->getMessage(). '</error>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* checks whether a user is actually mapped
|
2017-04-12 07:16:27 +03:00
|
|
|
* @param string $ocName the username as used in Nextcloud
|
2014-08-21 19:59:13 +04:00
|
|
|
* @throws \Exception
|
2014-12-20 19:08:26 +03:00
|
|
|
* @return true
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
|
|
|
protected function confirmUserIsMapped($ocName) {
|
2014-12-20 19:08:26 +03:00
|
|
|
$dn = $this->mapping->getDNByName($ocName);
|
|
|
|
if ($dn === false) {
|
2014-08-21 19:59:13 +04:00
|
|
|
throw new \Exception('The given user is not a recognized LDAP user.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-06 19:50:06 +03:00
|
|
|
* checks whether the setup allows reliable checking of LDAP user existence
|
2014-08-21 19:59:13 +04:00
|
|
|
* @throws \Exception
|
2015-01-06 19:50:06 +03:00
|
|
|
* @return true
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
|
|
|
protected function isAllowed($force) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->helper->haveDisabledConfigurations() && !$force) {
|
2015-01-06 19:50:06 +03:00
|
|
|
throw new \Exception('Cannot check user existence, because '
|
2014-08-21 19:59:13 +04:00
|
|
|
. 'disabled LDAP configurations are present.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// we don't check ldapUserCleanupInterval from config.php because this
|
|
|
|
// action is triggered manually, while the setting only controls the
|
|
|
|
// background job.
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-18 15:30:43 +03:00
|
|
|
private function updateUser(string $uid, OutputInterface $output): void {
|
|
|
|
try {
|
|
|
|
$access = $this->backend->getLDAPAccess($uid);
|
|
|
|
$attrs = $access->userManager->getAttributes();
|
|
|
|
$user = $access->userManager->get($uid);
|
|
|
|
$avatarAttributes = $access->getConnection()->resolveRule('avatar');
|
2020-03-18 19:40:23 +03:00
|
|
|
$result = $access->search('objectclass=*', $user->getDN(), $attrs, 1, 0);
|
2019-07-18 15:30:43 +03:00
|
|
|
foreach ($result[0] as $attribute => $valueSet) {
|
|
|
|
$output->writeln(' ' . $attribute . ': ');
|
|
|
|
foreach ($valueSet as $value) {
|
|
|
|
if (in_array($attribute, $avatarAttributes)) {
|
|
|
|
$value = '{ImageData}';
|
|
|
|
}
|
|
|
|
$output->writeln(' ' . $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$access->batchApplyUserAttributes($result);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$output->writeln('<error>Error while trying to lookup and update attributes from LDAP</error>');
|
|
|
|
}
|
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
}
|