2007-12-05 03:27:49 +01:00
< ? php
/**
* eGgroupWare setup - abstract baseclass for all setup commands , extending admin_cmd
*
* @ link http :// www . egroupware . org
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de >
* @ package setup
2009-10-28 22:08:23 +01:00
* @ copyright ( c ) 2007 - 9 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
2008-11-18 20:58:11 +01:00
* @ version $Id $
2007-12-05 03:27:49 +01:00
*/
/**
* setup command : abstract baseclass for all setup commands , extending admin_cmd
*/
2008-11-18 20:58:11 +01:00
abstract class setup_cmd extends admin_cmd
2007-12-05 03:27:49 +01:00
{
2007-12-09 09:03:15 +01:00
/**
* Defaults set for empty options while running the command
*
* @ var array
*/
public $set_defaults = array ();
2007-12-05 03:27:49 +01:00
/**
* Should be called by every command usually requiring header admin rights
*
2009-05-30 22:15:31 +02:00
* @ throws egw_exception_no_permission ( lang ( 'Wrong credentials to access the header.inc.php file!' ), 2 );
2007-12-05 03:27:49 +01:00
*/
protected function _check_header_access ()
{
2007-12-21 02:54:20 +01:00
if ( ! $this -> header_secret && $this -> header_admin_user ) // no secret specified but header_admin_user/password
2007-12-05 03:27:49 +01:00
{
2007-12-21 02:54:20 +01:00
if ( ! $this -> uid ) $this -> uid = true ;
$this -> set_header_secret ( $this -> header_admin_user , $this -> header_admin_password );
}
$secret = $this -> _calc_header_secret ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_user' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_password' ]);
if ( $this -> uid === true ) unset ( $this -> uid );
2008-11-18 20:58:11 +01:00
2007-12-21 02:54:20 +01:00
if ( $this -> header_secret != $secret )
{
//echo "_check_header_access: header_secret='$this->header_secret' != '$secret'=_calc_header_secret({$GLOBALS['egw_info']['server']['header_admin_user']},{$GLOBALS['egw_info']['server']['header_admin_password']})\n";
2009-05-31 10:15:11 +02:00
throw new egw_exception_no_permission ( lang ( 'Wrong credentials to access the header.inc.php file!' ), 5 );
2007-12-05 03:27:49 +01:00
}
2008-11-18 20:58:11 +01:00
2007-12-05 03:27:49 +01:00
}
2008-11-18 20:58:11 +01:00
2007-12-05 03:27:49 +01:00
/**
* Set the user and pw required for any operation on the header file
*
* @ param string $user
* @ param string $pw password or md5 hash of it
*/
public function set_header_secret ( $user , $pw )
{
if ( $this -> uid || parent :: save ( false )) // we need to save first, to get the uid
{
$this -> header_secret = $this -> _calc_header_secret ( $user , $pw );
}
else
{
throw new Exception ( 'failed to set header_secret!' );
}
}
2008-11-18 20:58:11 +01:00
2007-12-05 03:27:49 +01:00
/**
* Calculate the header_secret used to access the header from this command
2008-11-18 20:58:11 +01:00
*
2007-12-05 03:27:49 +01:00
* It ' s an md5 over the uid , header - admin - user and - password .
*
* @ param string $header_admin_user
* @ param string $header_admin_password
* @ return string
*/
private function _calc_header_secret ( $header_admin_user = null , $header_admin_password = null )
{
if ( ! self :: is_md5 ( $header_admin_password )) $header_admin_password = md5 ( $header_admin_password );
$secret = md5 ( $this -> uid . $header_admin_user . $header_admin_password );
//echo "header_secret='$secret' = md5('$this->uid'.'$header_admin_user'.'$header_admin_password')\n";
return $secret ;
}
2008-11-18 20:58:11 +01:00
2007-12-09 09:03:15 +01:00
/**
* Saving the object to the database , reimplemented to not do it in setup context
*
* @ param boolean $set_modifier = true set the current user as modifier or 0 ( = run by the system )
* @ return boolean true on success , false otherwise
*/
function save ( $set_modifier = true )
{
if ( is_object ( $GLOBALS [ 'egw' ] -> db ))
{
return parent :: save ( $set_modifier );
}
return true ;
}
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
/**
* Reference to the setup object , after calling check_setup_auth method
*
* @ var setup
*/
static protected $egw_setup ;
2008-11-18 20:58:11 +01:00
2007-12-14 00:46:44 +01:00
static private $egw_accounts_backup ;
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
/**
* Create the setup enviroment ( for running within setup or eGW )
*/
static protected function _setup_enviroment ( $domain = null )
{
if ( ! is_object ( $GLOBALS [ 'egw_setup' ]))
{
2008-11-18 20:58:11 +01:00
require_once ( EGW_INCLUDE_ROOT . '/setup/inc/class.setup.inc.php' );
2007-12-10 05:59:01 +01:00
$GLOBALS [ 'egw_setup' ] = new setup ( true , true );
}
self :: $egw_setup = $GLOBALS [ 'egw_setup' ];
self :: $egw_setup -> ConfigDomain = $domain ;
2007-12-21 02:54:20 +01:00
if ( isset ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_user' ]) && ! isset ( $GLOBALS [ 'egw_domain' ]) &&
is_object ( $GLOBALS [ 'egw' ]) && $GLOBALS [ 'egw' ] instanceof egw )
2007-12-10 05:59:01 +01:00
{
// we run inside eGW, not setup --> read egw_domain array from the header via the showheader cmd
$cmd = new setup_cmd_showheader ( null ); // null = only header, no db stuff, no hashes
$header = $cmd -> run ();
$GLOBALS [ 'egw_domain' ] = $header [ 'egw_domain' ];
2008-11-18 20:58:11 +01:00
2007-12-14 00:46:44 +01:00
if ( is_object ( $GLOBALS [ 'egw' ] -> accounts ) && is_null ( self :: $egw_accounts_backup ))
{
self :: $egw_accounts_backup = $GLOBALS [ 'egw' ] -> accounts ;
unset ( $GLOBALS [ 'egw' ] -> accounts );
}
2007-12-13 03:41:55 +01:00
if ( $this -> config ) self :: $egw_setup -> setup_account_object ( $this -> config );
2007-12-10 05:59:01 +01:00
}
if ( is_object ( $GLOBALS [ 'egw' ] -> db ) && $domain )
{
$GLOBALS [ 'egw' ] -> db -> disconnect ();
$GLOBALS [ 'egw' ] -> db -> connect (
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_name' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_host' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_port' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_user' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_pass' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'db_type' ]
);
}
}
/**
* Restore eGW ' s db connection
*
*/
static function restore_db ()
{
if ( is_object ( $GLOBALS [ 'egw' ] -> db ))
{
$GLOBALS [ 'egw' ] -> db -> disconnect ();
$GLOBALS [ 'egw' ] -> db -> connect (
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_name' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_host' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_port' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_user' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_pass' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'db_type' ]
);
2007-12-14 00:46:44 +01:00
if ( ! is_null ( self :: $egw_accounts_backup ))
{
$GLOBALS [ 'egw' ] -> accounts = self :: $egw_accounts_backup ;
2010-08-29 10:16:27 +02:00
accounts :: cache_invalidate ();
2007-12-14 00:46:44 +01:00
unset ( self :: $egw_accounts_backup );
}
2007-12-10 05:59:01 +01:00
}
}
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
/**
* Creates a setup like enviroment and checks for the header user / pw or config_user / pw if domain given
*
* @ param string $user
* @ param string $pw
* @ param string $domain = null if given we also check agains config user / pw
* @ throws egw_exception_no_permission ( lang ( 'Access denied: wrong username or password for manage-header !!!' ), 21 );
* @ throws egw_exception_no_permission ( lang ( " Access denied: wrong username or password to configure the domain '%1(%2)' !!! " , $domain , $GLOBALS [ 'egw_domain' ][ $domain ][ 'db_type' ]), 40 );
*/
static function check_setup_auth ( $user , $pw , $domain = null )
{
self :: _setup_enviroment ( $domain );
// check the authentication if a header_admin_password is set, if not we dont have a header yet and no authentication
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_password' ]) // if that's not given we dont have a header yet
{
if ( ! self :: $egw_setup -> check_auth ( $user , $pw , $GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_user' ],
$GLOBALS [ 'egw_info' ][ 'server' ][ 'header_admin_password' ]) &&
( is_null ( $domain ) || ! isset ( $GLOBALS [ 'egw_domain' ][ $domain ]) || // if valid domain given check it's config user/pw
! self :: $egw_setup -> check_auth ( $user , $pw , $GLOBALS [ 'egw_domain' ][ $domain ][ 'config_user' ],
$GLOBALS [ 'egw_domain' ][ $domain ][ 'config_passwd' ])))
{
if ( is_null ( $domain ))
{
throw new egw_exception_no_permission ( lang ( 'Access denied: wrong username or password for manage-header !!!' ), 21 );
}
else
{
throw new egw_exception_no_permission ( lang ( " Access denied: wrong username or password to configure the domain '%1(%2)' !!! " , $domain , $GLOBALS [ 'egw_domain' ][ $domain ][ 'db_type' ]), 40 );
}
}
}
}
/**
* Check if eGW is installed , which versions and if an update is needed
2008-11-18 20:58:11 +01:00
*
2007-12-10 05:59:01 +01:00
* @ param string $domain = '' domain to check , default '' = all
* @ param int / array $stop = 0 stop checks before given exit - code ( s ), default 0 = all checks
* @ param boolean $verbose = false echo messages as they happen , instead returning them
* @ return array with translated messages
*/
2007-12-21 02:54:20 +01:00
static function check_installed ( $domain = '' , $stop = 0 , $verbose = false )
2007-12-10 05:59:01 +01:00
{
self :: _setup_enviroment ( $domain );
global $setup_info ;
static $header_checks = true ; // output the header checks only once
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$messages = array ();
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
if ( $stop && ! is_array ( $stop )) $stop = array ( $stop );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$versions =& $GLOBALS [ 'egw_info' ][ 'server' ][ 'versions' ];
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
if ( ! $versions [ 'phpgwapi' ])
{
2010-07-26 10:20:14 +02:00
if ( ! include ( EGW_INCLUDE_ROOT . '/phpgwapi/setup/setup.inc.php' ))
2007-12-10 05:59:01 +01:00
{
throw new egw_exception_wrong_userinput ( lang ( " eGroupWare sources in '%1' are not complete, file '%2' missing !!! " , realpath ( '..' ), 'phpgwapi/setup/setup.inc.php' ), 99 ); // should not happen ;-)
}
$versions [ 'phpgwapi' ] = $setup_info [ 'phpgwapi' ][ 'version' ];
unset ( $setup_info );
}
if ( $header_checks )
{
$messages [] = self :: _echo_message ( $verbose , lang ( 'eGroupWare API version %1 found.' , $versions [ 'phpgwapi' ]));
}
$header_stage = self :: $egw_setup -> detection -> check_header ();
if ( $stop && in_array ( $header_stage , $stop )) return true ;
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
switch ( $header_stage )
{
case 1 : throw new egw_exception_wrong_userinput ( lang ( 'eGroupWare configuration file (header.inc.php) does NOT exist.' ) . " \n " . lang ( 'Use --create-header to create the configuration file (--usage gives more options).' ), 1 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 2 : throw new egw_exception_wrong_userinput ( lang ( 'eGroupWare configuration file (header.inc.php) version %1 exists%2' , $versions [ 'header' ], '.' ) . " \n " . lang ( 'No header admin password set! Use --edit-header <password>[,<user>] to set one (--usage gives more options).' ), 2 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 3 : throw new egw_exception_wrong_userinput ( lang ( 'eGroupWare configuration file (header.inc.php) version %1 exists%2' , $versions [ 'header' ], '.' ) . " \n " . lang ( 'No eGroupWare domains / database instances exist! Use --edit-header --domain to add one (--usage gives more options).' ), 3 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 4 : throw new egw_exception_wrong_userinput ( lang ( 'eGroupWare configuration file (header.inc.php) version %1 exists%2' , $versions [ 'header' ], '.' ) . " \n " . lang ( 'It needs upgrading to version %1! Use --update-header <password>[,<user>] to do so (--usage gives more options).' , $versions [ 'current_header' ]), 4 );
}
if ( $header_checks )
{
$messages [] = self :: _echo_message ( $verbose , lang ( 'eGroupWare configuration file (header.inc.php) version %1 exists%2' ,
$versions [ 'header' ], ' ' . lang ( 'and is up to date' )));
}
$header_checks = false ; // no further output of the header checks
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$domains = $GLOBALS [ 'egw_domain' ];
if ( $domain ) // domain to check given
{
if ( ! isset ( $GLOBALS [ 'egw_domain' ][ $domain ])) throw new egw_exception_wrong_userinput ( lang ( " Domain '%1' does NOT exist !!! " , $domain ));
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$domains = array ( $domain => $GLOBALS [ 'egw_domain' ][ $domain ]);
}
foreach ( $domains as $domain => $data )
{
self :: $egw_setup -> ConfigDomain = $domain ; // set the domain the setup class operates on
if ( count ( $GLOBALS [ 'egw_domain' ]) > 1 )
{
self :: _echo_message ( $verbose );
$messages [] = self :: _echo_message ( $verbose , lang ( 'eGroupWare domain/instance %1(%2):' , $domain , $data [ 'db_type' ]));
}
$setup_info = self :: $egw_setup -> detection -> get_versions ();
// check if there's already a db-connection and close if, otherwise the db-connection of the previous domain will be used
if ( is_object ( self :: $egw_setup -> db ))
{
self :: $egw_setup -> db -> disconnect ();
}
self :: $egw_setup -> loaddb ();
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$db = $data [ 'db_type' ] . '://' . $data [ 'db_user' ] . ':' . $data [ 'db_pass' ] . '@' . $data [ 'db_host' ] . '/' . $data [ 'db_name' ];
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
$db_stage =& $GLOBALS [ 'egw_info' ][ 'setup' ][ 'stage' ][ 'db' ];
if (( $db_stage = self :: $egw_setup -> detection -> check_db ( $setup_info )) != 1 )
{
$setup_info = self :: $egw_setup -> detection -> get_db_versions ( $setup_info );
$db_stage = self :: $egw_setup -> detection -> check_db ( $setup_info );
}
if ( $stop && in_array ( 10 + $db_stage , $stop ))
{
return $messages ;
}
switch ( $db_stage )
{
case 1 : throw new egw_exception_wrong_userinput ( lang ( 'Your Database is not working!' ) . " $db : " . self :: $egw_setup -> db -> Error , 11 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 3 : throw new egw_exception_wrong_userinput ( lang ( 'Your database is working, but you dont have any applications installed' ) . " ( $db ). " . lang ( " Use --install to install eGroupWare. " ), 13 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 4 : throw new egw_exception_wrong_userinput ( lang ( 'eGroupWare API needs a database (schema) update from version %1 to %2!' , $setup_info [ 'phpgwapi' ][ 'currentver' ], $versions [ 'phpgwapi' ]) . ' ' . lang ( 'Use --update to do so.' ), 14 );
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
case 10 : // also check apps of updates
$apps_to_upgrade = array ();
$apps_to_install = array ();
foreach ( $setup_info as $app => $data )
{
2009-10-28 22:08:23 +01:00
if ( $data [ 'currentver' ] && $data [ 'version' ] && $data [ 'version' ] != 'deleted' && $data [ 'version' ] != $data [ 'currentver' ])
2007-12-10 05:59:01 +01:00
{
$apps_to_upgrade [] = $app ;
}
if ( ! isset ( $data [ 'enabled' ]))
{
$apps_to_install [] = $app ;
}
}
if ( $apps_to_install )
{
self :: _echo_message ( $verbose );
$messages [] = self :: _echo_message ( $verbose , lang ( 'The following applications are NOT installed:' ) . ' ' . implode ( ', ' , $apps_to_install ));
}
if ( $apps_to_upgrade )
{
$db_stage = 4 ;
if ( $stop && in_array ( 10 + $db_stage , $stop )) return $messages ;
throw new egw_exception_wrong_userinput ( lang ( 'The following applications need to be upgraded:' ) . ' ' . implode ( ', ' , $apps_to_upgrade ) . '! ' . lang ( 'Use --update to do so.' ), 14 );
}
break ;
}
$messages [] = self :: _echo_message ( $verbose , lang ( " database is version %1 and up to date. " , $setup_info [ 'phpgwapi' ][ 'currentver' ]));
2008-11-18 20:58:11 +01:00
2007-12-10 05:59:01 +01:00
self :: $egw_setup -> detection -> check_config ();
if ( $GLOBALS [ 'egw_info' ][ 'setup' ][ 'config_errors' ] && $stop && ! in_array ( 15 , $stop ))
{
throw new egw_exception_wrong_userinput ( lang ( 'You need to configure eGroupWare:' ) . " \n - " .@ implode ( " \n - " , $GLOBALS [ 'egw_info' ][ 'setup' ][ 'config_errors' ]), 15 );
}
}
return $messages ;
}
/**
* Echo the given message , if $verbose
*
* @ param boolean $verbose
* @ param string $msg
* @ return string $msg
*/
static function _echo_message ( $verbose , $msg = '' )
{
if ( $verbose ) echo $msg . " \n " ;
return $msg ;
}
2007-12-05 03:27:49 +01:00
}