2012-08-22 12:31:58 +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>
|
2020-03-31 11:49:10 +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 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-07-21 19:13:36 +03:00
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
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-03-01 19:25:15 +03:00
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +03:00
|
|
|
|
* @author Vinicius Cubas Brand <vinicius@eita.org.br>
|
2012-08-22 12:31:58 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @license AGPL-3.0
|
2012-08-22 12:31:58 +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.
|
2012-08-22 12:31:58 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-08-22 12:31:58 +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.
|
2012-08-22 12:31:58 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-08-22 12:31:58 +04:00
|
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
2016-05-12 17:46:41 +03:00
|
|
|
|
namespace OCA\User_LDAP\Jobs;
|
2012-08-22 12:31:58 +04:00
|
|
|
|
|
2016-05-12 17:46:41 +03:00
|
|
|
|
use OCA\User_LDAP\Access;
|
|
|
|
|
use OCA\User_LDAP\Connection;
|
2016-05-12 17:31:35 +03:00
|
|
|
|
use OCA\User_LDAP\FilesystemHelper;
|
|
|
|
|
use OCA\User_LDAP\Helper;
|
|
|
|
|
use OCA\User_LDAP\LDAP;
|
|
|
|
|
use OCA\User_LDAP\LogWrapper;
|
2014-12-20 18:09:04 +03:00
|
|
|
|
use OCA\User_LDAP\Mapping\GroupMapping;
|
2015-01-06 19:50:06 +03:00
|
|
|
|
use OCA\User_LDAP\Mapping\UserMapping;
|
2016-05-12 17:16:06 +03:00
|
|
|
|
use OCA\User_LDAP\User\Manager;
|
2018-04-25 16:22:28 +03:00
|
|
|
|
use OCP\ILogger;
|
2014-12-20 18:09:04 +03:00
|
|
|
|
|
2016-05-12 17:46:41 +03:00
|
|
|
|
class UpdateGroups extends \OC\BackgroundJob\TimedJob {
|
2020-04-10 17:48:31 +03:00
|
|
|
|
private static $groupsFromDB;
|
2012-08-22 12:31:58 +04:00
|
|
|
|
|
2020-04-10 17:48:31 +03:00
|
|
|
|
private static $groupBE;
|
2012-08-22 12:31:58 +04:00
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
|
public function __construct() {
|
2013-04-21 01:27:46 +04:00
|
|
|
|
$this->interval = self::getRefreshInterval();
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
|
* @param mixed $argument
|
2014-05-11 17:17:27 +04:00
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
|
public function run($argument) {
|
2016-05-12 17:46:41 +03:00
|
|
|
|
self::updateGroups();
|
2013-04-21 01:27:46 +04:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
|
public static function updateGroups() {
|
2018-04-25 16:22:28 +03:00
|
|
|
|
\OCP\Util::writeLog('user_ldap', 'Run background job "updateGroups"', ILogger::DEBUG);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
|
|
|
|
|
$knownGroups = array_keys(self::getKnownGroups());
|
|
|
|
|
$actualGroups = self::getGroupBE()->getGroups();
|
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if (empty($actualGroups) && empty($knownGroups)) {
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – groups do not seem to be configured properly, aborting.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::INFO);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self::handleKnownGroups(array_intersect($actualGroups, $knownGroups));
|
|
|
|
|
self::handleCreatedGroups(array_diff($actualGroups, $knownGroups));
|
|
|
|
|
self::handleRemovedGroups(array_diff($knownGroups, $actualGroups));
|
|
|
|
|
|
2018-04-25 16:22:28 +03:00
|
|
|
|
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – Finished.', ILogger::DEBUG);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function getRefreshInterval() {
|
2012-08-22 14:04:32 +04:00
|
|
|
|
//defaults to every hour
|
2018-01-13 16:25:04 +03:00
|
|
|
|
return \OC::$server->getConfig()->getAppValue('user_ldap', 'bgjRefreshInterval', 3600);
|
2012-08-22 14:04:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
2014-05-15 16:12:17 +04:00
|
|
|
|
* @param string[] $groups
|
2014-05-11 17:17:27 +04:00
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function handleKnownGroups($groups) {
|
2018-04-25 16:22:28 +03:00
|
|
|
|
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – Dealing with known Groups.', ILogger::DEBUG);
|
2018-03-26 14:07:12 +03:00
|
|
|
|
$query = \OC_DB::prepare('
|
2012-08-25 03:52:27 +04:00
|
|
|
|
UPDATE `*PREFIX*ldap_group_members`
|
|
|
|
|
SET `owncloudusers` = ?
|
|
|
|
|
WHERE `owncloudname` = ?
|
2012-08-22 12:31:58 +04:00
|
|
|
|
');
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach ($groups as $group) {
|
2012-08-22 12:31:58 +04:00
|
|
|
|
//we assume, that self::$groupsFromDB has been retrieved already
|
2014-05-16 00:47:28 +04:00
|
|
|
|
$knownUsers = unserialize(self::$groupsFromDB[$group]['owncloudusers']);
|
|
|
|
|
$actualUsers = self::getGroupBE()->usersInGroup($group);
|
|
|
|
|
$hasChanged = false;
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach (array_diff($knownUsers, $actualUsers) as $removedUser) {
|
2020-03-26 11:30:18 +03:00
|
|
|
|
\OCP\Util::emitHook('OC_User', 'post_removeFromGroup', ['uid' => $removedUser, 'gid' => $group]);
|
2014-05-16 00:47:28 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
2013-02-15 01:16:48 +04:00
|
|
|
|
'bgJ "updateGroups" – "'.$removedUser.'" removed from "'.$group.'".',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::INFO);
|
2014-05-16 00:47:28 +04:00
|
|
|
|
$hasChanged = true;
|
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach (array_diff($actualUsers, $knownUsers) as $addedUser) {
|
2020-03-26 11:30:18 +03:00
|
|
|
|
\OCP\Util::emitHook('OC_User', 'post_addToGroup', ['uid' => $addedUser, 'gid' => $group]);
|
2014-05-16 00:47:28 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
2013-02-15 01:16:48 +04:00
|
|
|
|
'bgJ "updateGroups" – "'.$addedUser.'" added to "'.$group.'".',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::INFO);
|
2014-05-16 00:47:28 +04:00
|
|
|
|
$hasChanged = true;
|
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if ($hasChanged) {
|
2020-03-26 11:30:18 +03:00
|
|
|
|
$query->execute([serialize($actualUsers), $group]);
|
2014-05-16 00:47:28 +04:00
|
|
|
|
}
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – FINISHED dealing with known Groups.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::DEBUG);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
2014-05-15 16:12:17 +04:00
|
|
|
|
* @param string[] $createdGroups
|
2014-05-11 17:17:27 +04:00
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function handleCreatedGroups($createdGroups) {
|
2018-04-25 16:22:28 +03:00
|
|
|
|
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – dealing with created Groups.', ILogger::DEBUG);
|
2018-03-26 14:07:12 +03:00
|
|
|
|
$query = \OC_DB::prepare('
|
2012-08-22 12:31:58 +04:00
|
|
|
|
INSERT
|
2012-08-25 03:52:27 +04:00
|
|
|
|
INTO `*PREFIX*ldap_group_members` (`owncloudname`, `owncloudusers`)
|
2012-08-22 12:31:58 +04:00
|
|
|
|
VALUES (?, ?)
|
|
|
|
|
');
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach ($createdGroups as $createdGroup) {
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – new group "'.$createdGroup.'" found.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::INFO);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
$users = serialize(self::getGroupBE()->usersInGroup($createdGroup));
|
2020-03-26 11:30:18 +03:00
|
|
|
|
$query->execute([$createdGroup, $users]);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – FINISHED dealing with created Groups.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::DEBUG);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
2014-05-15 16:12:17 +04:00
|
|
|
|
* @param string[] $removedGroups
|
2014-05-11 17:17:27 +04:00
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function handleRemovedGroups($removedGroups) {
|
2018-04-25 16:22:28 +03:00
|
|
|
|
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – dealing with removed groups.', ILogger::DEBUG);
|
2018-03-26 14:07:12 +03:00
|
|
|
|
$query = \OC_DB::prepare('
|
2012-08-22 12:31:58 +04:00
|
|
|
|
DELETE
|
2012-08-25 03:52:27 +04:00
|
|
|
|
FROM `*PREFIX*ldap_group_members`
|
|
|
|
|
WHERE `owncloudname` = ?
|
2012-08-22 12:31:58 +04:00
|
|
|
|
');
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach ($removedGroups as $removedGroup) {
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – group "'.$removedGroup.'" was removed.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::INFO);
|
2020-03-26 11:30:18 +03:00
|
|
|
|
$query->execute([$removedGroup]);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
2013-02-15 01:16:48 +04:00
|
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
|
'bgJ "updateGroups" – FINISHED dealing with removed groups.',
|
2018-04-25 16:22:28 +03:00
|
|
|
|
ILogger::DEBUG);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
2016-05-12 11:43:34 +03:00
|
|
|
|
* @return \OCA\User_LDAP\Group_LDAP|\OCA\User_LDAP\Group_Proxy
|
2014-05-11 17:17:27 +04:00
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function getGroupBE() {
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if (!is_null(self::$groupBE)) {
|
2012-08-22 12:31:58 +04:00
|
|
|
|
return self::$groupBE;
|
|
|
|
|
}
|
2016-10-10 11:18:18 +03:00
|
|
|
|
$helper = new Helper(\OC::$server->getConfig());
|
2014-08-21 19:59:13 +04:00
|
|
|
|
$configPrefixes = $helper->getServerConfigurationPrefixes(true);
|
2013-11-06 19:25:31 +04:00
|
|
|
|
$ldapWrapper = new LDAP();
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if (count($configPrefixes) === 1) {
|
2013-06-18 22:03:59 +04:00
|
|
|
|
//avoid the proxy when there is only one LDAP server configured
|
2015-01-07 02:52:18 +03:00
|
|
|
|
$dbc = \OC::$server->getDatabaseConnection();
|
2016-05-12 17:16:06 +03:00
|
|
|
|
$userManager = new Manager(
|
2014-06-12 15:32:58 +04:00
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
|
new FilesystemHelper(),
|
|
|
|
|
new LogWrapper(),
|
|
|
|
|
\OC::$server->getAvatarManager(),
|
2015-01-07 02:52:18 +03:00
|
|
|
|
new \OCP\Image(),
|
2016-01-19 17:48:38 +03:00
|
|
|
|
$dbc,
|
2017-03-31 10:16:22 +03:00
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
|
\OC::$server->getNotificationManager());
|
2013-11-06 19:25:31 +04:00
|
|
|
|
$connector = new Connection($ldapWrapper, $configPrefixes[0]);
|
2018-03-19 17:53:30 +03:00
|
|
|
|
$ldapAccess = new Access($connector, $ldapWrapper, $userManager, $helper, \OC::$server->getConfig(), \OC::$server->getUserManager());
|
2015-01-07 02:52:18 +03:00
|
|
|
|
$groupMapper = new GroupMapping($dbc);
|
|
|
|
|
$userMapper = new UserMapping($dbc);
|
2015-01-06 19:50:06 +03:00
|
|
|
|
$ldapAccess->setGroupMapper($groupMapper);
|
|
|
|
|
$ldapAccess->setUserMapper($userMapper);
|
2017-11-02 15:40:38 +03:00
|
|
|
|
self::$groupBE = new \OCA\User_LDAP\Group_LDAP($ldapAccess, \OC::$server->query('LDAPGroupPluginManager'));
|
2013-06-18 22:03:59 +04:00
|
|
|
|
} else {
|
2017-11-02 15:40:38 +03:00
|
|
|
|
self::$groupBE = new \OCA\User_LDAP\Group_Proxy($configPrefixes, $ldapWrapper, \OC::$server->query('LDAPGroupPluginManager'));
|
2013-06-18 22:03:59 +04:00
|
|
|
|
}
|
2012-08-22 12:31:58 +04:00
|
|
|
|
|
|
|
|
|
return self::$groupBE;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
|
/**
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
|
private static function getKnownGroups() {
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if (is_array(self::$groupsFromDB)) {
|
2012-08-22 12:31:58 +04:00
|
|
|
|
return self::$groupsFromDB;
|
|
|
|
|
}
|
2018-03-26 14:07:12 +03:00
|
|
|
|
$query = \OC_DB::prepare('
|
2012-08-25 03:52:27 +04:00
|
|
|
|
SELECT `owncloudname`, `owncloudusers`
|
|
|
|
|
FROM `*PREFIX*ldap_group_members`
|
2012-08-22 12:31:58 +04:00
|
|
|
|
');
|
|
|
|
|
$result = $query->execute()->fetchAll();
|
2020-03-26 11:30:18 +03:00
|
|
|
|
self::$groupsFromDB = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
|
foreach ($result as $dataset) {
|
2014-05-16 00:47:28 +04:00
|
|
|
|
self::$groupsFromDB[$dataset['owncloudname']] = $dataset;
|
2012-08-22 12:31:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return self::$groupsFromDB;
|
|
|
|
|
}
|
2013-02-15 01:16:48 +04:00
|
|
|
|
}
|