123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071 |
- <?php
- // Copyright (C) 2010-2012 Combodo SARL
- //
- // This file is part of iTop.
- //
- // iTop is free software; you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // iTop 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 Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with iTop. If not, see <http://www.gnu.org/licenses/>
- require_once(APPROOT.'setup/parameters.class.inc.php');
- require_once(APPROOT.'setup/xmldataloader.class.inc.php');
- require_once(APPROOT.'setup/backup.class.inc.php');
- /**
- * The base class for the installation process.
- * The installation process is split into a sequence of unitary steps
- * for performance reasons (i.e; timeout, memory usage) and also in order
- * to provide some feedback about the progress of the installation.
- *
- * This class can be used for a step by step interactive installation
- * while displaying a progress bar, or in an unattended manner
- * (for example from the command line), to run all the steps
- * in one go.
- * @copyright Copyright (C) 2010-2012 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- class ApplicationInstaller
- {
- const OK = 1;
- const ERROR = 2;
- const WARNING = 3;
- const INFO = 4;
-
- protected $oParams;
- protected static $bMetaModelStarted = false;
-
- public function __construct($oParams)
- {
- $this->oParams = $oParams;
- }
-
- /**
- * Runs all the installation steps in one go and directly outputs
- * some information about the progress and the success of the various
- * sequential steps.
- * @return boolean True if the installation was successful, false otherwise
- */
- public function ExecuteAllSteps()
- {
- $sStep = '';
- $sStepLabel = '';
- $iOverallStatus = self::OK;
- do
- {
- if($sStep != '')
- {
- echo "$sStepLabel\n";
- echo "Executing '$sStep'\n";
- }
- else
- {
- echo "Starting the installation...\n";
- }
- $aRes = $this->ExecuteStep($sStep);
- $sStep = $aRes['next-step'];
- $sStepLabel = $aRes['next-step-label'];
-
- switch($aRes['status'])
- {
- case self::OK;
- echo "Ok. ".$aRes['percentage-completed']." % done.\n";
- break;
-
- case self::ERROR:
- $iOverallStatus = self::ERROR;
- echo "Error: ".$aRes['message']."\n";
- break;
-
- case self::WARNING:
- $iOverallStatus = self::WARNING;
- echo "Warning: ".$aRes['message']."\n";
- echo $aRes['percentage-completed']." % done.\n";
- break;
-
- case self::INFO:
- echo "Info: ".$aRes['message']."\n";
- echo $aRes['percentage-completed']." % done.\n";
- break;
- }
- }
- while(($aRes['status'] != self::ERROR) && ($aRes['next-step'] != ''));
-
- return ($iOverallStatus == self::OK);
- }
-
- /**
- * Executes the next step of the installation and reports about the progress
- * and the next step to perform
- * @param string $sStep The identifier of the step to execute
- * @return hash An array of (status => , message => , percentage-completed => , next-step => , next-step-label => )
- */
- public function ExecuteStep($sStep = '')
- {
- try
- {
- switch($sStep)
- {
- case '':
- $aResult = array(
- 'status' => self::OK,
- 'message' => '',
- 'percentage-completed' => 0,
- 'next-step' => 'copy',
- 'next-step-label' => 'Copying data model files',
- );
-
- // Log the parameters...
- $oDoc = new DOMDocument('1.0', 'UTF-8');
- $oDoc->preserveWhiteSpace = false;
- $oDoc->formatOutput = true;
- $this->oParams->ToXML($oDoc, null, 'installation');
- $sXML = $oDoc->saveXML();
- $sSafeXml = preg_replace("|<pwd>([^<]*)</pwd>|", "<pwd>**removed**</pwd>", $sXML);
- SetupPage::log_info("======= Installation starts =======\nParameters:\n$sSafeXml\n");
-
- // Save the response file as a stand-alone file as well
- $sFileName = 'install-'.date('Y-m-d');
- $index = 0;
- while(file_exists(APPROOT.'log/'.$sFileName.'.xml'))
- {
- $index++;
- $sFileName = 'install-'.date('Y-m-d').'-'.$index;
- }
- file_put_contents(APPROOT.'log/'.$sFileName.'.xml', $sSafeXml);
-
- break;
-
- case 'copy':
- $aPreinstall = $this->oParams->Get('preinstall');
- $aCopies = $aPreinstall['copies'];
- $sReport = self::DoCopy($aCopies);
- $sReport = "Copying...";
- $aResult = array(
- 'status' => self::OK,
- 'message' => $sReport,
- );
- if (isset($aPreinstall['backup']))
- {
- $aResult['next-step'] = 'backup';
- $aResult['next-step-label'] = 'Performing a backup of the database';
- $aResult['percentage-completed'] = 20;
- }
- else
- {
- $aResult['next-step'] = 'compile';
- $aResult['next-step-label'] = 'Compiling the data model';
- $aResult['percentage-completed'] = 20;
- }
- break;
-
- case 'backup':
- $aPreinstall = $this->oParams->Get('preinstall');
- // __DB__-%Y-%m-%d.zip
- $sDestination = $aPreinstall['backup']['destination'];
- $sSourceConfigFile = $aPreinstall['backup']['configuration_file'];
- $aDBParams = $this->oParams->Get('database');
- self::DoBackup($aDBParams['server'], $aDBParams['user'], $aDBParams['pwd'], $aDBParams['name'], $aDBParams['prefix'], $sDestination, $sSourceConfigFile);
- $aResult = array(
- 'status' => self::OK,
- 'message' => "Created backup",
- 'next-step' => 'compile',
- 'next-step-label' => 'Compiling the data model',
- 'percentage-completed' => 20,
- );
- break;
-
- case 'compile':
- $aSelectedModules = $this->oParams->Get('selected_modules');
- $sSourceDir = $this->oParams->Get('source_dir', 'datamodels/latest');
- $sExtensionDir = $this->oParams->Get('extensions_dir', 'extensions');
- $sTargetEnvironment = $this->oParams->Get('target_env', '');
- if ($sTargetEnvironment == '')
- {
- $sTargetEnvironment = 'production';
- }
- $sTargetDir = 'env-'.$sTargetEnvironment;
- $sWorkspaceDir = $this->oParams->Get('workspace_dir', 'workspace');
- $bUseSymbolicLinks = false;
- $aMiscOptions = $this->oParams->Get('options', array());
- if (isset($aMiscOptions['symlinks']) && $aMiscOptions['symlinks'] )
- {
- if (function_exists('symlink'))
- {
- $bUseSymbolicLinks = true;
- SetupPage::log_info("Using symbolic links instead of copying data model files (for developers only!)");
- }
- else
- {
- SetupPage::log_info("Symbolic links (function symlinks) does not seem to be supported on this platform (OS/PHP version).");
- }
- }
-
- self::DoCompile($aSelectedModules, $sSourceDir, $sExtensionDir, $sTargetDir, $sTargetEnvironment, $bUseSymbolicLinks);
-
- $aResult = array(
- 'status' => self::OK,
- 'message' => '',
- 'next-step' => 'db-schema',
- 'next-step-label' => 'Updating database schema',
- 'percentage-completed' => 40,
- );
- break;
-
- case 'db-schema':
- $sMode = $this->oParams->Get('mode');
- $aSelectedModules = $this->oParams->Get('selected_modules', array());
- $sTargetEnvironment = $this->oParams->Get('target_env', '');
- if ($sTargetEnvironment == '')
- {
- $sTargetEnvironment = 'production';
- }
- $sTargetDir = 'env-'.$sTargetEnvironment;
- $aDBParams = $this->oParams->Get('database');
- $sDBServer = $aDBParams['server'];
- $sDBUser = $aDBParams['user'];
- $sDBPwd = $aDBParams['pwd'];
- $sDBName = $aDBParams['name'];
- $sDBPrefix = $aDBParams['prefix'];
- $bOldAddon = $this->oParams->Get('old_addon', false);
-
- self::DoUpdateDBSchema($sMode, $aSelectedModules, $sTargetDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sTargetEnvironment, $bOldAddon);
-
- $aResult = array(
- 'status' => self::OK,
- 'message' => '',
- 'next-step' => 'after-db-create',
- 'next-step-label' => 'Creating profiles',
- 'percentage-completed' => 60,
- );
- break;
-
- case 'after-db-create':
- $sMode = $this->oParams->Get('mode');
- $sTargetEnvironment = $this->oParams->Get('target_env', '');
- if ($sTargetEnvironment == '')
- {
- $sTargetEnvironment = 'production';
- }
- $sTargetDir = 'env-'.$sTargetEnvironment;
- $aDBParams = $this->oParams->Get('database');
- $sDBServer = $aDBParams['server'];
- $sDBUser = $aDBParams['user'];
- $sDBPwd = $aDBParams['pwd'];
- $sDBName = $aDBParams['name'];
- $sDBPrefix = $aDBParams['prefix'];
- $aAdminParams = $this->oParams->Get('admin_account');
- $sAdminUser = $aAdminParams['user'];
- $sAdminPwd = $aAdminParams['pwd'];
- $sAdminLanguage = $aAdminParams['language'];
- $sLanguage = $this->oParams->Get('language');
- $aSelectedModules = $this->oParams->Get('selected_modules', array());
- $sDataModelVersion = $this->oParams->Get('datamodel_version', '0.0.0');
- $bOldAddon = $this->oParams->Get('old_addon', false);
- $sSourceDir = $this->oParams->Get('source_dir', '');
-
- self::AfterDBCreate($sMode, $sTargetDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sAdminUser,
- $sAdminPwd, $sAdminLanguage, $sLanguage, $aSelectedModules, $sTargetEnvironment, $bOldAddon, $sDataModelVersion, $sSourceDir);
-
- $aResult = array(
- 'status' => self::OK,
- 'message' => '',
- 'next-step' => 'load-data',
- 'next-step-label' => 'Loading data',
- 'percentage-completed' => 80,
- );
- break;
-
- case 'load-data':
- $aSelectedModules = $this->oParams->Get('selected_modules');
- $sTargetEnvironment = $this->oParams->Get('target_env', '');
- $sTargetDir = 'env-'.(($sTargetEnvironment == '') ? 'production' : $sTargetEnvironment);
- $aDBParams = $this->oParams->Get('database');
- $sDBServer = $aDBParams['server'];
- $sDBUser = $aDBParams['user'];
- $sDBPwd = $aDBParams['pwd'];
- $sDBName = $aDBParams['name'];
- $sDBPrefix = $aDBParams['prefix'];
- $aFiles = $this->oParams->Get('files', array());
- $bOldAddon = $this->oParams->Get('old_addon', false);
- $bSampleData = ($this->oParams->Get('sample_data', 0) == 1);
-
- self::DoLoadFiles($aSelectedModules, $sTargetDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sTargetEnvironment, $bOldAddon, $bSampleData);
-
- $aResult = array(
- 'status' => self::INFO,
- 'message' => 'All data loaded',
- 'next-step' => 'create-config',
- 'next-step-label' => 'Creating the configuration File',
- 'percentage-completed' => 99,
- );
- break;
-
- case 'create-config':
- $sMode = $this->oParams->Get('mode');
- $sTargetEnvironment = $this->oParams->Get('target_env', '');
- if ($sTargetEnvironment == '')
- {
- $sTargetEnvironment = 'production';
- }
- $sTargetDir = 'env-'.$sTargetEnvironment;
- $aDBParams = $this->oParams->Get('database');
- $sDBServer = $aDBParams['server'];
- $sDBUser = $aDBParams['user'];
- $sDBPwd = $aDBParams['pwd'];
- $sDBName = $aDBParams['name'];
- $sDBPrefix = $aDBParams['prefix'];
- $sUrl = $this->oParams->Get('url', '');
- $sLanguage = $this->oParams->Get('language', '');
- $aSelectedModules = $this->oParams->Get('selected_modules', array());
- $bOldAddon = $this->oParams->Get('old_addon', false);
- $sSourceDir = $this->oParams->Get('source_dir', '');
- $sPreviousConfigFile = $this->oParams->Get('previous_configuration_file', '');
- $sDataModelVersion = $this->oParams->Get('datamodel_version', '0.0.0');
-
- self::DoCreateConfig($sMode, $sTargetDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sUrl, $sLanguage, $aSelectedModules, $sTargetEnvironment, $bOldAddon, $sSourceDir, $sPreviousConfigFile, $sDataModelVersion);
-
- $aResult = array(
- 'status' => self::INFO,
- 'message' => 'Configuration file created',
- 'next-step' => '',
- 'next-step-label' => 'Completed',
- 'percentage-completed' => 100,
- );
- break;
-
-
- default:
- $aResult = array(
- 'status' => self::ERROR,
- 'message' => '',
- 'next-step' => '',
- 'next-step-label' => "Unknown setup step '$sStep'.",
- 'percentage-completed' => 100,
- );
- }
- }
- catch(Exception $e)
- {
- $aResult = array(
- 'status' => self::ERROR,
- 'message' => $e->getMessage(),
- 'next-step' => '',
- 'next-step-label' => '',
- 'percentage-completed' => 100,
- );
-
- SetupPage::log_error('An exception occurred: '.$e->getMessage().' at line '.$e->getLine().' in file '.$e->getFile());
- $idx = 0;
- // Log the call stack, but not the parameters since they may contain passwords or other sensitive data
- SetupPage::log("Call stack:");
- foreach($e->getTrace() as $aTrace)
- {
- $sLine = empty($aTrace['line']) ? "" : $aTrace['line'];
- $sFile = empty($aTrace['file']) ? "" : $aTrace['file'];
- $sClass = empty($aTrace['class']) ? "" : $aTrace['class'];
- $sType = empty($aTrace['type']) ? "" : $aTrace['type'];
- $sFunction = empty($aTrace['function']) ? "" : $aTrace['function'];
- $sVerb = empty($sClass) ? $sFunction : "$sClass{$sType}$sFunction";
- SetupPage::log("#$idx $sFile($sLine): $sVerb(...)");
- $idx++;
- }
- }
- return $aResult;
- }
- protected static function DoCopy($aCopies)
- {
- $aReports = array();
- foreach ($aCopies as $aCopy)
- {
- $sSource = $aCopy['source'];
- $sDestination = APPROOT.$aCopy['destination'];
-
- SetupUtils::builddir($sDestination);
- SetupUtils::tidydir($sDestination);
- SetupUtils::copydir($sSource, $sDestination);
- $aReports[] = "'{$aCopy['source']}' to '{$aCopy['destination']}' (OK)";
- }
- if (count($aReports) > 0)
- {
- $sReport = "Copies: ".count($aReports).': '.implode('; ', $aReports);
- }
- else
- {
- $sReport = "No file copy";
- }
- return $sReport;
- }
- protected static function DoBackup($sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sBackupFile, $sSourceConfigFile)
- {
- $oBackup = new SetupDBBackup($sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix);
- $sZipFile = $oBackup->MakeName($sBackupFile);
- $oBackup->CreateZip($sZipFile, $sSourceConfigFile);
- }
-
- protected static function DoCompile($aSelectedModules, $sSourceDir, $sExtensionDir, $sTargetDir, $sEnvironment, $bUseSymbolicLinks = false)
- {
- SetupPage::log_info("Compiling data model.");
- require_once(APPROOT.'setup/modulediscovery.class.inc.php');
- require_once(APPROOT.'setup/modelfactory.class.inc.php');
- require_once(APPROOT.'setup/compiler.class.inc.php');
- if (empty($sSourceDir) || empty($sTargetDir))
- {
- throw new Exception("missing parameter source_dir and/or target_dir");
- }
- $sSourcePath = APPROOT.$sSourceDir;
- $aDirsToScan = array($sSourcePath);
- $sExtensionsPath = APPROOT.$sExtensionDir;
- if (is_dir($sExtensionsPath))
- {
- // if the extensions dir exists, scan it for additional modules as well
- $aDirsToScan[] = $sExtensionsPath;
- }
- $sTargetPath = APPROOT.$sTargetDir;
- if (!is_dir($sSourcePath))
- {
- throw new Exception("Failed to find the source directory '$sSourcePath', please check the rights of the web server");
- }
- if (!is_dir($sTargetPath))
- {
- if (!mkdir($sTargetPath))
- {
- throw new Exception("Failed to create directory '$sTargetPath', please check the rights of the web server");
- }
- else
- {
- // adjust the rights if and only if the directory was just created
- // owner:rwx user/group:rx
- chmod($sTargetPath, 0755);
- }
- }
- else if (substr($sTargetPath, 0, strlen(APPROOT)) == APPROOT)
- {
- // If the directory is under the root folder - as expected - let's clean-it before compiling
- SetupUtils::tidydir($sTargetPath);
- }
- $oFactory = new ModelFactory($aDirsToScan);
- $aModules = $oFactory->FindModules();
- foreach($aModules as $foo => $oModule)
- {
- $sModule = $oModule->GetName();
- if (in_array($sModule, $aSelectedModules))
- {
- $oFactory->LoadModule($oModule);
- }
- }
- $sDeltaFile = APPROOT.'data/'.$sEnvironment.'.delta.xml';
- if (file_exists($sDeltaFile))
- {
- $oDelta = new MFDeltaModule($sDeltaFile);
- $oFactory->LoadModule($oDelta);
- }
- //$oFactory->Dump();
- if ($oFactory->HasLoadErrors())
- {
- foreach($oFactory->GetLoadErrors() as $sModuleId => $aErrors)
- {
- SetupPage::log_error("Data model source file (xml) could not be loaded - found errors in module: $sModuleId");
- foreach($aErrors as $oXmlError)
- {
- SetupPage::log_error("Load error: File: ".$oXmlError->file." Line:".$oXmlError->line." Message:".$oXmlError->message);
- }
- }
- throw new Exception("The data model could not be compiled. Please check the setup error log");
- }
- else
- {
- $oMFCompiler = new MFCompiler($oFactory);
- $oMFCompiler->Compile($sTargetPath, null, $bUseSymbolicLinks);
- //$aCompilerLog = $oMFCompiler->GetLog();
- //SetupPage::log_info(implode("\n", $aCompilerLog));
- SetupPage::log_info("Data model successfully compiled to '$sTargetPath'.");
- }
-
- // Special case to patch a ugly patch in itop-config-mgmt
- $sFileToPatch = $sTargetPath.'/itop-config-mgmt-1.0.0/model.itop-config-mgmt.php';
- if (file_exists($sFileToPatch))
- {
- $sContent = file_get_contents($sFileToPatch);
-
- $sContent = str_replace("require_once(APPROOT.'modules/itop-welcome-itil/model.itop-welcome-itil.php');", "//\n// The line below is no longer needed in iTop 2.0 -- patched by the setup program\n// require_once(APPROOT.'modules/itop-welcome-itil/model.itop-welcome-itil.php');", $sContent);
-
- file_put_contents($sFileToPatch, $sContent);
- }
- }
-
- protected static function DoUpdateDBSchema($sMode, $aSelectedModules, $sModulesDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sTargetEnvironment = '', $bOldAddon = false)
- {
- SetupPage::log_info("Update Database Schema for environment '$sTargetEnvironment'.");
- $oConfig = new Config();
- $aParamValues = array(
- 'mode' => $sMode,
- 'db_server' => $sDBServer,
- 'db_user' => $sDBUser,
- 'db_pwd' => $sDBPwd,
- 'db_name' => $sDBName,
- 'db_prefix' => $sDBPrefix,
- );
- $oConfig->UpdateFromParams($aParamValues, $sModulesDir);
- if ($bOldAddon)
- {
- // Old version of the add-on for backward compatibility with pre-2.0 data models
- $oConfig->SetAddons(array(
- 'user rights' => 'addons/userrights/userrightsprofile.db.class.inc.php',
- ));
- }
-
- $oProductionEnv = new RunTimeEnvironment($sTargetEnvironment);
- $oProductionEnv->InitDataModel($oConfig, true); // load data model only
- // Migrate application data format
- //
- // priv_internalUser caused troubles because MySQL transforms table names to lower case under Windows
- // This becomes an issue when moving your installation data to/from Windows
- // Starting 2.0, all table names must be lowercase
- if ($sMode != 'install')
- {
- SetupPage::log_info("Renaming '{$sDBPrefix}priv_internalUser' into '{$sDBPrefix}priv_internaluser' (lowercase)");
- // This command will have no effect under Windows...
- // and it has been written in two steps so as to make it work under windows!
- CMDBSource::SelectDB($sDBName);
- try
- {
- $sRepair = "RENAME TABLE `{$sDBPrefix}priv_internalUser` TO `{$sDBPrefix}priv_internaluser_other`, `{$sDBPrefix}priv_internaluser_other` TO `{$sDBPrefix}priv_internaluser`";
- CMDBSource::Query($sRepair);
- }
- catch (Exception $e)
- {
- SetupPage::log_info("Renaming '{$sDBPrefix}priv_internalUser' failed (already done in a previous upgrade?)");
- }
-
- // let's remove the records in priv_change which have no counterpart in priv_changeop
- SetupPage::log_info("Cleanup of '{$sDBPrefix}priv_change' to remove orphan records");
- CMDBSource::SelectDB($sDBName);
- try
- {
- $sTotalCount = "SELECT COUNT(*) FROM `{$sDBPrefix}priv_change`";
- $iTotalCount = (int)CMDBSource::QueryToScalar($sTotalCount);
- SetupPage::log_info("There is a total of $iTotalCount records in {$sDBPrefix}priv_change.");
-
- $sOrphanCount = "SELECT COUNT(c.id) FROM `{$sDBPrefix}priv_change` AS c left join `{$sDBPrefix}priv_changeop` AS o ON c.id = o.changeid WHERE o.id IS NULL";
- $iOrphanCount = (int)CMDBSource::QueryToScalar($sOrphanCount);
- SetupPage::log_info("There are $iOrphanCount useless records in {$sDBPrefix}priv_change (".sprintf('%.2f', ((100.0*$iOrphanCount)/$iTotalCount))."%)");
- if ($iOrphanCount > 0)
- {
- SetupPage::log_info("Removing the orphan records...");
- $sCleanup = "DELETE FROM `{$sDBPrefix}priv_change` USING `{$sDBPrefix}priv_change` LEFT JOIN `{$sDBPrefix}priv_changeop` ON `{$sDBPrefix}priv_change`.id = `{$sDBPrefix}priv_changeop`.changeid WHERE `{$sDBPrefix}priv_changeop`.id IS NULL;";
- CMDBSource::Query($sCleanup);
- SetupPage::log_info("Cleanup completed successfully.");
- }
- else
- {
- SetupPage::log_info("Ok, nothing to cleanup.");
- }
- }
- catch (Exception $e)
- {
- SetupPage::log_info("Cleanup of orphan records in `{$sDBPrefix}priv_change` failed: ".$e->getMessage());
- }
-
- }
-
- // Module specific actions (migrate the data)
- //
- $aAvailableModules = $oProductionEnv->AnalyzeInstallation(MetaModel::GetConfig(), APPROOT.$sModulesDir);
- foreach($aAvailableModules as $sModuleId => $aModule)
- {
- if (($sModuleId != ROOT_MODULE) && in_array($sModuleId, $aSelectedModules) &&
- isset($aAvailableModules[$sModuleId]['installer']) )
- {
- $sModuleInstallerClass = $aAvailableModules[$sModuleId]['installer'];
- SetupPage::log_info("Calling Module Handler: $sModuleInstallerClass::BeforeDatabaseCreation(oConfig, {$aModule['version_db']}, {$aModule['version_code']})");
- $aCallSpec = array($sModuleInstallerClass, 'BeforeDatabaseCreation');
- call_user_func_array($aCallSpec, array(MetaModel::GetConfig(), $aModule['version_db'], $aModule['version_code']));
- }
- }
- if(!$oProductionEnv->CreateDatabaseStructure(MetaModel::GetConfig(), $sMode))
- {
- throw new Exception("Failed to create/upgrade the database structure for environment '$sTargetEnvironment'");
- }
-
- // priv_change now has an 'origin' field to distinguish between the various input sources
- // Let's initialize the field with 'interactive' for all records were it's null
- // Then check if some records should hold a different value, based on a pattern matching in the userinfo field
- CMDBSource::SelectDB($sDBName);
- try
- {
- $sCount = "SELECT COUNT(*) FROM `{$sDBPrefix}priv_change` WHERE `origin` IS NULL";
- $iCount = (int)CMDBSource::QueryToScalar($sCount);
- if ($iCount > 0)
- {
- SetupPage::log_info("Initializing '{$sDBPrefix}priv_change.origin' ($iCount records to update)");
-
- // By default all uninitialized values are considered as 'interactive'
- $sInit = "UPDATE `{$sDBPrefix}priv_change` SET `origin` = 'interactive' WHERE `origin` IS NULL";
- CMDBSource::Query($sInit);
-
- // CSV Import was identified by the comment at the end
- $sInit = "UPDATE `{$sDBPrefix}priv_change` SET `origin` = 'csv-import.php' WHERE `userinfo` LIKE '%Web Service (CSV)'";
- CMDBSource::Query($sInit);
-
- // CSV Import was identified by the comment at the end
- $sInit = "UPDATE `{$sDBPrefix}priv_change` SET `origin` = 'csv-interactive' WHERE `userinfo` LIKE '%(CSV)' AND origin = 'interactive'";
- CMDBSource::Query($sInit);
-
-
- // Syncho data sources were identified by the comment at the end
- // Unfortunately the comment is localized, so we have to search for all possible patterns
- $sCurrentLanguage = Dict::GetUserLanguage();
- foreach(Dict::GetLanguages() as $sLangCode => $aLang)
- {
- Dict::SetUserLanguage($sLangCode);
- $sSuffix = CMDBSource::Quote('%'.Dict::S('Core:SyncDataExchangeComment'));
- $aSuffixes[$sSuffix] = true;
- }
- Dict::SetUserLanguage($sCurrentLanguage);
- $sCondition = "`userinfo` LIKE ".implode(" OR `userinfo` LIKE ", array_keys($aSuffixes));
- $sInit = "UPDATE `{$sDBPrefix}priv_change` SET `origin` = 'synchro-data-source' WHERE ($sCondition)";
- CMDBSource::Query($sInit);
-
- SetupPage::log_info("Initialization of '{$sDBPrefix}priv_change.origin' completed.");
- }
- else
- {
- SetupPage::log_info("'{$sDBPrefix}priv_change.origin' already initialized, nothing to do.");
- }
- }
- catch (Exception $e)
- {
- SetupPage::log_error("Initializing '{$sDBPrefix}priv_change.origin' failed: ".$e->getMessage());
- }
- // priv_async_task now has a 'status' field to distinguish between the various statuses rather than just relying on the date columns
- // Let's initialize the field with 'planned' or 'error' for all records were it's null
- CMDBSource::SelectDB($sDBName);
- try
- {
- $sCount = "SELECT COUNT(*) FROM `{$sDBPrefix}priv_async_task` WHERE `status` IS NULL";
- $iCount = (int)CMDBSource::QueryToScalar($sCount);
- if ($iCount > 0)
- {
- SetupPage::log_info("Initializing '{$sDBPrefix}priv_async_task.status' ($iCount records to update)");
-
- $sInit = "UPDATE `{$sDBPrefix}priv_async_task` SET `status` = 'planned' WHERE (`status` IS NULL) AND (`started` IS NULL)";
- CMDBSource::Query($sInit);
- $sInit = "UPDATE `{$sDBPrefix}priv_async_task` SET `status` = 'error' WHERE (`status` IS NULL) AND (`started` IS NOT NULL)";
- CMDBSource::Query($sInit);
-
- SetupPage::log_info("Initialization of '{$sDBPrefix}priv_async_task.status' completed.");
- }
- else
- {
- SetupPage::log_info("'{$sDBPrefix}priv_async_task.status' already initialized, nothing to do.");
- }
- }
- catch (Exception $e)
- {
- SetupPage::log_error("Initializing '{$sDBPrefix}priv_async_task.status' failed: ".$e->getMessage());
- }
- SetupPage::log_info("Database Schema Successfully Updated for environment '$sTargetEnvironment'.");
- }
-
- protected static function AfterDBCreate($sMode, $sModulesDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sAdminUser, $sAdminPwd, $sAdminLanguage, $sLanguage, $aSelectedModules, $sTargetEnvironment, $bOldAddon, $sDataModelVersion, $sSourceDir)
- {
- SetupPage::log_info('After Database Creation');
- $oConfig = new Config();
- $aParamValues = array(
- 'mode' => $sMode,
- 'db_server' => $sDBServer,
- 'db_user' => $sDBUser,
- 'db_pwd' => $sDBPwd,
- 'db_name' => $sDBName,
- 'db_prefix' => $sDBPrefix,
- );
- $oConfig->UpdateFromParams($aParamValues, $sModulesDir);
- if ($bOldAddon)
- {
- // Old version of the add-on for backward compatibility with pre-2.0 data models
- $oConfig->SetAddons(array(
- 'user rights' => 'addons/userrights/userrightsprofile.db.class.inc.php',
- ));
- }
- $oConfig->Set('source_dir', $sSourceDir); // Needed by RecordInstallation below
-
- $oProductionEnv = new RunTimeEnvironment($sTargetEnvironment);
- $oProductionEnv->InitDataModel($oConfig, true); // load data model and connect to the database
- self::$bMetaModelStarted = true; // No need to reload the final MetaModel in case the installer runs synchronously
-
- // Perform here additional DB setup... profiles, etc...
- //
- $aAvailableModules = $oProductionEnv->AnalyzeInstallation(MetaModel::GetConfig(), APPROOT.$sModulesDir);
- foreach($aAvailableModules as $sModuleId => $aModule)
- {
- if (($sModuleId != ROOT_MODULE) && in_array($sModuleId, $aSelectedModules) &&
- isset($aAvailableModules[$sModuleId]['installer']) )
- {
- $sModuleInstallerClass = $aAvailableModules[$sModuleId]['installer'];
- SetupPage::log_info("Calling Module Handler: $sModuleInstallerClass::AfterDatabaseCreation(oConfig, {$aModule['version_db']}, {$aModule['version_code']})");
- // The validity of the sModuleInstallerClass has been established in BuildConfig()
- $aCallSpec = array($sModuleInstallerClass, 'AfterDatabaseCreation');
- call_user_func_array($aCallSpec, array(MetaModel::GetConfig(), $aModule['version_db'], $aModule['version_code']));
- }
- }
- // Constant classes (e.g. User profiles)
- //
- foreach (MetaModel::GetClasses() as $sClass)
- {
- $aPredefinedObjects = call_user_func(array($sClass, 'GetPredefinedObjects'));
- if ($aPredefinedObjects != null)
- {
- SetupPage::log_info("$sClass::GetPredefinedObjects() returned ".count($aPredefinedObjects)." elements.");
- // Create/Delete/Update objects of this class,
- // according to the given constant values
- //
- $aDBIds = array();
- $oAll = new DBObjectSet(new DBObjectSearch($sClass));
- while ($oObj = $oAll->Fetch())
- {
- if (array_key_exists($oObj->GetKey(), $aPredefinedObjects))
- {
- $aObjValues = $aPredefinedObjects[$oObj->GetKey()];
- foreach ($aObjValues as $sAttCode => $value)
- {
- $oObj->Set($sAttCode, $value);
- }
- $oObj->DBUpdate();
- $aDBIds[$oObj->GetKey()] = true;
- }
- else
- {
- $oObj->DBDelete();
- }
- }
- foreach ($aPredefinedObjects as $iRefId => $aObjValues)
- {
- if (!array_key_exists($iRefId, $aDBIds))
- {
- $oNewObj = MetaModel::NewObject($sClass);
- $oNewObj->SetKey($iRefId);
- foreach ($aObjValues as $sAttCode => $value)
- {
- $oNewObj->Set($sAttCode, $value);
- }
- $oNewObj->DBInsert();
- }
- }
- }
- }
-
- if($sMode == 'install')
- {
- if (!self::CreateAdminAccount(MetaModel::GetConfig(), $sAdminUser, $sAdminPwd, $sAdminLanguage))
- {
- throw(new Exception("Failed to create the administrator account '$sAdminUser'"));
- }
- else
- {
- SetupPage::log_info("Administrator account '$sAdminUser' created.");
- }
- }
-
- // Perform final setup tasks here
- //
- foreach($aAvailableModules as $sModuleId => $aModule)
- {
- if (($sModuleId != ROOT_MODULE) && in_array($sModuleId, $aSelectedModules) &&
- isset($aAvailableModules[$sModuleId]['installer']) )
- {
- $sModuleInstallerClass = $aAvailableModules[$sModuleId]['installer'];
- SetupPage::log_info("Calling Module Handler: $sModuleInstallerClass::AfterDatabaseSetup(oConfig, {$aModule['version_db']}, {$aModule['version_code']})");
- // The validity of the sModuleInstallerClass has been established in BuildConfig()
- $aCallSpec = array($sModuleInstallerClass, 'AfterDatabaseSetup');
- call_user_func_array($aCallSpec, array(MetaModel::GetConfig(), $aModule['version_db'], $aModule['version_code']));
- }
- }
- }
-
- /**
- * Helper function to create and administrator account for iTop
- * @return boolean true on success, false otherwise
- */
- protected static function CreateAdminAccount(Config $oConfig, $sAdminUser, $sAdminPwd, $sLanguage)
- {
- SetupPage::log_info('CreateAdminAccount');
-
- if (UserRights::CreateAdministrator($sAdminUser, $sAdminPwd, $sLanguage))
- {
- return true;
- }
- else
- {
- return false;
- }
- }
-
- protected static function DoLoadFiles($aSelectedModules, $sModulesDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sTargetEnvironment = '', $bOldAddon = false, $bSampleData = false)
- {
- $aParamValues = array(
- 'db_server' => $sDBServer,
- 'db_user' => $sDBUser,
- 'db_pwd' => $sDBPwd,
- 'db_name' => $sDBName,
- 'new_db_name' => $sDBName,
- 'db_prefix' => $sDBPrefix,
- );
- $oConfig = new Config();
- $oConfig->UpdateFromParams($aParamValues, $sModulesDir);
- if ($bOldAddon)
- {
- // Old version of the add-on for backward compatibility with pre-2.0 data models
- $oConfig->SetAddons(array(
- 'user rights' => 'addons/userrights/userrightsprofile.db.class.inc.php',
- ));
- }
-
- //Load the MetaModel if needed (asynchronous mode)
- if (!self::$bMetaModelStarted)
- {
- $oProductionEnv = new RunTimeEnvironment($sTargetEnvironment);
- $oProductionEnv->InitDataModel($oConfig, false); // load data model and connect to the database
- self::$bMetaModelStarted = true; // No need to reload the final MetaModel in case the installer runs synchronously
- }
-
-
- $oDataLoader = new XMLDataLoader();
- CMDBObject::SetTrackInfo("Initialization");
- $oMyChange = CMDBObject::GetCurrentChange();
- SetupPage::log_info("starting data load session");
- $oDataLoader->StartSession($oMyChange);
- $aFiles = array();
- $aPreviouslyLoadedFiles = array();
- $oProductionEnv = new RunTimeEnvironment();
- $aAvailableModules = $oProductionEnv->AnalyzeInstallation($oConfig, APPROOT.$sModulesDir);
- foreach($aAvailableModules as $sModuleId => $aModule)
- {
- if (($sModuleId != ROOT_MODULE))
- {
- // Load data only for selected AND newly installed modules
- if (in_array($sModuleId, $aSelectedModules))
- {
- if ($aModule['version_db'] != '')
- {
- // Simulate the load of the previously loaded XML files to get the mapping of the keys
- if ($bSampleData)
- {
- $aPreviouslyLoadedFiles = array_merge(
- $aPreviouslyLoadedFiles,
- $aAvailableModules[$sModuleId]['data.struct'],
- $aAvailableModules[$sModuleId]['data.sample']
- );
- }
- else
- {
- // Load only structural data
- $aPreviouslyLoadedFiles = array_merge(
- $aPreviouslyLoadedFiles,
- $aAvailableModules[$sModuleId]['data.struct']
- );
- }
- }
- else
- {
- if ($bSampleData)
- {
- $aFiles = array_merge(
- $aFiles,
- $aAvailableModules[$sModuleId]['data.struct'],
- $aAvailableModules[$sModuleId]['data.sample']
- );
- }
- else
- {
- // Load only structural data
- $aFiles = array_merge(
- $aFiles,
- $aAvailableModules[$sModuleId]['data.struct']
- );
- }
- }
- }
- }
- }
- // Simulate the load of the previously loaded files, in order to initialize
- // the mapping between the identifiers in the XML and the actual identifiers
- // in the current database
- foreach($aPreviouslyLoadedFiles as $sFileRelativePath)
- {
- $sFileName = APPROOT.$sFileRelativePath;
- SetupPage::log_info("Loading file: $sFileName (just to get the keys mapping)");
- if (empty($sFileName) || !file_exists($sFileName))
- {
- throw(new Exception("File $sFileName does not exist"));
- }
-
- $oDataLoader->LoadFile($sFileName, true);
- $sResult = sprintf("loading of %s done.", basename($sFileName));
- SetupPage::log_info($sResult);
- }
-
- foreach($aFiles as $sFileRelativePath)
- {
- $sFileName = APPROOT.$sFileRelativePath;
- SetupPage::log_info("Loading file: $sFileName");
- if (empty($sFileName) || !file_exists($sFileName))
- {
- throw(new Exception("File $sFileName does not exist"));
- }
-
- $oDataLoader->LoadFile($sFileName);
- $sResult = sprintf("loading of %s done.", basename($sFileName));
- SetupPage::log_info($sResult);
- }
-
- $oDataLoader->EndSession();
- SetupPage::log_info("ending data load session");
- }
-
- protected static function DoCreateConfig($sMode, $sModulesDir, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sUrl, $sLanguage, $aSelectedModules, $sTargetEnvironment, $bOldAddon, $sSourceDir, $sPreviousConfigFile, $sDataModelVersion)
- {
- $aParamValues = array(
- 'mode' => $sMode,
- 'db_server' => $sDBServer,
- 'db_user' => $sDBUser,
- 'db_pwd' => $sDBPwd,
- 'db_name' => $sDBName,
- 'new_db_name' => $sDBName,
- 'db_prefix' => $sDBPrefix,
- 'application_path' => $sUrl,
- 'language' => $sLanguage,
- 'selected_modules' => implode(',', $aSelectedModules),
- );
-
- $bPreserveModuleSettings = false;
- if ($sMode == 'upgrade')
- {
- try
- {
- $oOldConfig = new Config($sPreviousConfigFile);
- $oConfig = clone($oOldConfig);
- $bPreserveModuleSettings = true;
- }
- catch(Exception $e)
- {
- // In case the previous configuration is corrupted... start with a blank new one
- $oConfig = new Config();
- }
- }
- else
- {
- $oConfig = new Config();
- // To preserve backward compatibility while upgrading to 2.0.3 (when tracking_level_linked_set_default has been introduced)
- // the default value on upgrade differs from the default value at first install
- $oConfig->Set('tracking_level_linked_set_default', LINKSET_TRACKING_NONE, 'first_install');
- }
-
-
- // Migration: force utf8_unicode_ci as the collation to make the global search
- // NON case sensitive
- $oConfig->SetDBCollation('utf8_unicode_ci');
-
- // Final config update: add the modules
- $oConfig->UpdateFromParams($aParamValues, $sModulesDir, $bPreserveModuleSettings);
- if ($bOldAddon)
- {
- // Old version of the add-on for backward compatibility with pre-2.0 data models
- $oConfig->SetAddons(array(
- 'user rights' => 'addons/userrights/userrightsprofile.db.class.inc.php',
- ));
- }
- $oConfig->Set('source_dir', $sSourceDir);
- // Have it work fine even if the DB has been set in read-only mode for the users
- $iPrevAccessMode = $oConfig->Get('access_mode');
- $oConfig->Set('access_mode', ACCESS_FULL);
- // Record which modules are installed...
- $oProductionEnv = new RunTimeEnvironment($sTargetEnvironment);
- $oProductionEnv->InitDataModel($oConfig, true); // load data model and connect to the database
- $aAvailableModules = $oProductionEnv->AnalyzeInstallation(MetaModel::GetConfig(), APPROOT.$sModulesDir);
- if (!$oProductionEnv->RecordInstallation($oConfig, $sDataModelVersion, $aSelectedModules, $sModulesDir))
- {
- throw new Exception("Failed to record the installation information");
- }
-
- // Restore the previous access mode
- $oConfig->Set('access_mode', $iPrevAccessMode);
-
- // Make sure the root configuration directory exists
- if (!file_exists(APPCONF))
- {
- mkdir(APPCONF);
- chmod(APPCONF, 0770); // RWX for owner and group, nothing for others
- SetupPage::log_info("Created configuration directory: ".APPCONF);
- }
- // Write the final configuration file
- $sConfigFile = APPCONF.(($sTargetEnvironment == '') ? 'production' : $sTargetEnvironment).'/'.ITOP_CONFIG_FILE;
- $sConfigDir = dirname($sConfigFile);
- @mkdir($sConfigDir);
- @chmod($sConfigDir, 0770); // RWX for owner and group, nothing for others
- $oConfig->WriteToFile($sConfigFile);
-
- // try to make the final config file read-only
- @chmod($sConfigFile, 0444); // Read-only for owner and group, nothing for others
- // Ready to go !!
- require_once(APPROOT.'core/dict.class.inc.php');
- MetaModel::ResetCache();
- }
- }
- class SetupDBBackup extends DBBackup
- {
- protected function LogInfo($sMsg)
- {
- SetupPage::log('Info - '.$sMsg);
- }
- protected function LogError($sMsg)
- {
- SetupPage::log('Error - '.$sMsg);
- }
- }
|