2007-12-05 03:27:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGgroupWare setup - show/return the header.inc.php
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @package setup
|
2016-05-01 17:56:49 +02:00
|
|
|
* @copyright (c) 2007-16 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2007-12-05 03:27:49 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
2016-05-01 17:56:49 +02:00
|
|
|
* @version $Id$
|
2007-12-05 03:27:49 +01:00
|
|
|
*/
|
|
|
|
|
2016-05-01 17:56:49 +02:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2007-12-05 03:27:49 +01:00
|
|
|
/**
|
|
|
|
* setup command: show/return the header.inc.php
|
2016-05-01 17:56:49 +02:00
|
|
|
*
|
2007-12-05 03:27:49 +01:00
|
|
|
* Has no constructor, as we have no arguments beside the header admin user and password,
|
|
|
|
* which get set via setup_cmd::set_header_secret($user,$pw)
|
|
|
|
*/
|
2016-05-01 17:56:49 +02:00
|
|
|
class setup_cmd_showheader extends setup_cmd
|
2007-12-05 03:27:49 +01:00
|
|
|
{
|
2008-01-14 06:44:32 +01:00
|
|
|
/**
|
|
|
|
* Allow to run this command via setup-cli
|
|
|
|
*/
|
|
|
|
const SETUP_CLI_CALLABLE = true;
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-05 03:27:49 +01:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2016-05-01 17:56:49 +02:00
|
|
|
* @param boolean $data=true true: send only the remote_hash, domain and webserver_url,
|
2007-12-10 05:59:01 +01:00
|
|
|
* false: the complete header vars, plus install_id and webserver_url from the config table,
|
|
|
|
* null: only the header vars
|
2007-12-05 03:27:49 +01:00
|
|
|
*/
|
2007-12-19 00:13:59 +01:00
|
|
|
function __construct($data=true,$header_admin_user=null,$header_admin_password=null)
|
2007-12-05 03:27:49 +01:00
|
|
|
{
|
2007-12-07 01:07:08 +01:00
|
|
|
if (!is_array($data))
|
|
|
|
{
|
|
|
|
$data = array(
|
|
|
|
'hash_only' => $data,
|
2007-12-19 00:13:59 +01:00
|
|
|
'header_admin_user' => $header_admin_user,
|
|
|
|
'header_admin_password' => $header_admin_password,
|
2007-12-07 01:07:08 +01:00
|
|
|
);
|
|
|
|
}
|
2007-12-05 03:27:49 +01:00
|
|
|
//echo __CLASS__.'::__construct()'; _debug_array($data);
|
|
|
|
admin_cmd::__construct($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show/return the header.inc.php
|
2016-05-01 17:56:49 +02:00
|
|
|
*
|
|
|
|
* @param boolean $check_only =false only run the checks (and throw the exceptions), but not the command itself
|
2007-12-05 03:27:49 +01:00
|
|
|
* @return string serialized $GLOBALS defined in the header.inc.php
|
|
|
|
* @throws Exception(lang('Wrong credentials to access the header.inc.php file!'),2);
|
|
|
|
* @throws Exception('header.inc.php not found!');
|
|
|
|
*/
|
|
|
|
function exec($check_only=false)
|
|
|
|
{
|
|
|
|
if ($this->remote_id && $check_only) return true; // cant check for the remote site locally!
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-05 03:27:49 +01:00
|
|
|
$this->_check_header_access();
|
|
|
|
|
|
|
|
if ($check_only) return true;
|
|
|
|
|
|
|
|
$egw_info_backup = $GLOBALS['egw_info'];
|
|
|
|
$GLOBALS['egw_info'] = array (
|
|
|
|
'flags' => array(
|
|
|
|
'noapi' => true,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
if (!($header = file_get_contents(EGW_SERVER_ROOT.'/header.inc.php')))
|
|
|
|
{
|
|
|
|
throw new Exception('header.inc.php not found!');
|
|
|
|
}
|
|
|
|
eval(str_replace(array('<?php','perfgetmicrotime'),array('','perfgetmicrotime2'),$header));
|
|
|
|
|
|
|
|
// unset the flags, they are not part of the header
|
|
|
|
unset($GLOBALS['egw_info']['flags']);
|
|
|
|
|
|
|
|
// include the api version of this instance
|
|
|
|
$GLOBALS['egw_info']['server']['versions']['phpgwapi'] = $egw_info_backup['server']['versions']['phpgwapi'];
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-06 09:00:41 +01:00
|
|
|
// fetching the install id's stored in the database
|
2016-05-01 17:56:49 +02:00
|
|
|
foreach($GLOBALS['egw_domain'] as &$data)
|
2007-12-06 09:00:41 +01:00
|
|
|
{
|
2007-12-10 05:59:01 +01:00
|
|
|
if (!is_null($this->hash_only))
|
|
|
|
{
|
|
|
|
$data += $this->_fetch_config($data);
|
|
|
|
}
|
2007-12-07 01:07:08 +01:00
|
|
|
try {
|
|
|
|
// it's saver to only send the remote_hash and not install_id and config_pw
|
|
|
|
$data['remote_hash'] = admin_cmd::remote_hash($data['install_id'],$data['config_passwd']);
|
|
|
|
}
|
|
|
|
catch(Exception $e) {
|
|
|
|
if ($data['install_id']) $data['error'] .= $e->getMessage();
|
|
|
|
}
|
|
|
|
if ($this->hash_only)
|
|
|
|
{
|
|
|
|
$data = array(
|
2007-12-21 02:51:47 +01:00
|
|
|
'remote_hash' => $data['remote_hash'],
|
2007-12-07 01:07:08 +01:00
|
|
|
'webserver_url' => $data['webserver_url'],
|
2007-12-21 02:51:47 +01:00
|
|
|
'install_id' => $data['install_id'],
|
2007-12-07 01:07:08 +01:00
|
|
|
)+($data['error'] ? array(
|
2016-05-01 17:56:49 +02:00
|
|
|
'error' => $data['error'],
|
2007-12-07 01:07:08 +01:00
|
|
|
) : array());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this->hash_only)
|
|
|
|
{
|
|
|
|
$ret = array('egw_domain' => $GLOBALS['egw_domain']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$ret = array(
|
|
|
|
'egw_info' => $GLOBALS['egw_info'],
|
|
|
|
'egw_domain' => $GLOBALS['egw_domain'],
|
|
|
|
'EGW_SERVER_ROOT' => EGW_SERVER_ROOT,
|
|
|
|
'EGW_INCLUDE_ROOT' => EGW_INCLUDE_ROOT,
|
|
|
|
);
|
2007-12-06 09:00:41 +01:00
|
|
|
}
|
2007-12-05 03:27:49 +01:00
|
|
|
$GLOBALS['egw_info'] = $egw_info_backup;
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-05 03:27:49 +01:00
|
|
|
return $ret;
|
|
|
|
}
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-06 09:00:41 +01:00
|
|
|
/**
|
|
|
|
* Fetch the install_id, and webserver_url of a domain from the DB
|
|
|
|
*
|
|
|
|
* @param array $data with values for keys 'db_name', 'db_host', 'db_port', 'db_user', 'db_pass', 'db_type'
|
|
|
|
* @return array with values for keys install_id, webserver_url
|
|
|
|
*/
|
|
|
|
private function _fetch_config(array $data)
|
|
|
|
{
|
2016-05-01 17:56:49 +02:00
|
|
|
$db = new Api\Db();
|
2007-12-06 09:00:41 +01:00
|
|
|
|
|
|
|
ob_start(); // not available db connection echos a lot grab ;-)
|
|
|
|
$err_rep = error_reporting(0);
|
|
|
|
|
|
|
|
$config = array();
|
|
|
|
try {
|
|
|
|
$db->connect($data['db_name'],$data['db_host'],$data['db_port'],$data['db_user'],$data['db_pass'],$data['db_type']);
|
|
|
|
$db->set_app('phpgwapi');
|
|
|
|
$db->select('egw_config','config_name,config_value',array(
|
2007-12-19 00:13:59 +01:00
|
|
|
'config_name'=>array('install_id','webserver_url','account_repository','allow_remote_admin','mail_suffix'),
|
2007-12-06 09:00:41 +01:00
|
|
|
'config_app'=>'phpgwapi',
|
|
|
|
),__LINE__,__FILE__);
|
|
|
|
while (($row = $db->row(true)))
|
|
|
|
{
|
|
|
|
$config[$row['config_name']] = $row['config_value'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
|
|
|
$config['error'] = strip_tags($e->getMessage());
|
|
|
|
}
|
|
|
|
error_reporting($err_rep);
|
|
|
|
ob_end_clean();
|
|
|
|
|
2007-12-10 05:59:01 +01:00
|
|
|
// restoring the db connection, seems to be necessary when we run via remote execution
|
|
|
|
$this->restore_db();
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-06 09:00:41 +01:00
|
|
|
return $config;
|
|
|
|
}
|
2016-05-01 17:56:49 +02:00
|
|
|
|
2007-12-19 00:13:59 +01:00
|
|
|
/**
|
|
|
|
* Saving the object to the database, reimplemented to only the save the command if it runs remote
|
|
|
|
*
|
2016-05-01 17:56:49 +02:00
|
|
|
* @param boolean $set_modifier =true set the current user as modifier or 0 (= run by the system)
|
2007-12-19 00:13:59 +01:00
|
|
|
* @return boolean true on success, false otherwise
|
|
|
|
*/
|
|
|
|
function save($set_modifier=true)
|
|
|
|
{
|
|
|
|
if ($this->remote_id)
|
|
|
|
{
|
|
|
|
return parent::save($set_modifier);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-12-05 03:27:49 +01:00
|
|
|
}
|