1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003 Cajus Pollmeier
Copyright (C) 2011-2016 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
require_once("class_setupStep.inc");
class fake_userinfo extends userinfo
{
function __construct()
{
$this->cn = 'fake_cn';
$this->dn = 'fake_dn';
$this->uid = 'fake_uid';
$this->ip = $_SERVER['REMOTE_ADDR'];
/* This fake user have all rights */
$this->ignoreACL = TRUE;
/* Initialize ACL_CACHE */
$this->reset_acl_cache();
}
}
class setup
{
/* Number of setup steps */
var $i_steps;
/* Current step */
var $i_current = 0;
/* Previous setup step; */
var $i_previous = 0;
var $i_config = 4;
var $o_steps = array();
var $captured_values = array();
function __construct()
{
$this->o_steps = array(
new Step_Welcome($this),
new Step_Language($this),
new Step_Checks($this),
new Step_Ldap($this),
new Step_Config_before_init($this),
new Step_Migrate($this),
new Step_Finish($this),
);
$this->i_steps = count($this->o_steps);
/* Ensure that setup is not reachable if fusiondirectory.conf exist (CONFIG_FILE) */
if (file_exists(CONFIG_DIR."/".CONFIG_FILE)) {
session::destroy();
header("Location: index.php");
exit();
}
}
function execute()
{
/* Display phpinfo() dialog when $_GET['info'] is set,
* but only do this, if user is allowed to use the setup.
* If setupStep_Welcome is_completed, we are allowed to view those infos-
*/
if (isset($_GET['info']) && preg_match("/Step_Welcome/i", get_class($this->o_steps[1])) && $this->o_steps[1]->is_completed()) {
phpinfo();
exit();
}
$smarty = get_smarty();
$smarty->assign('usePrototype', 'true');
$this->o_steps[$this->i_previous]->set_active(FALSE);
$this->o_steps[$this->i_current]->set_active();
$content = $this->o_steps[$this->i_current]->execute();
return $content;
}
/* Save posted attributes */
function save_object()
{
/* Call save_object for current setup step */
$this->o_steps[$this->i_current]->save_object();
/* Get attributes from setup step */
$tmp = $this->o_steps[$this->i_current]->get_attributes();
foreach ($tmp as $name => $value) {
$this->captured_values[$name] = $value;
}
/* Set parent */
foreach ($this->o_steps as $key => $value) {
$this->o_steps[$key]->parent = $this;
}
/* Check if image button requests next page */
foreach ($_POST as $name => $value) {
if (preg_match("/^next_(x|y)/", $name)) {
$_POST['next'] = TRUE;
}
if (preg_match("/^last_(x|y)/", $name)) {
$_POST['last'] = TRUE;
}
}
/* display step error msgs */
$msgs = $this->o_steps[$this->i_current]->check();
foreach ($msgs as $msg) {
msg_dialog::display(_("Setup error"), $msg, ERROR_DIALOG);
}
/* Check if step was selected */
if (isset($_GET['step']) || isset($_POST['next']) || isset($_POST['last'])) {
/* check if current setup step is completed now
and activate the next step if possible */
for ($i = 0; $i < $this->i_steps; $i++) {
if ($this->o_steps[$i]->is_completed()) {
if (isset($this->o_steps[($i + 1)])) {
$this->o_steps[($i + 1)]->set_enabled();
}
} else {
$this->disable_steps_from($i + 1);
break;
}
}
}
/* Disable all following steps, if one step isn't completed right now .*/
for ($i = 0; $i < $this->i_steps; $i++) {
if (!$this->o_steps[$i]->is_completed()) {
$this->disable_steps_from($i + 1);
break;
}
}
$step = -1;
if (isset($_POST['setup_goto_step'])) {
$step = $_POST['setup_goto_step'];
}
if (isset($_GET['step'])) {
$step = $_GET['step'];
} elseif (isset($_POST['next'])) {
$step = $this->i_current + 1;
} elseif (isset($_POST['last'])) {
$step = $this->i_current - 1;
}
foreach ($_POST as $name => $value) {
if (preg_match("/^step_[0-9]*$/", $name)) {
$step = preg_replace("/^step_/", "", $name);
break;
}
}
if ($this->selectable_step($step)) {
$this->i_previous = $this->i_current;
$this->i_current = $step;
}
}
function disable_steps_from($start)
{
for ($i = $start; $i < $this->i_steps; $i++) {
$this->o_steps[$i]->set_enabled(FALSE);
$this->o_steps[$i]->set_completed(FALSE);
}
}
/* Create navigation menu */
function get_navigation_html()
{
$str = '<ul class="menu"><li><a>FusionDirectory Setup</a><ul>';
foreach ($this->o_steps as $key => $step) {
$step->update_strings();
$s_short_name = $step->get_short_name();
$s_description = $step->get_description();
$b_active = $step->is_active();
$b_enabled = $step->is_enabled();
$b_completed = $step->is_completed();
if ($b_completed) {
$s = '<img src="geticon.php?context=status&icon=task-complete&size=16" alt="'._('Completed').'" class="center optional"/> ';
} else {
$s = '<img src="images/empty.png" alt=" " class="center optional"/> ';
}
if ($b_enabled) {
if ($b_active) {
$str .= '<li class="menuitem menucurrent" title="'.$s_description.'">';
$str .= '<a class="navigation-title">'.$s.$s_short_name.'</a>';
$str .= '<a class="navigation-info">'.$s_description.'</a>';
$str .= '</li>';
} else {
$str .= '<li class="menuitem" title="'.$s_description.'">';
$str .= '<a onClick="document.mainform.setup_goto_step.value=\''.$key.'\';document.mainform.submit();"
class="navigation-title">'.$s.$s_short_name.'</a>';
$str .= '</li>';
}
} else {
$str .= '<li class="menuitem disabled" title="'.$s_description.'">';
$str .= '<a class="navigation-title">'.$s.$s_short_name.'</a>';
$str .= '</li>';
}
}
$str .= '</li></ul>';
return $str;
}
function get_bottom_html()
{
/* Skip adding forward/backward button,
* if the currently opened step is a sub dialog
*/
if ($this->o_steps[$this->i_current]->dialog) {
$str = '';
} else {
$str = ' <p class="plugbottom">';
if (isset($this->o_steps[$this->i_current - 1]) && $this->o_steps[$this->i_current - 1]->is_enabled()) {
$str .= '<input type="submit" name="last" value="'.msgPool::backButton().'"/>';
} else {
$str .= '<input type="button" name="last" value="'.msgPool::backButton().'" disabled="disabled"/>';
}
$str .= ' ';
$str .= '<input type="submit" name="next" value="'._('Next').'"/>';
$str .= '</p>';
}
return $str;
}
/* Create header entry */
function get_header_text()
{
return $this->o_steps[$this->i_current]->get_title();
}
/* Create header entry */
function get_header_image()
{
return $this->o_steps[$this->i_current]->header_image;
}
/* Check if the given step id is valid and selectable */
function selectable_step($id)
{
if (isset($this->o_steps[$id]) && $this->o_steps[$id]->is_enabled()) {
return TRUE;
}
return FALSE;
}
function step_name_to_id($name)
{
foreach ($this->o_steps as $id => $class) {
if (get_class($class) == $name) {
return $id;
}
}
return 0;
}
/* Called when LDAP is configured */
function read_ldap_config()
{
global $config;
/* Get attributes from current ldap step */
$tmp = $this->o_steps[$this->i_current]->get_attributes();
foreach ($tmp as $name => $value) {
$this->captured_values[$name] = $value;
}
$smarty = get_smarty();
$cv = $this->captured_values;
/* Fill missing values needed by config file template (config step not done yet) */
$cv['fdLogging'] = FALSE;
$cv['fdDisplayErrors'] = FALSE;
$cv['fdForceSSL'] = TRUE;
$cv['debugLevel'] = 0;
$smarty->assign('cv', xmlentities($cv));
$smarty->assign('templateCompileDirectory', SPOOL_DIR);
$xml = $smarty->fetch(CONFIG_TEMPLATE_DIR.CONFIG_FILE);
$config->parse_data($xml);
$config->set_current($config->data['MAIN']['DEFAULT']);
session::global_un_set('plist');
load_plist();
$this->reBuildConfigStep();
}
function getDebugLevel ()
{
return $this->o_steps[$this->i_config]->attributesAccess['fdDebugLevel']->computeLdapValue();
}
function reBuildConfigStep ($completed = NULL)
{
$this->o_steps[$this->i_config] = new Step_Config($this, $this->captured_values);
if ($completed !== NULL) {
$this->o_steps[$this->i_config]->is_completed = $completed;
}
}
}
?>
|