2011-06-24 00:51:25 +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 Dominik Schmidt <dev@dominik-schmidt.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Juan Pablo Villafáñez <jvillafanez@solidgear.es>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Roger Szabo <roger.szabo@web.de>
|
|
|
|
* @author Vinicius Cubas Brand <vinicius@eita.org.br>
|
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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2017-11-02 15:40:38 +03:00
|
|
|
\OC::$server->registerService('LDAPUserPluginManager', function() {
|
|
|
|
return new OCA\User_LDAP\UserPluginManager();
|
|
|
|
});
|
|
|
|
\OC::$server->registerService('LDAPGroupPluginManager', function() {
|
|
|
|
return new OCA\User_LDAP\GroupPluginManager();
|
|
|
|
});
|
|
|
|
|
2016-10-10 11:18:18 +03:00
|
|
|
$helper = new \OCA\User_LDAP\Helper(\OC::$server->getConfig());
|
2014-08-21 19:59:13 +04:00
|
|
|
$configPrefixes = $helper->getServerConfigurationPrefixes(true);
|
2017-04-19 20:05:27 +03:00
|
|
|
if(count($configPrefixes) > 0) {
|
|
|
|
$ldapWrapper = new OCA\User_LDAP\LDAP();
|
|
|
|
$ocConfig = \OC::$server->getConfig();
|
|
|
|
$notificationManager = \OC::$server->getNotificationManager();
|
|
|
|
$notificationManager->registerNotifier(function() {
|
|
|
|
return new \OCA\User_LDAP\Notification\Notifier(
|
|
|
|
\OC::$server->getL10NFactory()
|
|
|
|
);
|
|
|
|
}, function() {
|
2017-03-31 10:16:22 +03:00
|
|
|
$l = \OC::$server->getL10N('user_ldap');
|
|
|
|
return [
|
|
|
|
'id' => 'user_ldap',
|
|
|
|
'name' => $l->t('LDAP user and group backend'),
|
|
|
|
];
|
2017-04-19 20:05:27 +03:00
|
|
|
});
|
2017-09-15 17:01:54 +03:00
|
|
|
$userSession = \OC::$server->getUserSession();
|
2015-01-07 02:52:18 +03:00
|
|
|
|
2017-11-02 15:40:38 +03:00
|
|
|
$userPluginManager = \OC::$server->query('LDAPUserPluginManager');
|
|
|
|
$groupPluginManager = \OC::$server->query('LDAPGroupPluginManager');
|
|
|
|
|
2016-05-12 12:01:29 +03:00
|
|
|
$userBackend = new OCA\User_LDAP\User_Proxy(
|
2017-11-02 15:40:38 +03:00
|
|
|
$configPrefixes, $ldapWrapper, $ocConfig, $notificationManager, $userSession, $userPluginManager
|
2015-01-07 01:28:49 +03:00
|
|
|
);
|
2017-11-02 15:40:38 +03:00
|
|
|
$groupBackend = new OCA\User_LDAP\Group_Proxy($configPrefixes, $ldapWrapper, $groupPluginManager);
|
2013-01-25 01:39:05 +04:00
|
|
|
// register user backend
|
|
|
|
OC_User::useBackend($userBackend);
|
2017-11-02 15:40:38 +03:00
|
|
|
|
|
|
|
// Hook to allow plugins to work on registered backends
|
|
|
|
OC::$server->getEventDispatcher()->dispatch('OCA\\User_LDAP\\User\\User::postLDAPBackendAdded');
|
|
|
|
|
2017-03-03 10:24:27 +03:00
|
|
|
\OC::$server->getGroupManager()->addBackend($groupBackend);
|
2013-01-25 01:39:05 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2015-02-20 15:09:33 +03:00
|
|
|
\OCP\Util::connectHook(
|
|
|
|
'\OCA\Files_Sharing\API\Server2Server',
|
|
|
|
'preLoginNameUsedAsUserName',
|
2016-05-12 17:28:21 +03:00
|
|
|
'\OCA\User_LDAP\Helper',
|
2015-02-20 15:09:33 +03:00
|
|
|
'loginName2UserName'
|
|
|
|
);
|