2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - user_ldap
|
|
|
|
*
|
|
|
|
* @author Dominik Schmidt
|
|
|
|
* @copyright 2011 Dominik Schmidt dev@dominik-schmidt.de
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2013-01-25 01:39:05 +04:00
|
|
|
$configPrefixes = OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(true);
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldapWrapper = new OCA\user_ldap\lib\LDAP();
|
2013-04-21 00:45:17 +04:00
|
|
|
if(count($configPrefixes) === 1) {
|
2013-09-10 19:11:02 +04:00
|
|
|
$connector = new OCA\user_ldap\lib\Connection($ldapWrapper, $configPrefixes[0]);
|
|
|
|
$ldapAccess = new OCA\user_ldap\lib\Access($connector, $ldapWrapper);
|
|
|
|
$userBackend = new OCA\user_ldap\USER_LDAP($ldapAccess);
|
|
|
|
$groupBackend = new OCA\user_ldap\GROUP_LDAP($ldapAccess);
|
2013-10-10 17:24:10 +04:00
|
|
|
} else if(count($configPrefixes) > 1) {
|
2013-09-10 19:11:02 +04:00
|
|
|
$userBackend = new OCA\user_ldap\User_Proxy($configPrefixes, $ldapWrapper);
|
|
|
|
$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
|
|
|
|
|
|
|
// add settings page to navigation
|
|
|
|
$entry = array(
|
2012-02-16 20:55:39 +04:00
|
|
|
'id' => 'user_ldap_settings',
|
2011-06-24 00:51:25 +04:00
|
|
|
'order'=>1,
|
2012-05-02 01:19:39 +04:00
|
|
|
'href' => OCP\Util::linkTo( 'user_ldap', 'settings.php' ),
|
2011-06-24 00:51:25 +04:00
|
|
|
'name' => 'LDAP'
|
|
|
|
);
|
2012-08-22 12:31:58 +04:00
|
|
|
|
2013-04-21 01:27:46 +04:00
|
|
|
OCP\Backgroundjob::registerJob('OCA\user_ldap\lib\Jobs');
|
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
|
|
|
}
|