2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2011-06-24 00:51:25 +04:00
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* ownCloud - user_ldap
|
|
|
|
*
|
|
|
|
* @author Dominik Schmidt
|
|
|
|
* @copyright 2011 Dominik Schmidt dev@dominik-schmidt.de
|
|
|
|
* @copyright 2014 Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-07-25 15:14:32 +04:00
|
|
|
OCP\App::registerAdmin('user_ldap', 'settings');
|
2011-08-23 03:40:13 +04:00
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
$helper = new \OCA\user_ldap\lib\Helper();
|
|
|
|
$configPrefixes = $helper->getServerConfigurationPrefixes(true);
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldapWrapper = new OCA\user_ldap\lib\LDAP();
|
2015-01-07 01:28:49 +03:00
|
|
|
$ocConfig = \OC::$server->getConfig();
|
2013-04-21 00:45:17 +04:00
|
|
|
if(count($configPrefixes) === 1) {
|
2015-01-07 02:52:18 +03:00
|
|
|
$dbc = \OC::$server->getDatabaseConnection();
|
2014-03-27 21:01:14 +04:00
|
|
|
$userManager = new OCA\user_ldap\lib\user\Manager($ocConfig,
|
|
|
|
new OCA\user_ldap\lib\FilesystemHelper(),
|
|
|
|
new OCA\user_ldap\lib\LogWrapper(),
|
2014-03-31 12:48:49 +04:00
|
|
|
\OC::$server->getAvatarManager(),
|
2015-01-07 02:52:18 +03:00
|
|
|
new \OCP\Image(),
|
|
|
|
$dbc
|
|
|
|
);
|
2013-09-10 19:11:02 +04:00
|
|
|
$connector = new OCA\user_ldap\lib\Connection($ldapWrapper, $configPrefixes[0]);
|
2014-03-27 21:01:14 +04:00
|
|
|
$ldapAccess = new OCA\user_ldap\lib\Access($connector, $ldapWrapper, $userManager);
|
2015-01-07 02:52:18 +03:00
|
|
|
|
2014-11-05 15:05:07 +03:00
|
|
|
$ldapAccess->setUserMapper(new OCA\User_LDAP\Mapping\UserMapping($dbc));
|
|
|
|
$ldapAccess->setGroupMapper(new OCA\User_LDAP\Mapping\GroupMapping($dbc));
|
2015-01-07 01:28:49 +03:00
|
|
|
$userBackend = new OCA\user_ldap\USER_LDAP($ldapAccess, $ocConfig);
|
2013-09-10 19:11:02 +04:00
|
|
|
$groupBackend = new OCA\user_ldap\GROUP_LDAP($ldapAccess);
|
2013-10-10 17:24:10 +04:00
|
|
|
} else if(count($configPrefixes) > 1) {
|
2015-01-07 01:28:49 +03:00
|
|
|
$userBackend = new OCA\user_ldap\User_Proxy(
|
|
|
|
$configPrefixes, $ldapWrapper, $ocConfig
|
|
|
|
);
|
2013-09-10 19:11:02 +04:00
|
|
|
$groupBackend = new OCA\user_ldap\Group_Proxy($configPrefixes, $ldapWrapper);
|
2013-01-16 17:59:41 +04:00
|
|
|
}
|
2012-07-25 14:37:39 +04:00
|
|
|
|
2013-01-25 01:39:05 +04:00
|
|
|
if(count($configPrefixes) > 0) {
|
|
|
|
// register user backend
|
|
|
|
OC_User::useBackend($userBackend);
|
|
|
|
OC_Group::useBackend($groupBackend);
|
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2013-04-21 01:27:46 +04:00
|
|
|
OCP\Backgroundjob::registerJob('OCA\user_ldap\lib\Jobs');
|
2014-08-21 19:59:13 +04:00
|
|
|
OCP\Backgroundjob::registerJob('\OCA\User_LDAP\Jobs\CleanUp');
|
|
|
|
|
2012-12-14 03:29:15 +04:00
|
|
|
if(OCP\App::isEnabled('user_webdavauth')) {
|
2013-02-15 01:16:48 +04:00
|
|
|
OCP\Util::writeLog('user_ldap',
|
|
|
|
'user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour',
|
|
|
|
OCP\Util::WARN);
|
2012-12-14 03:29:15 +04:00
|
|
|
}
|