mirror of
https://github.com/Combodo/iTop.git
synced 2026-07-11 01:06:47 +02:00
* Add English, French and German structural and sample data in iTop Community * Add helper methods to allow : * Checking of supported module version format * Finding a localized file name based on a provided en_us file name and a language * Loading a file if the module upgrade crossed a given version
441 lines
18 KiB
PHP
441 lines
18 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024 Combodo SAS
|
|
//
|
|
// 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/>
|
|
|
|
/**
|
|
* Class ModuleInstaller
|
|
* Defines the API to implement module specific actions during the setup
|
|
*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
abstract class ModuleInstallerAPI
|
|
{
|
|
public static function BeforeWritingConfig(Config $oConfiguration)
|
|
{
|
|
return $oConfiguration;
|
|
}
|
|
|
|
/**
|
|
* Handler called before creating or upgrading the database schema
|
|
* @param $oConfiguration Config The new configuration of the application
|
|
* @param $sPreviousVersion string Previous version number of the module (empty string in case of first install)
|
|
* @param $sCurrentVersion string Current version number of the module
|
|
*/
|
|
public static function BeforeDatabaseCreation(Config $oConfiguration, $sPreviousVersion, $sCurrentVersion)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Handler called after the creation/update of the database schema
|
|
* @param $oConfiguration Config The new configuration of the application
|
|
* @param $sPreviousVersion string Previous version number of the module (empty string in case of first install)
|
|
* @param $sCurrentVersion string Current version number of the module
|
|
*/
|
|
public static function AfterDatabaseCreation(Config $oConfiguration, $sPreviousVersion, $sCurrentVersion)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Handler called at the end of the setup of the database (profiles and admin accounts created), but before the data load
|
|
* @param $oConfiguration Config The new configuration of the application
|
|
* @param $sPreviousVersion string Previous version number of the module (empty string in case of first install)
|
|
* @param $sCurrentVersion string Current version number of the module
|
|
*/
|
|
public static function AfterDatabaseSetup(Config $oConfiguration, $sPreviousVersion, $sCurrentVersion)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Handler called at the end of the data load
|
|
* @param $oConfiguration Config The new configuration of the application
|
|
* @param $sPreviousVersion string Previous version number of the module (empty string in case of first install)
|
|
* @param $sCurrentVersion string Current version number of the module
|
|
*/
|
|
public static function AfterDataLoad(Config $oConfiguration, $sPreviousVersion, $sCurrentVersion)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Helper to complete the renaming of a class
|
|
* The renaming is made in the datamodel definition, but the name has to be changed in the DB as well
|
|
* Must be called after DB update, i.e within an implementation of AfterDatabaseCreation()
|
|
*
|
|
* @param string $sFrom Original name (already INVALID in the current datamodel)
|
|
* @param string $sTo New name (valid in the current datamodel)
|
|
* @return void
|
|
*/
|
|
public static function RenameClassInDB($sFrom, $sTo)
|
|
{
|
|
try {
|
|
if (!MetaModel::IsStandaloneClass($sTo)) {
|
|
$sRootClass = MetaModel::GetRootClass($sTo);
|
|
$sTableName = MetaModel::DBGetTable($sRootClass);
|
|
$sFinalClassCol = MetaModel::DBGetClassField($sRootClass);
|
|
$sRepair = "UPDATE `$sTableName` SET `$sFinalClassCol` = '$sTo' WHERE `$sFinalClassCol` = BINARY '$sFrom'";
|
|
CMDBSource::Query($sRepair);
|
|
$iAffectedRows = CMDBSource::AffectedRows();
|
|
SetupLog::Info("Renaming class in DB - final class from '$sFrom' to '$sTo': $iAffectedRows rows affected");
|
|
}
|
|
} catch (Exception $e) {
|
|
SetupLog::Warning("Failed to rename class in DB - final class from '$sFrom' to '$sTo'. Reason: ".$e->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper to modify an enum value
|
|
* The change is made in the datamodel definition, but the value has to be changed in the DB as well
|
|
* Must be called BEFORE DB update, i.e within an implementation of BeforeDatabaseCreation()
|
|
* This helper does change ONE value at a time
|
|
*
|
|
* @param string $sClass A valid class name
|
|
* @param string $sAttCode The enum attribute code
|
|
* @param string $sFrom Original value (already INVALID in the current datamodel)
|
|
* @param string $sTo New value (valid in the current datamodel)
|
|
* @return void
|
|
*/
|
|
public static function RenameEnumValueInDB($sClass, $sAttCode, $sFrom, $sTo)
|
|
{
|
|
try {
|
|
if (!MetaModel::IsValidAttCode($sClass, $sAttCode)) {
|
|
SetupLog::Warning("Changing enum in DB - $sClass::$sAttCode - from '$sFrom' to '$sTo' failed. Reason '$sAttCode' is not a valid attribute of the class '$sClass'.");
|
|
return;
|
|
}
|
|
$sOriginClass = MetaModel::GetAttributeOrigin($sClass, $sAttCode);
|
|
$sTableName = MetaModel::DBGetTable($sOriginClass);
|
|
|
|
$oAttDef = MetaModel::GetAttributeDef($sOriginClass, $sAttCode);
|
|
if ($oAttDef instanceof AttributeEnum) {
|
|
$oValDef = $oAttDef->GetValuesDef();
|
|
if ($oValDef) {
|
|
$aNewValues = array_keys($oValDef->GetValues([], ""));
|
|
if (in_array($sTo, $aNewValues)) {
|
|
$sEnumCol = $oAttDef->Get("sql");
|
|
$aFields = CMDBSource::QueryToArray("SHOW COLUMNS FROM `$sTableName` WHERE Field = '$sEnumCol'");
|
|
$aCurrentValues = [];
|
|
if (isset($aFields[0]['Type'])) {
|
|
$sColType = $aFields[0]['Type'];
|
|
// Note: the parsing should rely on str_getcsv (requires PHP 5.3) to cope with escaped string
|
|
if (preg_match("/^enum\('(.*)'\)$/", $sColType, $aMatches)) {
|
|
$aCurrentValues = explode("','", $aMatches[1]);
|
|
} else {
|
|
// not an enum currently : return !
|
|
// we could update values, but a clear error message will be displayed when altering the column
|
|
return;
|
|
}
|
|
}
|
|
if (!in_array($sFrom, $aNewValues)) {
|
|
if (!in_array($sTo, $aCurrentValues)) { // if not already transformed!
|
|
$sNullSpec = $oAttDef->IsNullAllowed() ? 'NULL' : 'NOT NULL';
|
|
|
|
if (strtolower($sTo) == strtolower($sFrom)) {
|
|
SetupLog::Info("Changing enum in DB - $sClass::$sAttCode from '$sFrom' to '$sTo' (just a change in the case)");
|
|
$aTargetValues = [];
|
|
foreach ($aCurrentValues as $sValue) {
|
|
if ($sValue == $sFrom) {
|
|
$sValue = $sTo;
|
|
}
|
|
$aTargetValues[] = $sValue;
|
|
}
|
|
$sColumnDefinition = "ENUM(".implode(",", CMDBSource::Quote($aTargetValues)).") $sNullSpec";
|
|
$sRepair = "ALTER TABLE `$sTableName` MODIFY `$sEnumCol` $sColumnDefinition";
|
|
CMDBSource::Query($sRepair);
|
|
} else {
|
|
// 1st - Allow both values in the column definition
|
|
//
|
|
SetupLog::Info("Changing enum in DB - $sClass::$sAttCode from '$sFrom' to '$sTo'");
|
|
$aAllValues = $aCurrentValues;
|
|
$aAllValues[] = $sTo;
|
|
$sColumnDefinition = "ENUM(".implode(",", CMDBSource::Quote($aAllValues)).") $sNullSpec";
|
|
$sRepair = "ALTER TABLE `$sTableName` MODIFY `$sEnumCol` $sColumnDefinition";
|
|
CMDBSource::Query($sRepair);
|
|
|
|
// 2nd - Change the old value into the new value
|
|
//
|
|
$sRepair = "UPDATE `$sTableName` SET `$sEnumCol` = '$sTo' WHERE `$sEnumCol` = BINARY '$sFrom'";
|
|
CMDBSource::Query($sRepair);
|
|
$iAffectedRows = CMDBSource::AffectedRows();
|
|
SetupLog::Info("Changing enum in DB - $iAffectedRows rows updated");
|
|
|
|
// 3rd - Remove the useless value from the column definition
|
|
//
|
|
$aTargetValues = [];
|
|
foreach ($aCurrentValues as $sValue) {
|
|
if ($sValue == $sFrom) {
|
|
$sValue = $sTo;
|
|
}
|
|
$aTargetValues[] = $sValue;
|
|
}
|
|
$sColumnDefinition = "ENUM(".implode(",", CMDBSource::Quote($aTargetValues)).") $sNullSpec";
|
|
$sRepair = "ALTER TABLE `$sTableName` MODIFY `$sEnumCol` $sColumnDefinition";
|
|
CMDBSource::Query($sRepair);
|
|
SetupLog::Info("Changing enum in DB - removed useless value '$sFrom'");
|
|
}
|
|
}
|
|
} else {
|
|
SetupLog::Warning("Changing enum in DB - $sClass::$sAttCode - '$sFrom' is still a valid value (".implode(', ', $aNewValues).")");
|
|
}
|
|
} else {
|
|
SetupLog::Warning("Changing enum in DB - $sClass::$sAttCode - '$sTo' is not a known value (".implode(', ', $aNewValues).")");
|
|
}
|
|
}
|
|
}
|
|
} catch (Exception $e) {
|
|
SetupLog::Warning("Changing enum in DB - $sClass::$sAttCode - '$sTo' failed. Reason ".$e->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Move a column from a table to another table providing:
|
|
* - The id matches
|
|
* - The original column exists
|
|
* - The destination column does not exist
|
|
*
|
|
* The values are copied as is.
|
|
*
|
|
* @param $sOrigTable
|
|
* @param $sOrigColumn
|
|
* @param $sDstTable
|
|
* @param $sDstColumn
|
|
* @param bool $bIgnoreExistingDstColumn
|
|
*
|
|
* @throws \CoreException
|
|
* @throws \MySQLException
|
|
* @throws \MySQLHasGoneAwayException
|
|
*
|
|
* @since 3.2.0 N°7130 Add parameter $bIgnoreExistingDstColumn
|
|
* @since 3.2.0 No longer copy NULL data in order to avoid writing over existing data
|
|
*/
|
|
public static function MoveColumnInDB($sOrigTable, $sOrigColumn, $sDstTable, $sDstColumn, bool $bIgnoreExistingDstColumn = false)
|
|
{
|
|
if (!MetaModel::DBExists(false)) {
|
|
// Install from scratch, no migration
|
|
return;
|
|
}
|
|
|
|
if (!CMDBSource::IsTable($sOrigTable) || !CMDBSource::IsField($sOrigTable, $sOrigColumn)) {
|
|
// Original field is not present
|
|
return;
|
|
}
|
|
|
|
$bDstTableFieldExists = CMDBSource::IsField($sDstTable, $sDstColumn);
|
|
if (!CMDBSource::IsTable($sDstTable) || ($bDstTableFieldExists && !$bIgnoreExistingDstColumn)) {
|
|
// Destination field is already created, and we are not ignoring it
|
|
return;
|
|
}
|
|
|
|
// Simple rename
|
|
if ($sOrigTable === $sDstTable && !$bDstTableFieldExists) {
|
|
$sFieldSpec = CMDBSource::GetFieldSpec($sOrigTable, $sOrigColumn);
|
|
$sQueryRename = /** @lang MariaDB */ "ALTER TABLE `{$sOrigTable}` CHANGE `{$sOrigColumn}` `{$sDstColumn}` {$sFieldSpec};";
|
|
CMDBSource::Query($sQueryRename);
|
|
|
|
CMDBSource::CacheReset($sOrigTable);
|
|
return;
|
|
}
|
|
|
|
// Create the destination field if necessary
|
|
if ($bDstTableFieldExists === false) {
|
|
$sSpec = CMDBSource::GetFieldSpec($sOrigTable, $sOrigColumn);
|
|
$sQueryAdd = "ALTER TABLE `{$sDstTable}` ADD `{$sDstColumn}` {$sSpec}";
|
|
CMDBSource::Query($sQueryAdd);
|
|
}
|
|
|
|
// Copy the data
|
|
$sQueryUpdate = "UPDATE `{$sDstTable}` AS d LEFT JOIN `{$sOrigTable}` AS o ON d.id = o.id SET d.`{$sDstColumn}` = o.`{$sOrigColumn}` WHERE o.`{$sOrigColumn}` IS NOT NULL";
|
|
CMDBSource::Query($sQueryUpdate);
|
|
|
|
// Drop original field
|
|
$sQueryDrop = "ALTER TABLE `{$sOrigTable}` DROP `{$sOrigColumn}`";
|
|
CMDBSource::Query($sQueryDrop);
|
|
|
|
CMDBSource::CacheReset($sOrigTable);
|
|
CMDBSource::CacheReset($sDstTable);
|
|
}
|
|
|
|
/**
|
|
* Rename a table providing:
|
|
* - The original name exists
|
|
* - The destination name does not exist
|
|
*
|
|
* @param string $sOrigTable
|
|
* @param string $sDstTable
|
|
*
|
|
* @return void
|
|
* @throws CoreException
|
|
* @throws CoreUnexpectedValue
|
|
* @throws MySQLException
|
|
*/
|
|
public static function RenameTableInDB(string $sOrigTable, string $sDstTable)
|
|
{
|
|
if ($sOrigTable == $sDstTable) {
|
|
throw new CoreUnexpectedValue("Origin table and destination table are the same");
|
|
}
|
|
|
|
if (!MetaModel::DBExists(false)) {
|
|
// Install from scratch, no migration
|
|
return;
|
|
}
|
|
|
|
if (!CMDBSource::IsTable($sOrigTable)) {
|
|
SetupLog::Warning(sprintf('Rename table in DB - Origin table %s doesn\'t exist', $sOrigTable));
|
|
return;
|
|
}
|
|
|
|
if (CMDBSource::IsTable($sDstTable)) {
|
|
SetupLog::Warning(sprintf('Rename table in DB - Destination table %s already exists', $sDstTable));
|
|
return;
|
|
}
|
|
|
|
$sQueryRename = sprintf(/** @lang MariaDB */ "RENAME TABLE `%s` TO `%s`;", $sOrigTable, $sDstTable);
|
|
CMDBSource::Query($sQueryRename);
|
|
|
|
CMDBSource::CacheReset($sOrigTable);
|
|
}
|
|
|
|
/**
|
|
* Helper to load localized data in iTop not only at the module installation but also if during an upgrade you pass over the version which brought those data
|
|
*
|
|
* @param \Config $oConfiguration
|
|
* Expected values for the three version parameters: Valid examples: '3.2', '3.2.0', '3.2-beta1'. Invalid examples: '3', '3.2.', '3.2-beta-1', '3.2 beta1'.
|
|
* @param string $sPreviousVersion The previous version of the module (empty string in case of first install)
|
|
* @param string $sCurrentVersion The current version of the module. Cannot be empty.
|
|
* @param string $sFirstLoadingVersion If your upgrade passes over the FirstLoadingVersion or in case of fresh install, the localized data will be loaded. This is useful when you want to load (structural) data on a module upgrade. Cannot be empty.
|
|
* @param string $sDefaultFileName The file to load (If localization is expected then provided file name must end by '.en_us.xml')
|
|
* If the default iTop language is french and a localized variant of the $sDefaultFileName ending by '.fr_fr.xml' exists, then that file with french data will be loaded.
|
|
*
|
|
* @return void
|
|
* @throws \ConfigException
|
|
* @throws \CoreException
|
|
* @throws \CoreUnexpectedValue
|
|
*/
|
|
public static function LoadLocalizedDataOnCrossingVersion(Config $oConfiguration, string $sPreviousVersion, string $sCurrentVersion, string $sFirstLoadingVersion, string $sDefaultFileName): void
|
|
{
|
|
self::AssertLoadLocalizedDataOnCrossingVersionParametersAreValid($sPreviousVersion, $sCurrentVersion, $sFirstLoadingVersion);
|
|
if (self::IsVersionCrossed($sPreviousVersion, $sCurrentVersion, $sFirstLoadingVersion)) {
|
|
// Note: on upgrade, the default language cannot be retrieved from the passed configuration, it must be read from disk (see StructureInstaller::AfterDatabaseCreation)
|
|
if (utils::IsNullOrEmptyString($sPreviousVersion)) {
|
|
$sWishedLanguage = $oConfiguration->GetDefaultLanguage();
|
|
} else {
|
|
$sWishedLanguage = utils::GetConfig(true)->GetDefaultLanguage();
|
|
}
|
|
self::LoadLocalizedData($sWishedLanguage, $sDefaultFileName);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper to load a localized data file based on the default language of the application.
|
|
* @param string $sDefaultLanguage The default language of the application, used to build the localized file name
|
|
* @param string $sDefaultFile The default file to load, must be ending with .en_us.xml to be localized
|
|
*
|
|
* @return void
|
|
* @throws \Exception
|
|
*/
|
|
public static function LoadLocalizedData(string $sDefaultLanguage, string $sDefaultFile): void
|
|
{
|
|
|
|
$sFileName = self::GetLocalizedFileName($sDefaultLanguage, $sDefaultFile);
|
|
if (!file_exists($sFileName)) {
|
|
throw new Exception("File $sFileName not found");
|
|
}
|
|
$oDataLoader = new XMLDataLoader();
|
|
CMDBObject::SetTrackInfo("Loading XML data from $sFileName");
|
|
$oMyChange = CMDBObject::GetCurrentChange();
|
|
SetupLog::Info("Loading objects in DB from file: $sFileName");
|
|
$oDataLoader->StartSession($oMyChange);
|
|
$oDataLoader->LoadFile($sFileName, false, true);
|
|
$oDataLoader->EndSession();
|
|
}
|
|
|
|
/**
|
|
* Helper to get the localized file name for a given language code, based on the original file name which must end by .en_us.xml
|
|
* @param string $sLanguage The language code to use for localization (e.g. 'FR FR' or 'fr_fr')
|
|
* @param string $sOriginalFileName The full path+name of the file to localize. If ending with .en_us.xml, it searches for a localized file.
|
|
*
|
|
* @return string The localized file name if found otherwise the original file name
|
|
* @throws \Exception If the original file name ends with .en_us.xml and does not exist
|
|
*/
|
|
public static function GetLocalizedFileName(string $sLanguage, string $sOriginalFileName): string
|
|
{
|
|
if (str_ends_with($sOriginalFileName, '.en_us.xml')) {
|
|
// If the original file which can be localized, does not exist, then even if the localized file itself exists, we want to raise this design issue.
|
|
if (!file_exists($sOriginalFileName)) {
|
|
throw new Exception("File $sOriginalFileName not found, it must exist when required by the module or as iTop fallback language when no localized file exists for the iTop default language");
|
|
}
|
|
// Search for a file for the requested language,
|
|
$sLang = '.'.str_replace(' ', '_', strtolower($sLanguage)).'.xml';
|
|
$sFileName = str_replace('.en_us.xml', $sLang, $sOriginalFileName);
|
|
// localized file not found, fall back to the original file (en_us)
|
|
if (!file_exists($sFileName)) {
|
|
SetupLog::Debug("File for iTop default language $sFileName not found, fall back to file $sOriginalFileName");
|
|
$sFileName = $sOriginalFileName;
|
|
}
|
|
} else {
|
|
// If the original file is not localizable, then we just return it as is
|
|
$sFileName = $sOriginalFileName;
|
|
}
|
|
return $sFileName;
|
|
}
|
|
|
|
/**
|
|
* @throws \CoreUnexpectedValue
|
|
*/
|
|
private static function AssertLoadLocalizedDataOnCrossingVersionParametersAreValid(string $sPreviousVersion, string $sCurrentVersion, string $sFirstLoadingVersion): void
|
|
{
|
|
if (($sPreviousVersion !== '') && !self::IsValidVersionFormat($sPreviousVersion)) {
|
|
throw new CoreUnexpectedValue("LoadLocalizedDataOnCrossingVersion expects sPreviousVersion to be empty or match x.y[.z][-name], got '{$sPreviousVersion}'");
|
|
}
|
|
if (!self::IsValidVersionFormat($sCurrentVersion)) {
|
|
throw new CoreUnexpectedValue("LoadLocalizedDataOnCrossingVersion expects sCurrentVersion to match x.y[.z][-name], got '{$sCurrentVersion}'");
|
|
}
|
|
if (utils::IsNullOrEmptyString($sFirstLoadingVersion) || !self::IsValidVersionFormat($sFirstLoadingVersion)) {
|
|
throw new CoreUnexpectedValue("LoadLocalizedDataOnCrossingVersion expects sFirstLoadingVersion to match x.y[.z][-name], got '{$sFirstLoadingVersion}'");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if a module version matches x.y[.z][-name].
|
|
* Valid examples: '3.2', '3.2.1', '3.2.3-2', '3.3.0-dev', '10.14-beta2'.
|
|
* Invalid examples: '3', 'v3.2', '3.2.1.4', '3.2-rc.1', '3.2 beta1'.
|
|
*
|
|
* @param string $sVersion
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function IsValidVersionFormat(string $sVersion): bool
|
|
{
|
|
return (preg_match('/^\d+\.\d+(?:\.\d+)?(?:-[A-Za-z0-9]+)?$/', $sVersion) === 1);
|
|
}
|
|
|
|
/**
|
|
* @param string $sPreviousVersion
|
|
* @param string $sCurrentVersion
|
|
* @param string $sFirstLoadingVersion
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function IsVersionCrossed(string $sPreviousVersion, string $sCurrentVersion, string $sFirstLoadingVersion): bool
|
|
{
|
|
return ($sPreviousVersion === '') ||
|
|
(version_compare($sPreviousVersion, $sCurrentVersion, '<')
|
|
&& version_compare($sPreviousVersion, $sFirstLoadingVersion, '<')
|
|
&& version_compare($sFirstLoadingVersion, $sCurrentVersion, '<='));
|
|
}
|
|
}
|