egroupware_official/phpgwapi/inc/class.setup_process.inc.php

857 lines
27 KiB
PHP
Raw Normal View History

2002-03-03 22:47:30 +01:00
<?php
/**************************************************************************\
2003-12-28 16:19:25 +01:00
* eGroupWare - Setup *
* http://www.egroupware.org *
* -------------------------------------------- *
2003-12-28 16:19:25 +01:00
* This file written by Miles Lott <milos@groupwhere.org> *
* Originally written for phpGroupWare. *
* (C) 2001-2004 Miles Lott *
* -------------------------------------------- *
* 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. *
\**************************************************************************/
/* $Id$ */
2002-03-03 22:47:30 +01:00
/* app status values:
U Upgrade required/available
R upgrade in pRogress
C upgrade Completed successfully
D Dependency failure
F upgrade Failed
V Version mismatch at end of upgrade (Not used, proposed only)
M Missing files at start of upgrade (Not used, proposed only)
*/
class setup_process
{
2002-03-04 06:00:08 +01:00
var $oProc;
2002-03-03 22:47:30 +01:00
var $tables;
var $updateincluded = array();
2002-09-04 03:25:29 +02:00
var $translation;
2003-12-20 19:34:55 +01:00
function setup_process()
2002-09-04 03:25:29 +02:00
{
$this->translation = CreateObject('phpgwapi.setup_translation');
}
2002-03-03 22:47:30 +01:00
/*!
@function init_process
@abstract create schema_proc object
@param none
*/
function init_process()
{
2002-03-04 08:18:46 +01:00
$ConfigDomain = get_var('ConfigDomain',array('COOKIE','POST'));
2002-03-03 22:47:30 +01:00
$phpgw_domain = $GLOBALS['phpgw_domain'];
$GLOBALS['phpgw_setup']->oProc = CreateObject('phpgwapi.schema_proc',$phpgw_domain[$ConfigDomain]['db_type']);
$GLOBALS['phpgw_setup']->oProc->m_odb = $GLOBALS['phpgw_setup']->db;
$GLOBALS['phpgw_setup']->oProc->m_odb->Host = $phpgw_domain[$ConfigDomain]['db_host'];
$GLOBALS['phpgw_setup']->oProc->m_odb->Database = $phpgw_domain[$ConfigDomain]['db_name'];
$GLOBALS['phpgw_setup']->oProc->m_odb->User = $phpgw_domain[$ConfigDomain]['db_user'];
$GLOBALS['phpgw_setup']->oProc->m_odb->Password = $phpgw_domain[$ConfigDomain]['db_pass'];
$GLOBALS['phpgw_setup']->oProc->m_odb->Halt_On_Error = 'report';
$GLOBALS['phpgw_setup']->oProc->m_odb->connect();
2002-03-03 22:47:30 +01:00
}
/*!
@function pass
@abstract the mother of all multipass upgrade parental loop functions
@param $setup_info array of application info from setup.inc.php files
@param $type optional, defaults to new(install), could also be 'upgrade'
@param $DEBUG optional, print debugging info
@param $force_en optional, install english language files
*/
function pass($setup_info,$method='new',$DEBUG=False,$force_en=False)
{
2002-03-04 08:18:46 +01:00
if(!$method)
2002-03-03 22:47:30 +01:00
{
return False;
}
// Place api first
2003-12-20 19:34:55 +01:00
$pass['phpgwapi'] = $setup_info['phpgwapi'];
$pass['admin'] = $setup_info['admin'];
$pass['preferences'] = $setup_info['preferences'];
2002-03-03 22:47:30 +01:00
@reset($setup_info);
$setup_info = $GLOBALS['phpgw_setup']->detection->get_versions($setup_info);
@reset($setup_info);
$i = 1;
$passed = array();
$passing = array();
$pass_string = implode (':', $pass);
$passing_string = implode (':', $passing);
2002-03-04 08:18:46 +01:00
while($pass_string != $passing_string)
2002-03-03 22:47:30 +01:00
{
$passing = array();
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->pass(): #' . $i . ' for ' . $method . ' processing' . "\n"; }
2002-03-03 22:47:30 +01:00
/* Check current versions and dependencies */
$setup_info = $GLOBALS['phpgw_setup']->detection->get_db_versions($setup_info);
$setup_info = $GLOBALS['phpgw_setup']->detection->compare_versions($setup_info);
//_debug_array($setup_info);exit;
$setup_info = $GLOBALS['phpgw_setup']->detection->check_depends($setup_info);
//if($i==2) { _debug_array($passed);exit; }
/* stuff the rest of the apps, but only those with available upgrades */
while(list($key,$value) = @each($setup_info))
{
2002-03-04 08:18:46 +01:00
if(($value['name'] != 'phpgwapi') && ($value['status'] == 'U'))
2002-03-03 22:47:30 +01:00
{
2002-03-04 08:18:46 +01:00
if(($passed[$value['name']]['status'] != 'F') && ($passed[$value['name']]['status'] != 'C'))
2002-03-03 22:47:30 +01:00
{
$pass[$value['name']] = $setup_info[$value['name']];
}
}
/*
Now if we are on the 2nd or more passes, add api in
if (!$pass['phpgwapi'])
{
$pass['phpgwapi'] = $setup_info['phpgwapi'];
}
*/
}
2003-12-20 19:34:55 +01:00
switch($method)
2002-03-03 22:47:30 +01:00
{
case 'new':
/* Create tables and insert new records for each app in this list */
$passing = $this->current($pass,$DEBUG);
$passing = $this->default_records($passing,$DEBUG);
$passing = $this->add_langs($passing,$DEBUG,array(get_var('ConfigLang',Array('POST','COOKIE')),'en'));
$this->save_minimal_config();
2002-03-03 22:47:30 +01:00
break;
case 'upgrade':
/* Run upgrade scripts on each app in the list */
$passing = $this->upgrade($pass,$DEBUG);
$passing = $this->upgrade_langs($passing,$DEBUG);
//_debug_array($pass);exit;
break;
default:
/* What the heck are you doing? */
return False;
break;
}
$pass = array();
@reset($passing);
while(list($key,$value) = @each($passing))
{
if($value['status'] == 'C')
{
$passed[$value['name']] = $passing[$value['name']];
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->pass(): '.$passed[$value['name']]['name'] . ' install completed'."\n"; }
2002-03-03 22:47:30 +01:00
}
elseif($value['status'] == 'F')
{
$setup_info[$value['name']] = $passing[$value['name']];
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->pass(): '.$setup_info[$value['name']]['name'] . ' install failed'."\n"; }
2002-03-03 22:47:30 +01:00
}
elseif($value['status'] == 'D')
{
$pass[$value['name']] = $setup_info[$value['name']];
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->pass(): '.$pass[$value['name']]['name'] . ' fails dependency check on this pass'."\n"; }
2002-03-03 22:47:30 +01:00
}
else
{
$tmp = $passing[$value['name']]['name'];
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->pass(): '.$tmp . ' skipped on this pass'."\n"; }
2002-03-03 22:47:30 +01:00
}
}
$i++;
2002-03-04 08:18:46 +01:00
if($i == 20) /* Then oops it broke */
2002-03-03 22:47:30 +01:00
{
echo '<br>Setup failure: excess looping in process->pass():'."\n";
echo '<br>Pass:<br>'."\n";
_debug_array($pass);
echo '<br>Passed:<br>'."\n";
_debug_array($passed);
exit;
}
$pass_string = implode (':', $pass);
$passing_string = implode (':', $passing);
}
/* now return the list */
@reset($passed);
while(list($key,$value) = @each($passed))
{
$setup_info[$value['name']] = $passed[$value['name']];
}
return ($setup_info);
}
/*!
@function save_minimal_config
@abstract saves a minimal default config, so you get a running install without entering and saveing Step #2 config
*/
function save_minimal_config()
{
$GLOBALS['current_config']['site_title'] = 'eGroupWare';
$GLOBALS['current_config']['hostname'] = $_SERVER['HTTP_HOST'];
// files-dir is not longer allowed in document root, for security reasons !!!
$GLOBALS['current_config']['files_dir'] = '/outside/webserver/docroot';
if(@is_dir('/tmp'))
{
$GLOBALS['current_config']['temp_dir'] = '/tmp';
}
elseif(@is_dir('c:\\temp'))
{
$GLOBALS['current_config']['temp_dir'] = 'c:\\temp';
}
else
{
$GLOBALS['current_config']['temp_dir'] = '/path/to/temp/dir';
}
// guessing the phpGW url
$parts = explode('/',$_SERVER['PHP_SELF']);
array_pop($parts); // remove config.php
array_pop($parts); // remove setup
$GLOBALS['current_config']['webserver_url'] = implode('/',$parts);
$datetime = CreateObject('phpgwapi.datetime');
$GLOBALS['current_config']['tz_offset'] = $datetime->getbestguess();
unset($datetime);
// RalfBecker: php.net recommend this for security reasons, it should be our default too
$GLOBALS['current_config']['usecookies'] = 'True';
foreach($GLOBALS['current_config'] as $setting => $value)
{
$setting = $GLOBALS['phpgw_setup']->db->db_addslashes($setting);
$value = $GLOBALS['phpgw_setup']->db->db_addslashes($value);
@$GLOBALS['phpgw_setup']->db->query("DELETE FROM phpgw_config WHERE config_app='phpgwapi' AND config_name='$setting'",__LINE__,__FILE__);
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_config (config_app,config_name, config_value) VALUES ('phpgwapi','$setting','$value')");
}
}
2002-03-03 22:47:30 +01:00
/*!
@function droptables
@abstract drop tables per application, check that they are in the db first
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function droptables($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-03 22:47:30 +01:00
/* The following is built so below we won't try to drop a table that isn't there. */
$tablenames = $GLOBALS['phpgw_setup']->db->table_names();
if (!is_array($setup_info) || !is_array($tablenames))
2002-03-03 22:47:30 +01:00
{
return $setup_info; // nothing to do
}
$tables = array();
foreach($tablenames as $data)
{
$tables[] = $data['table_name'];
2002-03-03 22:47:30 +01:00
}
if (!is_array($setup_info))
2002-03-03 22:47:30 +01:00
{
return $setup_info;
}
foreach($setup_info as $app_name => $data)
{
if(is_array($data['tables']))
2002-03-03 22:47:30 +01:00
{
foreach($data['tables'] as $table)
2002-03-03 22:47:30 +01:00
{
//echo $table;
2002-03-04 08:18:46 +01:00
if(in_array($table,$tables))
2002-03-03 22:47:30 +01:00
{
if($DEBUG){ echo '<br>process->droptables(): Dropping :'. $app_name . ' table: ' . $table; }
$GLOBALS['phpgw_setup']->oProc->DropTable($table);
2002-03-03 22:47:30 +01:00
// Update the array values for return below
$setup_info[$app_name]['status'] = 'U';
2002-03-03 22:47:30 +01:00
}
}
}
}
/* Done, return current status */
return $setup_info;
2002-03-03 22:47:30 +01:00
}
/*!
@function current
@abstract process current table setup in each application/setup dir
@param $appinfo array of application info from setup.inc.php files, etc.
@discussion This duplicates the old newtables behavior, using schema_proc
*/
function current($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-03 22:47:30 +01:00
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$enabled = False;
$appname = $setup_info[$key]['name'];
$apptitle = $setup_info[$key]['title'];
if($DEBUG) { echo '<br>process->current(): Incoming status: ' . $appname . ',status: '. $setup_info[$key]['status']; }
$appdir = PHPGW_SERVER_ROOT . SEP . $appname . SEP . 'setup' . SEP;
2002-03-04 08:18:46 +01:00
if($setup_info[$key]['tables'] && file_exists($appdir.'tables_current.inc.php'))
2002-03-03 22:47:30 +01:00
{
if($DEBUG) { echo '<br>process->current(): Including: ' . $appdir.'tables_current.inc.php'; }
include ($appdir.'tables_current.inc.php');
$ret = $this->post_process($phpgw_baseline,$DEBUG);
if($ret)
{
2002-03-04 08:18:46 +01:00
if($GLOBALS['phpgw_setup']->app_registered($appname))
2002-03-03 22:47:30 +01:00
{
$GLOBALS['phpgw_setup']->update_app($appname);
$GLOBALS['phpgw_setup']->update_hooks($appname);
}
else
{
$GLOBALS['phpgw_setup']->register_app($appname);
$GLOBALS['phpgw_setup']->register_hooks($appname);
}
// Update the array values for return below
$setup_info[$key]['status'] = 'C';
}
else
{
/* script processing failed */
if($DEBUG) { echo '<br>process->current(): Failed for ' . $appname . ',status: '. $setup_info[$key]['status']; }
$setup_info[$key]['status'] = 'F';
}
}
else
{
if($DEBUG) { echo '<br>process->current(): No current tables for ' . $apptitle . "\n"; }
/*
Add the app, but disable it if it has tables defined.
A manual sql script install is needed, but we do add the hooks
*/
$enabled = 99;
2002-03-04 08:18:46 +01:00
if($setup_info[$key]['tables'][0] != '')
2002-03-03 22:47:30 +01:00
{
$enabled = False;
}
2002-03-04 08:18:46 +01:00
if($GLOBALS['phpgw_setup']->app_registered($appname))
2002-03-03 22:47:30 +01:00
{
$GLOBALS['phpgw_setup']->update_app($appname);
$GLOBALS['phpgw_setup']->update_hooks($appname);
}
else
{
$GLOBALS['phpgw_setup']->register_app($appname,$enabled);
$GLOBALS['phpgw_setup']->register_hooks($appname);
}
$setup_info[$key]['status'] = 'C';
}
if($DEBUG) { echo '<br>process->current(): Outgoing status: ' . $appname . ',status: '. $setup_info[$key]['status']; }
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function default_records
@abstract process default_records.inc.php in each application/setup dir
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function default_records($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-04 08:18:46 +01:00
// $oProc = $GLOBALS['phpgw_setup']->oProc;
2002-03-03 22:47:30 +01:00
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$appname = $setup_info[$key]['name'];
$appdir = PHPGW_SERVER_ROOT . SEP . $appname . SEP . 'setup' . SEP;
2002-03-04 08:18:46 +01:00
if($setup_info[$key]['tables'] && file_exists($appdir.'default_records.inc.php'))
2002-03-03 22:47:30 +01:00
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->default_records(): Including default records for ' . $appname . "\n";
}
$GLOBALS['phpgw_setup']->oProc->m_odb->transaction_begin();
$oProc = &$GLOBALS['phpgw_setup']->oProc; // to be compatible with old apps
2002-03-03 22:47:30 +01:00
include ($appdir.'default_records.inc.php');
$GLOBALS['phpgw_setup']->oProc->m_odb->transaction_commit();
2002-03-03 22:47:30 +01:00
}
/* $setup_info[$key]['status'] = 'C'; */
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function add_langs
@abstract process application lang files and uninstall
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function add_langs($setup_info,$DEBUG=False,$force_langs=False)
2002-03-03 22:47:30 +01:00
{
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$appname = $setup_info[$key]['name'];
$this->translation->add_langs($appname,$DEBUG,$force_langs);
2002-03-03 22:47:30 +01:00
if($DEBUG)
{
echo '<br>process->add_langs(): Translations added for ' . $appname . "\n";
}
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function drop_langs
@abstract process application lang files and install
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function drop_langs($setup_info,$DEBUG=False)
{
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$appname = $setup_info[$key]['name'];
$this->translation->drop_langs($appname,$DEBUG);
2002-03-03 22:47:30 +01:00
if($DEBUG)
{
echo '<br>process->drop_langs(): Translations removed for ' . $appname . "\n";
}
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function upgrade_langs
@abstract process application lang files and reinstall
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function upgrade_langs($setup_info,$DEBUG=False)
{
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
/* Don't upgrade lang files in the middle of an upgrade */
if($setup_info[$key]['status'] == 'R')
{
continue;
}
$appname = $setup_info[$key]['name'];
$this->translation->drop_langs($appname,$DEBUG);
$this->translation->add_langs($appname,$DEBUG);
2002-03-03 22:47:30 +01:00
if($DEBUG)
{
echo '<br>process->upgrade_langs(): Translations reinstalled for ' . $appname . "\n";
}
}
/* Done, return current status */
return ($setup_info);
}
2002-03-03 22:47:30 +01:00
/*!
@function test_data
@abstract process test_data.inc.php in each application/setup dir for developer tests
This data should work with the baseline tables
@param $setup_info array of application info from setup.inc.php files, etc.
*/
function test_data($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-04 08:18:46 +01:00
// $oProc = $GLOBALS['phpgw_setup']->oProc;
2002-03-03 22:47:30 +01:00
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$appname = $setup_info[$key]['name'];
$appdir = PHPGW_SERVER_ROOT . SEP . $appname . SEP . 'setup' . SEP;
2002-03-04 08:18:46 +01:00
if(file_exists($appdir.'test_data.inc.php'))
2002-03-03 22:47:30 +01:00
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->test_data(): Including baseline test data for ' . $appname . "\n";
}
$GLOBALS['phpgw_setup']->oProc->m_odb->transaction_begin();
2002-03-03 22:47:30 +01:00
include ($appdir.'test_data.inc.php');
$GLOBALS['phpgw_setup']->oProc->m_odb->transaction_commit();
2002-03-03 22:47:30 +01:00
}
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function baseline
@abstract process baseline table setup in each application/setup dir
@param $appinfo array of application info from setup.inc.php files, etc.
*/
function baseline($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
$appname = $setup_info[$key]['name'];
$appdir = PHPGW_SERVER_ROOT . SEP . $appname . SEP . 'setup' . SEP;
2002-03-04 08:18:46 +01:00
if(file_exists($appdir.'tables_baseline.inc.php'))
2002-03-03 22:47:30 +01:00
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->baseline(): Including baseline tables for ' . $appname . "\n";
}
include ($appdir.'tables_baseline.inc.php');
$GLOBALS['phpgw_setup']->oProc->GenerateScripts($phpgw_baseline, $DEBUG);
2002-03-03 22:47:30 +01:00
$this->post_process($phpgw_baseline,$DEBUG);
/* Update the array values for return below */
/* $setup_info[$key]['status'] = 'R'; */
}
else
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->baseline(): No baseline tables for ' . $appname . "\n";
}
//$setup_info[$key]['status'] = 'C';
}
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function upgrade
@abstract process available upgrades in each application/setup dir
@param $appinfo array of application info from setup.inc.php files, etc.
*/
function upgrade($setup_info,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!@$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_odb->HaltOnError = 'no';
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = True;
2002-03-03 22:47:30 +01:00
@reset($setup_info);
2002-03-04 08:18:46 +01:00
while(list($key,$null) = @each($setup_info))
2002-03-03 22:47:30 +01:00
{
/* Don't try to upgrade an app that is not installed */
if(!$GLOBALS['phpgw_setup']->app_registered($setup_info[$key]['name']))
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): Application not installed: ' . $appname . "\n";
}
unset($setup_info[$key]);
continue;
}
/* if upgrade required, or if we are running again after an upgrade or dependency failure */
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->upgrade(): Incoming : appname: '.$setup_info[$key]['name'] . ' status: ' . $setup_info[$key]['status']; }
if($setup_info[$key]['status'] == 'U' ||
2002-03-03 22:47:30 +01:00
$setup_info[$key]['status'] == 'D' ||
$setup_info[$key]['status'] == 'V' ||
$setup_info[$key]['status'] == '') // TODO this is not getting set for api upgrade, sometimes ???
{
$appname = $setup_info[$key]['name'];
$apptitle = $setup_info[$key]['title'];
$currentver = $setup_info[$key]['currentver'];
$targetver = $setup_info[$key]['version']; // The version we need to match when done
$appdir = PHPGW_SERVER_ROOT . SEP . $appname . SEP . 'setup' . SEP;
$test = array();
$GLOBALS['phpgw_setup']->oProc->m_aTables = $phpgw_baseline = array();
2002-03-03 22:47:30 +01:00
/*
$phpgw_baseline = array();
$tmpapp = array();
$tmpapp[] = $setup_info[$key];
$this->baseline($tmpapp,$DEBUG);
$GLOBALS['phpgw_setup']->oProc->m_aTables = $phpgw_baseline;
2002-03-03 22:47:30 +01:00
// So far, including the baseline file is not helping.
// Only AlterColumn/RenameColumn seem to be failing silently.
// This is because we are not keeping up with table changes, so a table in baseline
// either does not exist anymore, or the baseline is being lost.
2003-10-18 12:54:47 +02:00
// 10-18-2003 milosch - The baseline file is definitely needed for any app with and update file.
2002-03-03 22:47:30 +01:00
*/
2002-03-04 08:18:46 +01:00
if($setup_info[$key]['tables'] && file_exists($appdir.'tables_baseline.inc.php'))
2002-03-03 22:47:30 +01:00
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->baseline(): Including baseline tables for ' . $appname . "\n";
}
include ($appdir.'tables_baseline.inc.php');
$GLOBALS['phpgw_setup']->oProc->m_aTables = $phpgw_baseline;
/* $GLOBALS['phpgw_setup']->oProc->GenerateScripts($phpgw_baseline, $DEBUG); */
2002-03-03 22:47:30 +01:00
}
else
{
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->baseline(): No baseline tables for ' . $appname . "\n";
}
/* This should be a break with a status setting, or not at all
break;
*/
}
2002-03-04 08:18:46 +01:00
if(file_exists($appdir . 'tables_update.inc.php') && !@$this->updateincluded[$appname])
2002-03-03 22:47:30 +01:00
{
include ($appdir . 'tables_update.inc.php');
$this->updateincluded[$appname] = True;
/* $test array comes from update file. It is a list of available upgrade functions */
@reset($test);
2002-03-04 08:18:46 +01:00
while(list($x,$value) = @each($test))
2002-03-03 22:47:30 +01:00
{
$currentver = $setup_info[$key]['currentver'];
/* build upgrade function name */
$function = $appname . '_upgrade' . str_replace(".", '_', $value);
2002-03-03 22:47:30 +01:00
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): appname: ' . $appname;
echo '<br>process->upgrade(): currentver: ' . $currentver;
echo '<br>process->upgrade(): targetver: ' . $targetver;
echo '<br>process->upgrade(): status: ' . $setup_info[$key]['status'];
echo '<br>process->upgrade(): checking: ' . $value;
echo '<br>process->upgrade(): function: ' . $function;
}
2002-03-04 08:18:46 +01:00
if($value == $targetver)
2002-03-03 22:47:30 +01:00
{
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-03 22:47:30 +01:00
/* Done upgrading */
if($DEBUG)
{
echo '<br>process->upgrade(): Upgrade of ' . $appname . ' to ' . $targetver . ' is completed.' . "\n";
}
$appstatus = 'C';
$setup_info[$key]['status'] = $appstatus;
$setup_info[$key]['currentver'] = $targetver;
2002-03-04 08:18:46 +01:00
if($GLOBALS['phpgw_setup']->app_registered($appname))
2002-03-03 22:47:30 +01:00
{
$GLOBALS['phpgw_setup']->update_app($appname);
$GLOBALS['phpgw_setup']->update_hooks($appname);
}
else
{
$GLOBALS['phpgw_setup']->register_app($appname);
$GLOBALS['phpgw_setup']->register_hooks($appname);
}
//break;
}
2002-03-04 08:18:46 +01:00
elseif(($value == $currentver) || !$currentver)
2002-03-03 22:47:30 +01:00
{
/* start upgrading db in addition to baseline */
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = False;
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->upgrade(): running ' . $function; }
2002-03-03 22:47:30 +01:00
/* run upgrade function */
$success = $function();
2002-03-04 08:18:46 +01:00
if($success != False)
2002-03-03 22:47:30 +01:00
{
$setup_info[$key]['currentver'] = $success;
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): Upgrade of ' . $appname
. ' from ' . $value
. ' to ' . $setup_info[$key]['currentver']
. ' is completed.' . "\n";
}
$appstatus = 'R';
$setup_info[$key]['status'] = $appstatus;
if($GLOBALS['phpgw_setup']->app_registered($appname))
{
if($DEBUG)
{
echo '<br>process->upgrade(): Updating registration of ' . $appname . ', new version: ' . $setup_info[$key]['currentver'];
}
$GLOBALS['phpgw_setup']->update_app($appname);
$GLOBALS['phpgw_setup']->update_hooks($appname);
}
else
{
if($DEBUG)
{
echo '<br>process->upgrade(): Registering ' . $appname . ', version: ' . $setup_info[$key]['currentver'];
}
$GLOBALS['phpgw_setup']->register_app($appname);
$GLOBALS['phpgw_setup']->register_hooks($appname);
}
}
else
{
if($DEBUG)
{
echo '<br>process->upgrade(): Upgrade of ' . $appname
. ' from ' . $currentver
. ' to ' . $value
. ' failed!!!' . "\n";
}
$appstatus = 'F';
break;
}
}
elseif ($GLOBALS['phpgw_setup']->alessthanb($value,$currentver))
{
2002-03-04 08:18:46 +01:00
if($DEBUG) { echo '<br>process->upgrade(): running baseline delta only: ' . $function . '...'; }
$GLOBALS['phpgw_setup']->oProc->m_bDeltaOnly = True;
2002-03-03 22:47:30 +01:00
$success = $function();
}
else
{
break;
}
}
}
else
{
2002-03-04 08:18:46 +01:00
if($setup_info[$appname]['tables'])
2002-03-03 22:47:30 +01:00
{
$appstatus = 'F';
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): No table upgrade available for ' . $appname . "\n";
}
}
else
{
$setup_info[$key]['currentver'] == $targetver;
$appstatus = 'C';
2002-03-04 08:18:46 +01:00
if($GLOBALS['phpgw_setup']->app_registered($appname))
2002-03-03 22:47:30 +01:00
{
$GLOBALS['phpgw_setup']->update_app($appname);
$GLOBALS['phpgw_setup']->update_hooks($appname);
}
else
{
$GLOBALS['phpgw_setup']->register_app($appname);
$GLOBALS['phpgw_setup']->register_hooks($appname);
}
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): No table upgrade required for ' . $appname . "\n";
}
}
}
}
else
{
$appstatus = 'C';
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): No upgrade required for ' . $appname . "\n";
}
}
/* Done with this app, update status */
$setup_info[$key]['status'] = $appstatus;
2002-03-04 08:18:46 +01:00
if($DEBUG)
2002-03-03 22:47:30 +01:00
{
echo '<br>process->upgrade(): Outgoing : appname: '.$setup_info[$key]['name'] . ' status: ' . $setup_info[$key]['status'];
}
}
/* Done, return current status */
return ($setup_info);
}
/*!
@function post_process
@abstract commit above processing to the db
*/
function post_process($tables,$DEBUG=False)
{
2002-03-04 08:18:46 +01:00
if(!$tables)
2002-03-03 22:47:30 +01:00
{
return False;
}
$ret = $GLOBALS['phpgw_setup']->oProc->GenerateScripts($tables,$DEBUG);
2002-03-04 08:18:46 +01:00
if($ret)
2002-03-03 22:47:30 +01:00
{
$oret = $GLOBALS['phpgw_setup']->oProc->ExecuteScripts($tables,$DEBUG);
2002-03-04 08:18:46 +01:00
if($oret)
2002-03-03 22:47:30 +01:00
{
return True;
}
else
{
return False;
}
}
else
{
return False;
}
}
/*!
@function sql_to_array
@abstract send this a table name, returns printable column spec and keys for the table from schema_proc
@param $tablename table whose array you want to see
*/
function sql_to_array($tablename='')
{
2002-03-04 08:18:46 +01:00
if(!$tablename)
2002-03-03 22:47:30 +01:00
{
return False;
}
2002-03-04 08:18:46 +01:00
if(!$GLOBALS['phpgw_setup']->oProc)
2002-03-03 22:47:30 +01:00
{
$this->init_process();
}
$GLOBALS['phpgw_setup']->oProc->m_oTranslator->_GetColumns($GLOBALS['phpgw_setup']->oProc, $tablename, $sColumns, $sColumnName);
2002-03-03 22:47:30 +01:00
2002-03-04 08:18:46 +01:00
while(list($key,$tbldata) = each($GLOBALS['phpgw_setup']->oProc->m_oTranslator->sCol))
2002-03-03 22:47:30 +01:00
{
$arr .= $tbldata;
}
$pk = $GLOBALS['phpgw_setup']->oProc->m_oTranslator->pk;
$fk = $GLOBALS['phpgw_setup']->oProc->m_oTranslator->fk;
$ix = $GLOBALS['phpgw_setup']->oProc->m_oTranslator->ix;
$uc = $GLOBALS['phpgw_setup']->oProc->m_oTranslator->uc;
2002-03-03 22:47:30 +01:00
return array($arr,$pk,$fk,$ix,$uc);
}
}
?>