Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New command to update group mappings (#26341) #1840

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/user_ldap/appinfo/register_command.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@
$application->add(new OCA\User_LDAP\Command\CheckUser(
$uBackend, $helper, $deletedUsersIndex, $userMapping)
);
$application->add(new OCA\User_LDAP\Command\UpdateGroup(new LDAP(), $helper, $dbConnection));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use #1705

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me do that for LDAP in a new PR for all commands

238 changes: 238 additions & 0 deletions apps/user_ldap/lib/Command/UpdateGroup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,238 @@
<?php
/**
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
* @author Joas Schilling <coding@schilljs.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2016, ownCloud GmbH.
* @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,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/

namespace OCA\User_LDAP\Command;

use OCA\User_LDAP\Configuration;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use \OCA\User_LDAP\Helper;
use \OCA\User_LDAP\LDAP;
use \OCA\User_LDAP\Group_Proxy;
use \OCP\IDBConnection;
use OCP\DB\QueryBuilder\IQueryBuilder;

class UpdateGroup extends Command {

const ERROR_CODE_MISSING_CONF = 1;
const ERROR_CODE_MISSING_MAPPING = 2;

/** @var LDAP */
private $ldap;

/** @var Helper */
private $helper;

/** @var IDBConnection */
private $connection;

/**
* UpdateGroup constructor.
*
* @param LDAP $ldap
* @param Helper $helper
* @param IDBConnection $connection
*/
public function __construct(LDAP $ldap, Helper $helper, IDBConnection $connection) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

docs

$this->connection = $connection;
$this->ldap = $ldap;
$this->helper = $helper;
parent::__construct();
}

protected function configure() {
$this
->setName('ldap:update-group')
->setDescription('update the specified group membership information stored locally')
->addArgument(
'groupID',
InputArgument::REQUIRED | InputArgument::IS_ARRAY,
'the group ID'
)
->addOption(
'hide-warning',
null,
InputOption::VALUE_NONE,
'Group membership attribute is critical for this command to work properly. This option hides the warning and the additional output associated with it.'
);
}

/**
* @param InputInterface $input
* @param OutputInterface $output
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output) {
$groupIDs = $input->getArgument('groupID');
// make sure we don't have duplicated groups in the parameters
$groupIDs = array_unique($groupIDs);

$helper = $this->helper;
$availableConfigs = $helper->getServerConfigurationPrefixes();

if (!$input->getOption('hide-warning')) {
$output->writeln("Group membership attribute is critical for this command, please verify.");
// show configuration information, useful to debug
foreach ($availableConfigs as $aconfig) {
$config = new Configuration($aconfig);
$message = '* ' . $config->ldapHost . ':' . $config->ldapPort . ' -> ' . $config->ldapGroupMemberAssocAttr;
$output->writeln($message);
}
}


if (empty($availableConfigs)) {
$output->writeln('<error>No active configurations available</error>');
return self::ERROR_CODE_MISSING_CONF;
}

if (!$this->checkGroupMappingExists($groupIDs)) {
$output->writeln("<error>Some of the groups are unknown</error>");
return self::ERROR_CODE_MISSING_MAPPING;
}

$groupProxy = new Group_Proxy($availableConfigs, $this->ldap);

foreach ($groupIDs as $groupID) {
$output->writeln("checking group \"$groupID\"...");
if (!$groupProxy->groupExists($groupID)) {
$output->writeln("\"$groupID\" doesn't exist in LDAP any more, removing local mapping");
$this->removeGroupMapping($groupID);
} else {
$output->writeln("updating \"$groupID\" group membership information locally", OutputInterface::VERBOSITY_VERBOSE);
$userList = $groupProxy->usersInGroup($groupID);
$userChanges = $this->updateGroupMapping($groupID, $userList);

$output->writeln("triggering hooks", OutputInterface::VERBOSITY_VERBOSE);
$output->writeln("new users:");
foreach ($userChanges['added'] as $addedUser) {
$output->writeln($addedUser);
\OCP\Util::emitHook('OC_User', 'post_addToGroup', array('uid' => $addedUser, 'gid' => $groupID));
}
$output->writeln("removed users:");
foreach ($userChanges['removed'] as $removedUser) {
$output->writeln($removedUser);
\OCP\Util::emitHook('OC_User', 'post_removeFromGroup', array('uid' => $removedUser, 'gid' => $groupID));
}
}
}
}


/**
* @param string $groupName
* @throws \Exception
*/
private function removeGroupMapping($groupName) {
$this->connection->beginTransaction();

try {
$query = $this->connection->getQueryBuilder();
$query->delete('ldap_group_mapping')
->where($query->expr()->eq('owncloud_name', $query->createNamedParameter($groupName)))
->execute();

$query2 = $this->connection->getQueryBuilder();
$query2->delete('ldap_group_members')
->where($query->expr()->eq('owncloudname', $query->createNamedParameter($groupName)))
->execute();

$this->connection->commit();
} catch (\Exception $e) {
// Rollback and rethrow the exception
$this->connection->rollBack();
throw $e;
}
}

/**
* Return and array with 2 lists: one for the users added and another for the users removed from
* the group:
* ['added' => ['user1', 'user20'], 'removed' => ['user22']]
*
* @param string $groupName name of the group to be checked
* @param array $userList array of user names to be compared. For example: ['user1', 'user44'].
* The list will usually come from the LDAP server and will be compared against the information
* in the DB.
* @return array
*/
private function updateGroupMapping($groupName, $userList) {
$query = $this->connection->getQueryBuilder();
$result = $query->select('*')
->from('ldap_group_members')
->where($query->expr()->eq('owncloudname', $query->createNamedParameter($groupName)))
->execute();
$row = $result->fetch();
if ($row) {
$needToInsert = false;
$mappedList = unserialize($row['owncloudusers']);
} else {
$needToInsert = true;
}
if ($needToInsert) {
$query2 = $this->connection->getQueryBuilder();
$query2->insert('ldap_group_members')
->setValue('owncloudname', $query2->createNamedParameter($groupName))
->setValue('owncloudusers', $query2->createNamedParameter(json_encode($userList)))
->execute();
return array('added' => $userList, 'removed' => array());
} else {
$query2 = $this->connection->getQueryBuilder();
$query2->update('ldap_group_members')
->set('owncloudusers', $query2->createNamedParameter(json_encode($userList)))
->where($query2->expr()->eq('owncloudname', $query2->createNamedParameter($groupName)))
->execute();
// calculate changes
$usersAdded = array_diff($userList, $mappedList);
$usersRemoved = array_diff($mappedList, $userList);
return array('added' => $usersAdded, 'removed' => $usersRemoved);
}
}

/**
* Make sure $groupNames doesn't contain duplicated values. This function could behave
* unexpectedly otherwise.
*
* Take advantage of the owncloud_name column in the DB has a unique constraint.
*
* @param string[] $groupNames
* @return true if the count($groupNames) matches the number of
*/
private function checkGroupMappingExists($groupNames) {
$query = $this->connection->getQueryBuilder();
$query->select($query->createFunction('count(owncloud_name) as ngroups'))
->from('ldap_group_mapping')
->where($query->expr()->in('owncloud_name', $query->createNamedParameter($groupNames, IQueryBuilder::PARAM_STR_ARRAY)));
$result = $query->execute();
$row = $result->fetch();

$countValue = intval($row['ngroups']);
$result->closeCursor();
$requestedGroupNameCount = count($groupNames);
return $countValue === $requestedGroupNameCount;
}
}