2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author ben-denham <bend@catalyst.net.nz>
|
|
|
|
* @author Dominik Schmidt <dev@dominik-schmidt.de>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Volkan Gezer <volkangezer@gmail.com>
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2011-06-24 00:51:25 +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.
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-06-24 00:51:25 +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.
|
2011-06-24 00:51:25 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2012-12-17 17:46:57 +04:00
|
|
|
OC_Util::checkAdminUser();
|
|
|
|
|
2014-03-07 01:10:42 +04:00
|
|
|
OCP\Util::addScript('user_ldap', 'ldapFilter');
|
2014-10-07 19:28:09 +04:00
|
|
|
OCP\Util::addScript('user_ldap', 'experiencedAdmin');
|
2013-10-04 18:33:37 +04:00
|
|
|
OCP\Util::addScript('user_ldap', 'settings');
|
2014-11-06 17:48:34 +03:00
|
|
|
\OC_Util::addVendorScript('user_ldap', 'ui-multiselect/src/jquery.multiselect');
|
2013-10-04 18:33:37 +04:00
|
|
|
OCP\Util::addStyle('user_ldap', 'settings');
|
2014-11-06 17:48:34 +03:00
|
|
|
\OC_Util::addVendorStyle('user_ldap', 'ui-multiselect/jquery.multiselect');
|
2011-06-24 00:51:25 +04:00
|
|
|
|
|
|
|
// fill template
|
2013-01-18 14:42:34 +04:00
|
|
|
$tmpl = new OCP\Template('user_ldap', 'settings');
|
2013-01-24 15:42:28 +04:00
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
$helper = new \OCA\user_ldap\lib\Helper();
|
|
|
|
$prefixes = $helper->getServerConfigurationPrefixes();
|
|
|
|
$hosts = $helper->getServerConfigurationHosts();
|
2013-09-27 20:30:59 +04:00
|
|
|
|
|
|
|
$wizardHtml = '';
|
|
|
|
$toc = array();
|
|
|
|
|
|
|
|
$wControls = new OCP\Template('user_ldap', 'part.wizardcontrols');
|
|
|
|
$wControls = $wControls->fetchPage();
|
|
|
|
$sControls = new OCP\Template('user_ldap', 'part.settingcontrols');
|
|
|
|
$sControls = $sControls->fetchPage();
|
|
|
|
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('user_ldap');
|
2014-05-25 14:35:46 +04:00
|
|
|
|
2013-10-10 00:00:36 +04:00
|
|
|
$wizTabs = array();
|
2014-05-25 14:35:46 +04:00
|
|
|
$wizTabs[] = array('tpl' => 'part.wizard-server', 'cap' => $l->t('Server'));
|
|
|
|
$wizTabs[] = array('tpl' => 'part.wizard-userfilter', 'cap' => $l->t('User Filter'));
|
|
|
|
$wizTabs[] = array('tpl' => 'part.wizard-loginfilter', 'cap' => $l->t('Login Filter'));
|
|
|
|
$wizTabs[] = array('tpl' => 'part.wizard-groupfilter', 'cap' => $l->t('Group Filter'));
|
2014-10-24 01:27:15 +04:00
|
|
|
$wizTabsCount = count($wizTabs);
|
|
|
|
for($i = 0; $i < $wizTabsCount; $i++) {
|
2013-10-10 00:00:36 +04:00
|
|
|
$tab = new OCP\Template('user_ldap', $wizTabs[$i]['tpl']);
|
|
|
|
if($i === 0) {
|
|
|
|
$tab->assign('serverConfigurationPrefixes', $prefixes);
|
|
|
|
$tab->assign('serverConfigurationHosts', $hosts);
|
|
|
|
}
|
|
|
|
$tab->assign('wizardControls', $wControls);
|
|
|
|
$wizardHtml .= $tab->fetchPage();
|
|
|
|
$toc['#ldapWizard'.($i+1)] = $wizTabs[$i]['cap'];
|
|
|
|
}
|
2013-10-09 01:47:57 +04:00
|
|
|
|
2013-09-27 20:30:59 +04:00
|
|
|
$tmpl->assign('tabs', $wizardHtml);
|
|
|
|
$tmpl->assign('toc', $toc);
|
2013-10-10 21:37:12 +04:00
|
|
|
$tmpl->assign('settingControls', $sControls);
|
2013-09-27 20:30:59 +04:00
|
|
|
|
2013-01-18 16:45:39 +04:00
|
|
|
// assign default values
|
2013-09-27 00:31:57 +04:00
|
|
|
$config = new \OCA\user_ldap\lib\Configuration('', false);
|
|
|
|
$defaults = $config->getDefaults();
|
2013-01-18 16:45:39 +04:00
|
|
|
foreach($defaults as $key => $default) {
|
2014-05-16 00:47:28 +04:00
|
|
|
$tmpl->assign($key.'_default', $default);
|
2013-01-18 16:45:39 +04:00
|
|
|
}
|
|
|
|
|
2011-08-23 03:40:13 +04:00
|
|
|
return $tmpl->fetchPage();
|