2011-06-26 10:44:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Main command page for phpLDAPadmin
|
|
|
|
* All pages are rendered through this script.
|
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
* @subpackage Page
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once './common.php';
|
|
|
|
|
|
|
|
$www = array();
|
|
|
|
$www['cmd'] = get_request('cmd','REQUEST');
|
|
|
|
$www['meth'] = get_request('meth','REQUEST');
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
|
2011-07-26 15:26:21 +00:00
|
|
|
if (defined('HOOKSDIR') && file_exists(HOOKSDIR.$www['cmd'].'.php'))
|
|
|
|
$app['script_cmd'] = HOOKSDIR.$www['cmd'].'.php';
|
2011-06-26 10:44:28 +00:00
|
|
|
|
2011-07-26 15:26:21 +00:00
|
|
|
elseif (defined('HTDOCDIR') && file_exists(HTDOCDIR.$www['cmd'].'.php'))
|
|
|
|
$app['script_cmd'] = HTDOCDIR.$www['cmd'].'.php';
|
2011-06-26 10:44:28 +00:00
|
|
|
|
2011-07-26 15:26:21 +00:00
|
|
|
elseif (file_exists('welcome.php'))
|
|
|
|
$app['script_cmd'] = 'welcome.php';
|
2011-06-26 10:44:28 +00:00
|
|
|
|
2011-07-26 15:26:21 +00:00
|
|
|
else
|
|
|
|
$app['script_cmd'] = null;
|
2011-06-26 10:44:28 +00:00
|
|
|
|
|
|
|
# Create page.
|
|
|
|
# Set the index so that we render the right server tree.
|
|
|
|
$www['page'] = new page($app['server']->getIndex());
|
|
|
|
|
|
|
|
# See if we can render the command
|
|
|
|
if (trim($www['cmd'])) {
|
|
|
|
# If this is a READ-WRITE operation, the LDAP server must not be in READ-ONLY mode.
|
|
|
|
if ($app['server']->isReadOnly() && ! in_array(get_request('cmd','REQUEST'),$app['readwrite_cmds']))
|
2011-07-08 08:29:26 +00:00
|
|
|
error(('You cannot perform updates while server is in read-only mode'),'error','index.php');
|
2011-06-26 10:44:28 +00:00
|
|
|
|
|
|
|
# If this command has been disabled by the config.
|
|
|
|
if (! $_SESSION[APPCONFIG]->isCommandAvailable('script',$www['cmd'])) {
|
2011-07-08 08:29:26 +00:00
|
|
|
system_message(array('title'=>('Command disabled by the server configuration'),
|
|
|
|
('Error'),'body'=>sprintf('%s: <b>%s</b>.',('The command could not be run'),htmlspecialchars($www['cmd'])),'type'=>'error'),'index.php');
|
2011-06-26 10:44:28 +00:00
|
|
|
|
|
|
|
$app['script_cmd'] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($app['script_cmd'])
|
|
|
|
include $app['script_cmd'];
|
|
|
|
|
|
|
|
# Refresh a frame - this is so that one frame can trigger another frame to be refreshed.
|
|
|
|
if (isAjaxEnabled() && get_request('refresh','REQUEST') && get_request('refresh','REQUEST') != get_request('frame','REQUEST')) {
|
|
|
|
echo '<script type="text/javascript" language="javascript">';
|
|
|
|
printf("ajDISPLAY('%s','cmd=refresh&server_id=%s&noheader=%s','%s');",
|
2011-07-12 19:23:27 +00:00
|
|
|
get_request('refresh','REQUEST'),$app['server']->getIndex(),get_request('noheader','REQUEST',false,0),('Auto refresh'));
|
2011-06-26 10:44:28 +00:00
|
|
|
echo '</script>';
|
|
|
|
}
|
|
|
|
|
|
|
|
# Capture the output and put into the body of the page.
|
|
|
|
$www['body'] = new block();
|
|
|
|
$www['body']->SetBody(ob_get_contents());
|
|
|
|
$www['page']->block_add('body',$www['body']);
|
|
|
|
ob_end_clean();
|
|
|
|
|
|
|
|
if ($www['meth'] == 'ajax')
|
|
|
|
$www['page']->show(get_request('frame','REQUEST',false,'BODY'),true,get_request('raw','REQUEST',false,false));
|
|
|
|
else
|
|
|
|
$www['page']->display();
|
|
|
|
?>
|