2011-06-23 20:51:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 14:49:16 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Dominik Schmidt <dev@dominik-schmidt.de>
|
2016-07-21 14:49:16 +00:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-03-01 16:25:15 +00:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 10:44:34 +00: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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2012-07-25 11:14:32 +00:00
|
|
|
OCP\App::registerAdmin('user_ldap', 'settings');
|
2011-08-22 23:40:13 +00:00
|
|
|
|
2016-05-12 14:28:21 +00:00
|
|
|
$helper = new \OCA\User_LDAP\Helper();
|
2014-08-21 15:59:13 +00:00
|
|
|
$configPrefixes = $helper->getServerConfigurationPrefixes(true);
|
2016-05-12 14:21:28 +00:00
|
|
|
$ldapWrapper = new OCA\User_LDAP\LDAP();
|
2015-01-06 22:28:49 +00:00
|
|
|
$ocConfig = \OC::$server->getConfig();
|
2013-04-20 20:45:17 +00:00
|
|
|
if(count($configPrefixes) === 1) {
|
2015-01-06 23:52:18 +00:00
|
|
|
$dbc = \OC::$server->getDatabaseConnection();
|
2016-05-12 09:25:50 +00:00
|
|
|
$userManager = new OCA\User_LDAP\User\Manager($ocConfig,
|
2016-05-12 14:31:35 +00:00
|
|
|
new OCA\User_LDAP\FilesystemHelper(),
|
2016-05-12 14:16:06 +00:00
|
|
|
new OCA\User_LDAP\LogWrapper(),
|
2014-03-31 08:48:49 +00:00
|
|
|
\OC::$server->getAvatarManager(),
|
2015-01-06 23:52:18 +00:00
|
|
|
new \OCP\Image(),
|
2016-01-19 14:48:38 +00:00
|
|
|
$dbc,
|
|
|
|
\OC::$server->getUserManager()
|
2015-01-06 23:52:18 +00:00
|
|
|
);
|
2016-05-12 14:35:33 +00:00
|
|
|
$connector = new OCA\User_LDAP\Connection($ldapWrapper, $configPrefixes[0]);
|
2016-05-12 14:42:57 +00:00
|
|
|
$ldapAccess = new OCA\User_LDAP\Access($connector, $ldapWrapper, $userManager);
|
2015-01-06 23:52:18 +00:00
|
|
|
|
2014-11-05 12:05:07 +00:00
|
|
|
$ldapAccess->setUserMapper(new OCA\User_LDAP\Mapping\UserMapping($dbc));
|
|
|
|
$ldapAccess->setGroupMapper(new OCA\User_LDAP\Mapping\GroupMapping($dbc));
|
2016-05-12 09:01:29 +00:00
|
|
|
$userBackend = new OCA\User_LDAP\User_LDAP($ldapAccess, $ocConfig);
|
2016-05-12 08:43:34 +00:00
|
|
|
$groupBackend = new \OCA\User_LDAP\Group_LDAP($ldapAccess);
|
2013-10-10 13:24:10 +00:00
|
|
|
} else if(count($configPrefixes) > 1) {
|
2016-05-12 09:01:29 +00:00
|
|
|
$userBackend = new OCA\User_LDAP\User_Proxy(
|
2015-01-06 22:28:49 +00:00
|
|
|
$configPrefixes, $ldapWrapper, $ocConfig
|
|
|
|
);
|
2016-05-12 08:43:34 +00:00
|
|
|
$groupBackend = new OCA\User_LDAP\Group_Proxy($configPrefixes, $ldapWrapper);
|
2013-01-16 13:59:41 +00:00
|
|
|
}
|
2012-07-25 10:37:39 +00:00
|
|
|
|
2013-01-24 21:39:05 +00:00
|
|
|
if(count($configPrefixes) > 0) {
|
|
|
|
// register user backend
|
|
|
|
OC_User::useBackend($userBackend);
|
|
|
|
OC_Group::useBackend($groupBackend);
|
|
|
|
}
|
2011-06-23 20:51:25 +00:00
|
|
|
|
2015-02-20 12:09:33 +00:00
|
|
|
\OCP\Util::connectHook(
|
|
|
|
'\OCA\Files_Sharing\API\Server2Server',
|
|
|
|
'preLoginNameUsedAsUserName',
|
2016-05-12 14:28:21 +00:00
|
|
|
'\OCA\User_LDAP\Helper',
|
2015-02-20 12:09:33 +00:00
|
|
|
'loginName2UserName'
|
|
|
|
);
|
|
|
|
|
2012-12-13 23:29:15 +00:00
|
|
|
if(OCP\App::isEnabled('user_webdavauth')) {
|
2013-02-14 21:16:48 +00:00
|
|
|
OCP\Util::writeLog('user_ldap',
|
|
|
|
'user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour',
|
|
|
|
OCP\Util::WARN);
|
2012-12-13 23:29:15 +00:00
|
|
|
}
|