Connect($db_hostname,$db_username,$db_password)) {
$db_server_status = true;
$serverInfo = $conn->ServerInfo();
if(Common_Install_Wizard_Utils::isMySQL($db_type)) {
$mysql_server_version = Common_Install_Wizard_Utils::getMySQLVersion($serverInfo);
}
if($create_db) {
// drop the current database if it exists
$dropdb_conn = &NewADOConnection($db_type);
if(@$dropdb_conn->Connect($db_hostname, $root_user, $root_password, $db_name)) {
$query = "drop database ".$db_name;
$dropdb_conn->Execute($query);
$dropdb_conn->Close();
}
// create the new database
$db_creation_failed = true;
$createdb_conn = &NewADOConnection($db_type);
if(@$createdb_conn->Connect($db_hostname, $root_user, $root_password)) {
$query = "create database ".$db_name;
if($create_utf8_db == 'true') {
if(Common_Install_Wizard_Utils::isMySQL($db_type))
$query .= " default character set utf8 default collate utf8_general_ci";
$db_utf8_support = true;
}
if($createdb_conn->Execute($query)) {
$db_creation_failed = false;
}
$createdb_conn->Close();
}
}
// test the connection to the database
if(@$conn->Connect($db_hostname, $db_username, $db_password, $db_name))
{
$db_exist_status = true;
if(!$db_utf8_support) {
// Check if the database that we are going to use supports UTF-8
$db_utf8_support = check_db_utf8_support($conn);
}
}
$conn->Close();
}
}
$dbCheckResult['db_utf8_support'] = $db_utf8_support;
$error_msg = '';
$error_msg_info = '';
if(!$db_type_status || !$db_server_status) {
$error_msg = $installationStrings['ERR_DATABASE_CONNECTION_FAILED'].'. '.$installationStrings['ERR_INVALID_MYSQL_PARAMETERS'];
$error_msg_info = $installationStrings['MSG_LIST_REASONS'].':
- '.$installationStrings['MSG_DB_PARAMETERS_INVALID'].'. '.$installationStrings['LBL_MORE_INFORMATION'].'
- '.$installationStrings['MSG_DB_USER_NOT_AUTHORIZED'];
}
elseif(Common_Install_Wizard_Utils::isMySQL($db_type) && $mysql_server_version < '4.1') {
$error_msg = $mysql_server_version.' -> '.$installationStrings['ERR_INVALID_MYSQL_VERSION'];
}
elseif($db_creation_failed) {
$error_msg = $installationStrings['ERR_UNABLE_CREATE_DATABASE'].' '.$db_name;
$error_msg_info = $installationStrings['MSG_DB_ROOT_USER_NOT_AUTHORIZED'];
}
elseif(!$db_exist_status) {
$error_msg = $db_name.' -> '.$installationStrings['ERR_DB_NOT_FOUND'];
}
else {
$dbCheckResult['flag'] = true;
return $dbCheckResult;
}
$dbCheckResult['flag'] = false;
$dbCheckResult['error_msg'] = $error_msg;
$dbCheckResult['error_msg_info'] = $error_msg_info;
return $dbCheckResult;
}
}
class Migration_Utils {
static function verifyMigrationInfo($migrationInfo) {
global $installationStrings, $vtiger_current_version;
$dbVerifyResult = array();
$dbVerifyResult['flag'] = false;
$configInfo = array();
if (isset($migrationInfo['source_directory'])) $source_directory = $migrationInfo['source_directory'];
if (isset($migrationInfo['root_directory'])) $configInfo['root_directory'] = $migrationInfo['root_directory'];
if(is_dir($source_directory)){
if(!is_file($source_directory."config.inc.php")){
$dbVerifyResult['error_msg'] = $installationStrings['ERR_NO_CONFIG_FILE'];
return $dbVerifyResult;
}
if(!is_dir($source_directory."user_privileges")){
$dbVerifyResult['error_msg'] = $installationStrings['ERR_NO_USER_PRIV_DIR'];
return $dbVerifyResult;
}
if(!is_dir($source_directory."storage")){
$dbVerifyResult['error_msg'] = $installationStrings['ERR_NO_STORAGE_DIR'];
return $dbVerifyResult;
}
} else {
$dbVerifyResult['error_msg'] = $installationStrings['ERR_NO_SOURCE_DIR'];
return $dbVerifyResult;
}
global $dbconfig;
require_once($source_directory."config.inc.php");
$old_db_name = $dbconfig['db_name'];
$db_hostname = $dbconfig['db_server'].$dbconfig['db_port'];
$db_username = $dbconfig['db_username'];
$db_password = $dbconfig['db_password'];
$db_type = $dbconfig['db_type'];
if (isset($migrationInfo['user_name'])) $user_name = $migrationInfo['user_name'];
if (isset($migrationInfo['user_pwd'])) $user_pwd = $migrationInfo['user_pwd'];
if (isset($migrationInfo['old_version'])) $source_version = $migrationInfo['old_version'];
if (isset($migrationInfo['new_dbname'])) $new_db_name = $migrationInfo['new_dbname'];
$configInfo['db_name'] = $new_db_name;
$configInfo['db_type'] = $db_type;
$configInfo['db_hostname'] = $db_hostname;
$configInfo['db_username'] = $db_username;
$configInfo['db_password'] = $db_password;
$configInfo['admin_email'] = $HELPDESK_SUPPORT_EMAIL_ID;
$configInfo['currency_name'] = $currency_name;
$dbVerifyResult['old_dbname'] = $old_db_name;
$db_type_status = false; // is there a db type?
$db_server_status = false; // does the db server connection exist?
$old_db_exist_status = false; // does the old database exist?
$db_utf8_support = false; // does the database support utf8?
$new_db_exist_status = false; // does the new database exist?
$new_db_has_tables = false; // does the new database has tables in it?
require_once('include/DatabaseUtil.php');
//Checking for database connection parameters and copying old database into new database
if($db_type) {
$conn = &NewADOConnection($db_type);
$db_type_status = true;
if(@$conn->Connect($db_hostname,$db_username,$db_password)) {
$db_server_status = true;
$serverInfo = $conn->ServerInfo();
if(Common_Install_Wizard_Utils::isMySQL($db_type)) {
$mysql_server_version = Common_Install_Wizard_Utils::getMySQLVersion($serverInfo);
}
// test the connection to the old database
$olddb_conn = &NewADOConnection($db_type);
if(@$olddb_conn->Connect($db_hostname, $db_username, $db_password, $old_db_name))
{
$old_db_exist_status = true;
if(version_compare(PHP_VERSION, '5.3.0') >= 0) {
$sql = 'alter table vtiger_users change user_password user_password varchar(128)';
$alterResult = $olddb_conn->_Execute($sql);
if(!is_object($alterResult)) {
$dbVerifyResult['error_msg'] =
$installationStrings['LBL_PASSWORD_FIELD_CHANGE_FAILURE'];
}
if(!is_array($_SESSION['migration_info']['user_messages'])) {
unset($_SESSION['migration_info']['user_messages']);
$_SESSION['migration_info']['user_messages'] = array();
$_SESSION['migration_info']['user_messages'][] = array(
'status' => "".
$installationStrings['LBL_IMPORTANT_NOTE']."",
'msg' => "".
$installationStrings['LBL_USER_PASSWORD_CHANGE_NOTE'].""
);
}
if(self::resetUserPasswords($olddb_conn)) {
$_SESSION['migration_info']['user_pwd'] = $user_name;
$migrationInfo['user_pwd'] = $user_name;
$user_pwd = $user_name;
}
}
if(Migration_Utils::authenticateUser($olddb_conn, $user_name,$user_pwd)==true) {
$is_admin = true;
} else{
$dbVerifyResult['error_msg'] = $installationStrings['ERR_NOT_VALID_USER'];
return $dbVerifyResult;
}
$olddb_conn->Close();
}
// test the connection to the new database
$newdb_conn = &NewADOConnection($db_type);
if(@$newdb_conn->Connect($db_hostname, $db_username, $db_password, $new_db_name))
{
$new_db_exist_status = true;
$noOfTablesInNewDb = Migration_Utils::getNumberOfTables($newdb_conn);
if($noOfTablesInNewDb > 0){
$new_db_has_tables = true;
}
$db_utf8_support = check_db_utf8_support($newdb_conn);
$configInfo['vt_charset'] = ($db_utf8_support)? "UTF-8" : "ISO-8859-1";
$newdb_conn->Close();
}
}
$conn->Close();
}
if(!$db_type_status || !$db_server_status) {
$error_msg = $installationStrings['ERR_DATABASE_CONNECTION_FAILED'].'. '.$installationStrings['ERR_INVALID_MYSQL_PARAMETERS'];
$error_msg_info = $installationStrings['MSG_LIST_REASONS'].':
- '.$installationStrings['MSG_DB_PARAMETERS_INVALID'].'. '.$installationStrings['LBL_MORE_INFORMATION'].'
- '.$installationStrings['MSG_DB_USER_NOT_AUTHORIZED'];
} elseif(Common_Install_Wizard_Utils::isMySQL($db_type) && $mysql_server_version < '4.1') {
$error_msg = $mysql_server_version.' -> '.$installationStrings['ERR_INVALID_MYSQL_VERSION'];
} elseif(!$old_db_exist_status) {
$error_msg = $old_db_name.' -> '.$installationStrings['ERR_DATABASE_NOT_FOUND'];
} elseif(!$new_db_exist_status) {
$error_msg = $new_db_name.' -> '.$installationStrings['ERR_DATABASE_NOT_FOUND'];
} elseif(!$new_db_has_tables) {
$error_msg = $new_db_name.' -> '.$installationStrings['ERR_MIGRATION_DATABASE_IS_EMPTY'];
} else {
$web_root = ($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"]:$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'];
$web_root .= $_SERVER["REQUEST_URI"];
$web_root = preg_replace("/\/install.php(.)*/i", "", $web_root);
$site_URL = "http://".$web_root;
$configInfo['site_URL'] = $site_URL;
$dbVerifyResult['config_info'] = $configInfo;
$dbVerifyResult['flag'] = true;
return $dbVerifyResult;
}
$dbVerifyResult['config_info'] = $configInfo;
$dbVerifyResult['error_msg'] = $error_msg;
$dbVerifyResult['error_msg_info'] = $error_msg_info;
return $dbVerifyResult;
}
private static function authenticateUser($dbConnection, $userName,$userPassword){
$userResult = $dbConnection->_Execute("SELECT * FROM vtiger_users WHERE user_name = '$userName'");
$noOfRows = $userResult->NumRows($userResult);
if ($noOfRows > 0) {
$userInfo = $userResult->GetRowAssoc(0);
$cryptType = $userInfo['crypt_type'];
$userEncryptedPassword = $userInfo['user_password'];
$userStatus = $userInfo['status'];
$isAdmin = $userInfo['is_admin'];
$computedEncryptedPassword = self::getEncryptedPassword($userName, $cryptType,
$userPassword);
if($userEncryptedPassword == $computedEncryptedPassword && $userStatus == 'Active' && $isAdmin == 'on'){
return true;
}
}
return false;
}
private static function getNumberOfTables($dbConnection) {
$metaTablesSql = $dbConnection->metaTablesSQL;
$noOfTables = 0;
if(!empty($metaTablesSql)) {
$tablesResult = $dbConnection->_Execute($metaTablesSql);
$noOfTables = $tablesResult->NumRows($tablesResult);
}
return $noOfTables;
}
static function copyRequiredFiles($sourceDirectory, $destinationDirectory) {
if (realpath($sourceDirectory) == realpath($destinationDirectory)) return;
@Migration_Utils::getFilesFromFolder($sourceDirectory."user_privileges/",$destinationDirectory."user_privileges/",
// Force copy these files - Overwrite if they exist in destination directory.
array($sourceDirectory."user_privileges/default_module_view.php")
);
@Migration_Utils::getFilesFromFolder($sourceDirectory."storage/",$destinationDirectory."storage/");
@Migration_Utils::getFilesFromFolder($sourceDirectory."test/contact/",$destinationDirectory."test/contact/");
@Migration_Utils::getFilesFromFolder($sourceDirectory."test/logo/",$destinationDirectory."test/logo/");
@Migration_Utils::getFilesFromFolder($sourceDirectory."test/product/",$destinationDirectory."test/product/");
@Migration_Utils::getFilesFromFolder($sourceDirectory."test/user/",$destinationDirectory."test/user/");
}
private static function getFilesFromFolder($source, $dest, $forcecopy=false) {
if(!$forcecopy) $forcecopy = Array();
if ($handle = opendir($source)) {
while (false != ($file = readdir($handle))) {
if (is_file($source.$file)) {
if(!file_exists($dest.$file) || in_array($source.$file, $forcecopy)){
$file_handle = fopen($dest.$file,'w');
fclose($file_handle);
copy($source.$file, $dest.$file);
}
} elseif ($file != '.' && $file != '..' && is_dir($source.$file)) {
if(!file_exists("$dest.$file")) {
mkdir($dest.$file.'/',0777);
}
Migration_Utils::getFilesFromFolder($source.$file.'/', $dest.$file.'/');
}
}
}
@closedir($handle);
}
static function getInstallableOptionalModules() {
$optionalModules = Common_Install_Wizard_Utils::getInstallableModulesFromPackages();
$skipModules = array();
if(!empty($optionalModules['install'])) $skipModules = array_merge($skipModules,array_keys($optionalModules['install']));
if(!empty($optionalModules['update'])) $skipModules = array_merge($skipModules,array_keys($optionalModules['update']));
$mandatoryModules = Common_Install_Wizard_Utils::getMandatoryModuleList();
$oldVersion = str_replace(array('.', ' '), array('', ''),
$_SESSION['migration_info']['old_version']);
$customModules = array();
if (version_compare($oldVersion, '502') > 0) {
$customModules = Migration_Utils::getCustomModulesFromDB(array_merge($skipModules,
$mandatoryModules));
}
$optionalModules = array_merge($optionalModules, $customModules);
return $optionalModules;
}
static function getCustomModulesFromDB($skipModules) {
global $optionalModuleStrings, $adb;
require_once('vtlib/Vtiger/Package.php');
require_once('vtlib/Vtiger/Module.php');
require_once('vtlib/Vtiger/Version.php');
$customModulesResult = $adb->pquery('SELECT tabid, name FROM vtiger_tab WHERE customized=1 AND
name NOT IN ('. generateQuestionMarks($skipModules).')', $skipModules);
$noOfCustomModules = $adb->num_rows($customModulesResult);
$customModules = array();
for($i=0;$i<$noOfCustomModules;++$i) {
$tabId = $adb->query_result($customModulesResult,$i,'tabid');
$moduleName = $adb->query_result($customModulesResult,$i,'name');
$moduleDetails = array();
$moduleDetails['description'] = $optionalModuleStrings[$moduleName.'_description'];
$moduleDetails['selected'] = false;
$moduleDetails['enabled'] = false;
if(Vtiger_Utils::checkTable('vtiger_tab_info')) {
$tabInfo = getTabInfo($tabId);
if(Vtiger_Version::check($tabInfo['vtiger_min_version'],'>=') && Vtiger_Version::check($tabInfo['vtiger_max_version'],'<')) {
$moduleDetails['selected'] = true;
$moduleDetails['enabled'] = false;
}
}
$customModules['copy'][$moduleName] = $moduleDetails;
}
return $customModules;
}
// Function to install Vtlib Compliant - Optional Modules
static function installOptionalModules($selectedModules, $sourceDirectory, $destinationDirectory){
Migration_Utils::copyCustomModules($selectedModules, $sourceDirectory, $destinationDirectory);
Common_Install_Wizard_Utils::installSelectedOptionalModules($selectedModules, $sourceDirectory, $destinationDirectory);
}
private static function copyCustomModules($selectedModules, $sourceDirectory, $destinationDirectory) {
global $adb;
$selectedModules = explode(":",$selectedModules);
$customModulesResult = $adb->pquery('SELECT tabid, name FROM vtiger_tab WHERE customized = 1', array());
$noOfCustomModules = $adb->num_rows($customModulesResult);
$mandatoryModules = Common_Install_Wizard_Utils::getMandatoryModuleList();
$optionalModules = Common_Install_Wizard_Utils::getInstallableModulesFromPackages();
$skipModules = array_merge($mandatoryModules, $optionalModules);
for($i=0;$i<$noOfCustomModules;++$i) {
$moduleName = $adb->query_result($customModulesResult,$i,'name');
if(!in_array($moduleName, $skipModules)) {
Migration_Utils::copyModuleFiles($moduleName, $sourceDirectory, $destinationDirectory);
if(!in_array($moduleName,$selectedModules)) {
vtlib_toggleModuleAccess((string)$moduleName, false);
}
}
}
}
static function copyModuleFiles($moduleName, $sourceDirectory, $destinationDirectory) {
$sourceDirectory = realpath($sourceDirectory);
$destinationDirectory = realpath($destinationDirectory);
if (!empty($moduleName) && !empty($sourceDirectory) && !empty($destinationDirectory) && $sourceDirectory != $destinationDirectory) {
if(file_exists("$sourceDirectory/modules/$moduleName")) {
if(!file_exists("$destinationDirectory/modules/$moduleName")) {
mkdir("$destinationDirectory/modules/$moduleName".'/',0777);
}
Migration_Utils::getFilesFromFolder("{$sourceDirectory}/modules/$moduleName/","{$destinationDirectory}/modules/$moduleName/");
}
if(file_exists("$sourceDirectory/Smarty/templates/modules/$moduleName")) {
if(!file_exists("$destinationDirectory/Smarty/templates/modules/$moduleName")) {
mkdir("$destinationDirectory/Smarty/templates/modules/$moduleName".'/',0777);
}
Migration_Utils::getFilesFromFolder("{$sourceDirectory}/Smarty/templates/modules/$moduleName/","{$destinationDirectory}/Smarty/templates/modules/$moduleName/");
}
if(file_exists("$sourceDirectory/cron/modules/$moduleName")) {
if(!file_exists("$destinationDirectory/cron/modules/$moduleName")) {
mkdir("$destinationDirectory/cron/modules/$moduleName".'/',0777);
}
Migration_Utils::getFilesFromFolder("{$sourceDirectory}/cron/modules/$moduleName/","{$destinationDirectory}/cron/modules/$moduleName/");
}
}
}
function migrate($migrationInfo){
global $installationStrings;
$completed = false;
set_time_limit(0);//ADDED TO AVOID UNEXPECTED TIME OUT WHILE MIGRATING
global $dbconfig;
require ($migrationInfo['root_directory'] . '/config.inc.php');
$dbtype = $dbconfig['db_type'];
$host = $dbconfig['db_server'].$dbconfig['db_port'];
$dbname = $dbconfig['db_name'];
$username = $dbconfig['db_username'];
$passwd = $dbconfig['db_password'];
global $adb,$migrationlog;
$adb = new PearDatabase($dbtype,$host,$dbname,$username,$passwd);
$query = " ALTER DATABASE ".$adb->escapeDbName($dbname)." DEFAULT CHARACTER SET utf8";
$adb->query($query);
$source_directory = $migrationInfo['source_directory'];
if(file_exists($source_directory.'user_privileges/CustomInvoiceNo.php')) {
require_once($source_directory.'user_privileges/CustomInvoiceNo.php');
}
$migrationlog =& LoggerManager::getLogger('MIGRATION');
if (isset($migrationInfo['old_version'])) $source_version = $migrationInfo['old_version'];
if(!isset($source_version) || empty($source_version)) {
//If source version is not set then we cannot proceed
echo "
".$installationStrings['LBL_SOURCE_VERSION_NOT_SET'];
exit;
}
$reach = 0;
include($migrationInfo['root_directory']."/modules/Migration/versions.php");
foreach($versions as $version => $label) {
if($version == $source_version || $reach == 1) {
$reach = 1;
$temp[] = $version;
}
}
$temp[] = $current_version;
global $adb, $dbname;
$_SESSION['adodb_current_object'] = $adb;
@ini_set('zlib.output_compression', 0);
@ini_set('output_buffering','off');
ob_implicit_flush(true);
echo '
';
if(is_array($_SESSION['migration_info']['user_messages'])) {
foreach ($_SESSION['migration_info']['user_messages'] as $infoMap) {
echo "".$infoMap['status']." | ".$infoMap['msg']." |
";
}
}
echo "{$installationStrings['LBL_GOING_TO_APPLY_DB_CHANGES']}... |
";
for($patch_count=0;$patch_count | ";
$start_tag = " ";
$end_tag = " |
";
if(is_file($filename)) {
echo $empty_tag.$start_tag.$temp[$patch_count]." ==> ".$temp[$patch_count+1]. " " .$installationStrings['LBL_DATABASE_CHANGES'] ." -- ". $installationStrings['LBL_STARTS'] .".".$end_tag;
include($filename);//include the file which contains the corresponding db changes
echo $start_tag.$temp[$patch_count]." ==> ".$temp[$patch_count+1]. " " .$installationStrings['LBL_DATABASE_CHANGES'] ." -- ". $installationStrings['LBL_ENDS'] .".".$end_tag;
}
}
/* Install Vtlib Compliant Modules */
Common_Install_Wizard_Utils::installMandatoryModules();
Migration_Utils::installOptionalModules($migrationInfo['selected_optional_modules'], $migrationInfo['source_directory'], $migrationInfo['root_directory']);
Migration_utils::copyLanguageFiles($migrationInfo['source_directory'], $migrationInfo['root_directory']);
//Here we have to update the version in table. so that when we do migration next time we will get the version
$res = $adb->query('SELECT * FROM vtiger_version');
global $vtiger_current_version;
require($migrationInfo['root_directory'].'/vtigerversion.php');
if($adb->num_rows($res)) {
$res = ExecuteQuery("UPDATE vtiger_version SET old_version='$versions[$source_version]',current_version='$vtiger_current_version'");
$completed = true;
} else {
ExecuteQuery("INSERT INTO vtiger_version (id, old_version, current_version) values (".$adb->getUniqueID('vtiger_version').", '$versions[$source_version]', '$vtiger_current_version');");
$completed = true;
}
echo '
';
create_tab_data_file();
create_parenttab_data_file();
return $completed;
}
public static function resetUserPasswords($con) {
$sql = 'select * from vtiger_users';
$result = $con->_Execute($sql, false);
$rowList = $result->GetRows();
foreach ($rowList as $row) {
if(!isset($row['crypt_type'])) {
return false;
}
$cryptType = $row['crypt_type'];
if(strtolower($cryptType) == 'md5' && version_compare(PHP_VERSION, '5.3.0') >= 0) {
$cryptType = 'PHP5.3MD5';
}
$encryptedPassword = self::getEncryptedPassword($row['user_name'], $cryptType,
$row['user_name']);
$userId = $row['id'];
$sql = "update vtiger_users set user_password=?,crypt_type=? where id=?";
$updateResult = $con->Execute($sql, array($encryptedPassword, $cryptType, $userId));
if(!is_object($updateResult)) {
$_SESSION['migration_info']['user_messages'][] = array(
'status' => "Failed: ",
'msg' => "$sql
".var_export(array($encryptedPassword, $userId))
);
}
}
return true;
}
public static function getEncryptedPassword($userName, $cryptType, $userPassword) {
$salt = substr($userName, 0, 2);
// For more details on salt format look at: http://in.php.net/crypt
if($cryptType == 'MD5') {
$salt = '$1$' . $salt . '$';
} elseif($cryptType == 'BLOWFISH') {
$salt = '$2$' . $salt . '$';
} elseif($cryptType == 'PHP5.3MD5') {
//only change salt for php 5.3 or higher version for backward
//compactibility.
//crypt API is lot stricter in taking the value for salt.
$salt = '$1$' . str_pad($salt, 9, '0');
}
$computedEncryptedPassword = crypt($userPassword, $salt);
return $computedEncryptedPassword;
}
public static function copyLanguageFiles($sourceDirectory, $destinationDirectory) {
global $adb;
$result = $adb->pquery('select * from vtiger_language', array());
$it = new SqlResultIterator($adb, $result);
$installedLanguages = array();
$defaultLanguage = 'en_us';
foreach ($it as $row) {
if($row->prefix !== $defaultLanguage) {
$installedLanguages[] = $row->prefix;
}
}
self::copyLanguageFileFromFolder($sourceDirectory, $destinationDirectory,
$installedLanguages);
}
public static function copyLanguageFileFromFolder($sourceDirectory, $destinationDirectory,
$installedLanguages) {
$ignoreDirectoryList = array('.', '..', 'storage','themes','fckeditor', 'HTMLPurifier');
if ($handle = opendir($sourceDirectory)) {
while (false !== ($file = readdir($handle))) {
if(is_dir($sourceDirectory.DIRECTORY_SEPARATOR.$file) && !in_array($file,
$ignoreDirectoryList)) {
self::copyLanguageFileFromFolder($sourceDirectory.DIRECTORY_SEPARATOR.$file,
$destinationDirectory.DIRECTORY_SEPARATOR.$file,$installedLanguages);
continue;
} elseif(in_array($file, $ignoreDirectoryList)) {
continue;
}
$found = false;
foreach ($installedLanguages as $prefix) {
if(strpos($file, $prefix) === 0) {
$found = true;
break;
}
}
if (!empty($file) && $found == true) {
copy($sourceDirectory.DIRECTORY_SEPARATOR.$file, $destinationDirectory.
DIRECTORY_SEPARATOR.$file);
}
}
closedir($handle);
}
}
}
class ConfigFile_Utils {
private $rootDirectory;
private $dbHostname;
private $dbPort;
private $dbUsername;
private $dbPassword;
private $dbName;
private $dbType;
private $siteUrl;
private $cacheDir;
private $vtCharset;
private $currencyName;
private $adminEmail;
function ConfigFile_Utils($configFileParameters) {
if (isset($configFileParameters['root_directory']))
$this->rootDirectory = $configFileParameters['root_directory'];
if (isset($configFileParameters['db_hostname'])) {
if(strpos($configFileParameters['db_hostname'], ":")) {
list($this->dbHostname,$this->dbPort) = explode(":",$configFileParameters['db_hostname']);
} else {
$this->dbHostname = $configFileParameters['db_hostname'];
}
}
if (isset($configFileParameters['db_username'])) $this->dbUsername = $configFileParameters['db_username'];
if (isset($configFileParameters['db_password'])) $this->dbPassword = $configFileParameters['db_password'];
if (isset($configFileParameters['db_name'])) $this->dbName = $configFileParameters['db_name'];
if (isset($configFileParameters['db_type'])) $this->dbType = $configFileParameters['db_type'];
if (isset($configFileParameters['site_URL'])) $this->siteUrl = $configFileParameters['site_URL'];
if (isset($configFileParameters['admin_email'])) $this->adminEmail = $configFileParameters['admin_email'];
if (isset($configFileParameters['currency_name'])) $this->currencyName = $configFileParameters['currency_name'];
if (isset($configFileParameters['vt_charset'])) $this->vtCharset = $configFileParameters['vt_charset'];
// update default port
if ($this->dbPort == '') $this->dbPort = ConfigFile_Utils::getDbDefaultPort($this->dbType);
$this->cacheDir = 'cache/';
}
static function getDbDefaultPort($dbType) {
if(Common_Install_Wizard_Utils::isMySQL($dbType)) {
return "3306";
}
if(Common_Install_Wizard_Utils::isPostgres($dbType)) {
return "5432";
}
if(Common_Install_Wizard_Utils::isOracle($dbType)) {
return '1521';
}
}
function createConfigFile() {
if (is_file('config.inc.php'))
$is_writable = is_writable('config.inc.php');
else
$is_writable = is_writable('.');
/* open template configuration file read only */
$templateFilename = 'config.template.php';
$templateHandle = fopen($templateFilename, "r");
if($templateHandle) {
/* open include configuration file write only */
$includeFilename = 'config.inc.php';
$includeHandle = fopen($includeFilename, "w");
if($includeHandle) {
while (!feof($templateHandle)) {
$buffer = fgets($templateHandle);
/* replace _DBC_ variable */
$buffer = str_replace( "_DBC_SERVER_", $this->dbHostname, $buffer);
$buffer = str_replace( "_DBC_PORT_", $this->dbPort, $buffer);
$buffer = str_replace( "_DBC_USER_", $this->dbUsername, $buffer);
$buffer = str_replace( "_DBC_PASS_", $this->dbPassword, $buffer);
$buffer = str_replace( "_DBC_NAME_", $this->dbName, $buffer);
$buffer = str_replace( "_DBC_TYPE_", $this->dbType, $buffer);
$buffer = str_replace( "_SITE_URL_", $this->siteUrl, $buffer);
/* replace dir variable */
$buffer = str_replace( "_VT_ROOTDIR_", $this->rootDirectory, $buffer);
$buffer = str_replace( "_VT_CACHEDIR_", $this->cacheDir, $buffer);
$buffer = str_replace( "_VT_TMPDIR_", $this->cacheDir."images/", $buffer);
$buffer = str_replace( "_VT_UPLOADDIR_", $this->cacheDir."upload/", $buffer);
$buffer = str_replace( "_DB_STAT_", "true", $buffer);
/* replace charset variable */
$buffer = str_replace( "_VT_CHARSET_", $this->vtCharset, $buffer);
/* replace master currency variable */
$buffer = str_replace( "_MASTER_CURRENCY_", $this->currencyName, $buffer);
/* replace the application unique key variable */
$buffer = str_replace( "_VT_APP_UNIQKEY_", md5(time() + rand(1,9999999) + md5($this->rootDirectory)) , $buffer);
/* replace support email variable */
$buffer = str_replace( "_USER_SUPPORT_EMAIL_", $this->adminEmail, $buffer);
fwrite($includeHandle, $buffer);
}
fclose($includeHandle);
}
fclose($templateHandle);
}
if ($templateHandle && $includeHandle) {
return true;
}
return false;
}
function getConfigFileContents() {
$configFileContents = "adminEmail}';
\$HELPDESK_SUPPORT_NAME = 'your-support name';
\$HELPDESK_SUPPORT_EMAIL_REPLY_ID = \$HELPDESK_SUPPORT_EMAIL_ID;
/* database configuration
db_server
db_port
db_hostname
db_username
db_password
db_name
*/
\$dbconfig['db_server'] = '{$this->dbHostname}';
\$dbconfig['db_port'] = ':{$this->dbPort}';
\$dbconfig['db_username'] = '{$this->dbUsername}';
\$dbconfig['db_password'] = '{$this->dbPassword}';
\$dbconfig['db_name'] = '{$this->dbName}';
\$dbconfig['db_type'] = '{$this->dbType}';
\$dbconfig['db_status'] = 'true';
// TODO: test if port is empty
// TODO: set db_hostname dependending on db_type
\$dbconfig['db_hostname'] = \$dbconfig['db_server'].\$dbconfig['db_port'];
// log_sql default value = false
\$dbconfig['log_sql'] = false;
// persistent default value = true
\$dbconfigoption['persistent'] = true;
// autofree default value = false
\$dbconfigoption['autofree'] = false;
// debug default value = 0
\$dbconfigoption['debug'] = 0;
// seqname_format default value = '%s_seq'
\$dbconfigoption['seqname_format'] = '%s_seq';
// portability default value = 0
\$dbconfigoption['portability'] = 0;
// ssl default value = false
\$dbconfigoption['ssl'] = false;
\$host_name = \$dbconfig['db_hostname'];
\$site_URL = '{$this->siteUrl}';
// root directory path
\$root_directory = '{$this->rootDirectory}';
// cache direcory path
\$cache_dir = '{$this->cacheDir}';
// tmp_dir default value prepended by cache_dir = images/
\$tmp_dir = '{$this->cacheDir}images/';
// import_dir default value prepended by cache_dir = import/
\$import_dir = 'cache/import/';
// upload_dir default value prepended by cache_dir = upload/
\$upload_dir = '{$this->cacheDir}upload/';
// maximum file size for uploaded files in bytes also used when uploading import files
// upload_maxsize default value = 3000000
\$upload_maxsize = 3000000;
// flag to allow export functionality
// 'all' to allow anyone to use exports
// 'admin' to only allow admins to export
// 'none' to block exports completely
// allow_exports default value = all
\$allow_exports = 'all';
// files with one of these extensions will have '.txt' appended to their filename on upload
\$upload_badext = array('php', 'php3', 'php4', 'php5', 'pl', 'cgi', 'py', 'asp', 'cfm', 'js', 'vbs', 'html', 'htm', 'exe', 'bin', 'bat', 'sh', 'dll', 'phps', 'phtml', 'xhtml', 'rb', 'msi', 'jsp', 'shtml', 'sth', 'shtm');
// full path to include directory including the trailing slash
// includeDirectory default value = \$root_directory..'include/
\$includeDirectory = \$root_directory.'include/';
// list_max_entries_per_page default value = 20
\$list_max_entries_per_page = '20';
// limitpage_navigation default value = 5
\$limitpage_navigation = '5';
// history_max_viewed default value = 5
\$history_max_viewed = '5';
// default_module default value = Home
\$default_module = 'Home';
// default_action default value = index
\$default_action = 'index';
// set default theme
// default_theme default value = blue
\$default_theme = 'softed';
// show or hide time to compose each page
// calculate_response_time default value = true
\$calculate_response_time = true;
// default text that is placed initially in the login form for user name
// no default_user_name default value
\$default_user_name = '';
// default text that is placed initially in the login form for password
// no default_password default value
\$default_password = '';
// create user with default username and password
// create_default_user default value = false
\$create_default_user = false;
// default_user_is_admin default value = false
\$default_user_is_admin = false;
// if your MySQL/PHP configuration does not support persistent connections set this to true to avoid a large performance slowdown
// disable_persistent_connections default value = false
\$disable_persistent_connections = false;
//Master currency name
\$currency_name = '{$this->currencyName}';
// default charset
// default charset default value = 'UTF-8' or 'ISO-8859-1'
\$default_charset = '{$this->vtCharset}';
// default language
// default_language default value = en_us
\$default_language = 'en_us';
// add the language pack name to every translation string in the display.
// translation_string_prefix default value = false
\$translation_string_prefix = false;
//Option to cache tabs permissions for speed.
\$cache_tab_perms = true;
//Option to hide empty home blocks if no entries.
\$display_empty_home_blocks = false;
//Disable Stat Tracking of vtiger CRM instance
\$disable_stats_tracking = false;
// Generating Unique Application Key
\$application_unique_key = '".md5(time() + rand(1,9999999) + md5($this->rootDirectory)) ."';
// trim descriptions, titles in listviews to this value
\$listview_max_textlength = 40;
// Maximum time limit for PHP script execution (in seconds)
\$php_max_execution_time = 0;
// Set the default timezone as per your preference
//\$default_timezone = '';
/** If timezone is configured, try to set it */
if(isset(\$default_timezone) && function_exists('date_default_timezone_set')) {
@date_default_timezone_set(\$default_timezone);
}
?>";
return $configFileContents;
}
}
class Common_Install_Wizard_Utils {
public static $recommendedDirectives = array (
'safe_mode' => 'Off',
'display_errors' => 'On',
'file_uploads' => 'On',
'register_globals' => 'On',
'output_buffering' => 'On',
'max_execution_time' => '600',
'memory_limit' => '32',
'error_reporting' => 'E_WARNING & ~E_NOTICE',
'allow_call_time_pass_reference' => 'On',
'log_errors' => 'Off',
'short_open_tag' => 'On'
);
public static $writableFilesAndFolders = array (
'Configuration File' => './config.inc.php',
'Tabdata File' => './tabdata.php',
'Installation File' => './install.php',
'Parent Tabdata File' => './parent_tabdata.php',
'Cache Directory' => './cache/',
'Image Cache Directory' => './cache/images/',
'Import Cache Directory' => './cache/import/',
'Storage Directory' => './storage/',
'Install Directory' => './install/',
'User Privileges Directory' => './user_privileges/',
'Smarty Cache Directory' => './Smarty/cache/',
'Smarty Compile Directory' => './Smarty/templates_c/',
'Email Templates Directory' => './modules/Emails/templates/',
'Modules Directory' => './modules/',
'Cron Modules Directory' => './cron/modules/',
'Vtlib Test Directory' => './test/vtlib/',
'Vtlib Test HTML Directory' => './test/vtlib/HTML',
'Backup Directory' => './backup/',
'Smarty Modules Directory' => './Smarty/templates/modules/',
'Mail Merge Template Directory' => './test/wordtemplatedownload/',
'Product Image Directory' => './test/product/',
'User Image Directory' => './test/user/',
'Contact Image Directory' => './test/contact/',
'Logo Directory' => './test/logo/',
'Logs Directory' => './logs/',
'Webmail Attachments Directory' => './modules/Webmails/tmp/'
);
public static $gdInfoAlternate = 'function gd_info() {
$array = Array(
"GD Version" => "",
"FreeType Support" => 0,
"FreeType Support" => 0,
"FreeType Linkage" => "",
"T1Lib Support" => 0,
"GIF Read Support" => 0,
"GIF Create Support" => 0,
"JPG Support" => 0,
"PNG Support" => 0,
"WBMP Support" => 0,
"XBM Support" => 0
);
$gif_support = 0;
ob_start();
eval("phpinfo();");
$info = ob_get_contents();
ob_end_clean();
foreach(explode("\n", $info) as $line) {
if(strpos($line, "GD Version")!==false)
$array["GD Version"] = trim(str_replace("GD Version", "", strip_tags($line)));
if(strpos($line, "FreeType Support")!==false)
$array["FreeType Support"] = trim(str_replace("FreeType Support", "", strip_tags($line)));
if(strpos($line, "FreeType Linkage")!==false)
$array["FreeType Linkage"] = trim(str_replace("FreeType Linkage", "", strip_tags($line)));
if(strpos($line, "T1Lib Support")!==false)
$array["T1Lib Support"] = trim(str_replace("T1Lib Support", "", strip_tags($line)));
if(strpos($line, "GIF Read Support")!==false)
$array["GIF Read Support"] = trim(str_replace("GIF Read Support", "", strip_tags($line)));
if(strpos($line, "GIF Create Support")!==false)
$array["GIF Create Support"] = trim(str_replace("GIF Create Support", "", strip_tags($line)));
if(strpos($line, "GIF Support")!==false)
$gif_support = trim(str_replace("GIF Support", "", strip_tags($line)));
if(strpos($line, "JPG Support")!==false)
$array["JPG Support"] = trim(str_replace("JPG Support", "", strip_tags($line)));
if(strpos($line, "PNG Support")!==false)
$array["PNG Support"] = trim(str_replace("PNG Support", "", strip_tags($line)));
if(strpos($line, "WBMP Support")!==false)
$array["WBMP Support"] = trim(str_replace("WBMP Support", "", strip_tags($line)));
if(strpos($line, "XBM Support")!==false)
$array["XBM Support"] = trim(str_replace("XBM Support", "", strip_tags($line)));
}
if($gif_support==="enabled") {
$array["GIF Read Support"] = 1;
$array["GIF Create Support"] = 1;
}
if($array["FreeType Support"]==="enabled"){
$array["FreeType Support"] = 1; }
if($array["T1Lib Support"]==="enabled")
$array["T1Lib Support"] = 1;
if($array["GIF Read Support"]==="enabled"){
$array["GIF Read Support"] = 1; }
if($array["GIF Create Support"]==="enabled")
$array["GIF Create Support"] = 1;
if($array["JPG Support"]==="enabled")
$array["JPG Support"] = 1;
if($array["PNG Support"]==="enabled")
$array["PNG Support"] = 1;
if($array["WBMP Support"]==="enabled")
$array["WBMP Support"] = 1;
if($array["XBM Support"]==="enabled")
$array["XBM Support"] = 1;
return $array;
}';
function getRecommendedDirectives() {
if(version_compare(PHP_VERSION, '5.3.0') >= 0) {
self::$recommendedDirectives['error_reporting'] = 'E_WARNING & ~E_NOTICE & ~E_DEPRECATED';
}
return self::$recommendedDirectives;
}
/** Function to check the file access is made within web root directory. */
static function checkFileAccess($filepath) {
global $root_directory, $installationStrings;
// Set the base directory to compare with
$use_root_directory = $root_directory;
if(empty($use_root_directory)) {
$use_root_directory = realpath(dirname(__FILE__).'/../../..');
}
$realfilepath = realpath($filepath);
/** Replace all \\ with \ first */
$realfilepath = str_replace('\\\\', '\\', $realfilepath);
$rootdirpath = str_replace('\\\\', '\\', $use_root_directory);
/** Replace all \ with / now */
$realfilepath = str_replace('\\', '/', $realfilepath);
$rootdirpath = str_replace('\\', '/', $rootdirpath);
if(stripos($realfilepath, $rootdirpath) !== 0) {
die($installationStrings['ERR_RESTRICTED_FILE_ACCESS']);
}
}
/** Function to check the file access is made within web root directory. */
static function checkFileAccessForInclusion($filepath) {
global $root_directory, $installationStrings;
// Set the base directory to compare with
$use_root_directory = $root_directory;
if(empty($use_root_directory)) {
$use_root_directory = realpath(dirname(__FILE__).'/../../..');
}
$unsafeDirectories = array('storage', 'cache', 'test');
$realfilepath = realpath($filepath);
/** Replace all \\ with \ first */
$realfilepath = str_replace('\\\\', '\\', $realfilepath);
$rootdirpath = str_replace('\\\\', '\\', $use_root_directory);
/** Replace all \ with / now */
$realfilepath = str_replace('\\', '/', $realfilepath);
$rootdirpath = str_replace('\\', '/', $rootdirpath);
$relativeFilePath = str_replace($rootdirpath, '', $realfilepath);
$filePathParts = explode('/', $relativeFilePath);
if(stripos($realfilepath, $rootdirpath) !== 0 || in_array($filePathParts[0], $unsafeDirectories)) {
die($installationStrings['ERR_RESTRICTED_FILE_ACCESS']);
}
}
static function getFailedPermissionsFiles() {
$writableFilesAndFolders = Common_Install_Wizard_Utils::$writableFilesAndFolders;
$failedPermissions = array();
require_once ('include/utils/VtlibUtils.php');
foreach ($writableFilesAndFolders as $index => $value) {
if (!vtlib_isWriteable($value)) {
$failedPermissions[$index] = $value;
}
}
return $failedPermissions;
}
static function getCurrentDirectiveValue() {
$directiveValues = array();
if (ini_get('safe_mode') == '1' || stripos(ini_get('safe_mode'), 'On') > -1)
$directiveValues['safe_mode'] = 'On';
if (ini_get('display_errors') != '1' || stripos(ini_get('display_errors'), 'Off') > -1)
$directiveValues['display_errors'] = 'Off';
if (ini_get('file_uploads') != '1' || stripos(ini_get('file_uploads'), 'Off') > -1)
$directiveValues['file_uploads'] = 'Off';
if (ini_get('register_globals') == '1' || stripos(ini_get('register_globals'), 'On') > -1)
$directiveValues['register_globals'] = 'On';
if (ini_get(('output_buffering') < '4096' && ini_get('output_buffering') != '0') || stripos(ini_get('output_buffering'), 'Off') > -1)
$directiveValues['output_buffering'] = 'Off';
if (ini_get('max_execution_time') < 600)
$directiveValues['max_execution_time'] = ini_get('max_execution_time');
if (ini_get('memory_limit') < 32)
$directiveValues['memory_limit'] = ini_get('memory_limit');
$errorReportingValue = E_WARNING & ~E_NOTICE;
if(version_compare(PHP_VERSION, '5.3.0') >= 0) {
$errorReportingValue = E_WARNING & ~E_NOTICE & ~E_DEPRECATED;
}
if (ini_get('error_reporting') != $errorReportingValue)
$directiveValues['error_reporting'] = 'NOT RECOMMENDED';
if (ini_get('allow_call_time_pass_reference') != '1' || stripos(ini_get('allow_call_time_pass_reference'), 'Off') > -1)
$directiveValues['allow_call_time_pass_reference'] = 'Off';
if (ini_get('log_errors') == '1' || stripos(ini_get('log_errors'), 'On') > -1)
$directiveValues['log_errors'] = 'On';
if (ini_get('short_open_tag') != '1' || stripos(ini_get('short_open_tag'), 'Off') > -1)
$directiveValues['short_open_tag'] = 'Off';
return $directiveValues;
}
// Fix for ticket 6605 : detect mysql extension during installation
static function check_mysql_extension() {
if(function_exists('mysql_connect')) {
$mysql_extension = true;
}
else {
$mysql_extension = false;
}
return $mysql_extension;
}
static function isMySQL($dbType) {
return (stripos($dbType ,'mysql') === 0);
}
static function isOracle($dbType) {
return $dbType == 'oci8';
}
static function isPostgres($dbType) {
return $dbType == 'pgsql';
}
public static function getInstallableModulesFromPackages() {
global $optionalModuleStrings;
require_once('vtlib/Vtiger/Package.php');
require_once('vtlib/Vtiger/Module.php');
require_once('vtlib/Vtiger/Version.php');
$packageDir = 'packages/vtiger/optional/';
$handle = opendir($packageDir);
$optionalModules = array();
while (false !== ($file = readdir($handle))) {
$packageNameParts = explode(".",$file);
if($packageNameParts[count($packageNameParts)-1] != 'zip'){
continue;
}
array_pop($packageNameParts);
$packageName = implode("",$packageNameParts);
if (!empty($packageName)) {
$packagepath = "$packageDir/$file";
$package = new Vtiger_Package();
$moduleName = $package->getModuleNameFromZip($packagepath);
if($package->isModuleBundle()) {
$bundleOptionalModule = array();
$unzip = new Vtiger_Unzip($packagepath);
$unzip->unzipAllEx($package->getTemporaryFilePath());
$moduleInfoList = $package->getAvailableModuleInfoFromModuleBundle();
foreach($moduleInfoList as $moduleInfo) {
$moduleInfo = (Array)$moduleInfo;
$packagepath = $package->getTemporaryFilePath($moduleInfo['filepath']);
$subModule = new Vtiger_Package();
$subModule->getModuleNameFromZip($packagepath);
$bundleOptionalModule = self::getOptionalModuleDetails($subModule,
$bundleOptionalModule);
}
$moduleDetails = array();
$moduleDetails['description'] = $optionalModuleStrings[$moduleName.'_description'];
$moduleDetails['selected'] = true;
$moduleDetails['enabled'] = true;
$migrationAction = 'install';
if(count($bundleOptionalModule['update']) > 0 ) {
$moduleDetails['enabled'] = false;
$migrationAction = 'update';
}
$optionalModules[$migrationAction]['module'][$moduleName] = $moduleDetails;
} else {
if($package->isLanguageType()) {
$package = new Vtiger_Language();
$package->getModuleNameFromZip($packagepath);
}
$optionalModules = self::getOptionalModuleDetails($package, $optionalModules);
}
}
}
if(is_array($optionalModules['install']['language']) &&
is_array($optionalModules['install']['module'])) {
$optionalModules['install'] = array_merge($optionalModules['install']['module'],
$optionalModules['install']['language']);
} elseif(is_array($optionalModules['install']['language']) &&
!is_array($optionalModules['install']['module'])) {
$optionalModules['install'] = $optionalModules['install']['language'];
} else {
$optionalModules['install'] = $optionalModules['install']['module'];
}
if( is_array($optionalModules['update']['language']) &&
is_array($optionalModules['update']['module'])) {
$optionalModules['update'] = array_merge($optionalModules['update']['module'],
$optionalModules['update']['language']);
} elseif(is_array($optionalModules['update']['language']) &&
!is_array($optionalModules['update']['module'])) {
$optionalModules['update'] = $optionalModules['update']['language'];
} else {
$optionalModules['update'] = $optionalModules['update']['module'];
}
return $optionalModules;
}
/**
*
* @param String $packagepath - path to the package file.
* @return Array
*/
static function getOptionalModuleDetails($package, $optionalModulesInfo) {
global $optionalModuleStrings;
$moduleUpdateVersion = $package->getVersion();
$moduleForVtigerVersion = $package->getDependentVtigerVersion();
$moduleMaxVtigerVersion = $package->getDependentMaxVtigerVersion();
if($package->isLanguageType()) {
$type = 'language';
} else {
$type = 'module';
}
$moduleDetails = null;
$moduleName = $package->getModuleName();
if($moduleName != null) {
$moduleDetails = array();
$moduleDetails['description'] = $optionalModuleStrings[$moduleName.'_description'];
if(Vtiger_Version::check($moduleForVtigerVersion,'>=') && Vtiger_Version::check($moduleMaxVtigerVersion,'<')) {
$moduleDetails['selected'] = true;
$moduleDetails['enabled'] = true;
} else {
$moduleDetails['selected'] = false;
$moduleDetails['enabled'] = false;
}
$migrationAction = 'install';
if(!$package->isLanguageType()) {
$moduleInstance = null;
if(Vtiger_Utils::checkTable('vtiger_tab')) {
$moduleInstance = Vtiger_Module::getInstance($moduleName);
}
if($moduleInstance) {
$migrationAction = 'update';
if(version_compare($moduleUpdateVersion, $moduleInstance->version, '>=')) {
$moduleDetails['enabled'] = false;
}
}
} else {
if(Vtiger_Utils::CheckTable(Vtiger_Language::TABLENAME)) {
$languageList = array_keys(Vtiger_Language::getAll());
$prefix = $package->getPrefix();
if(in_array($prefix, $languageList)) {
$migrationAction = 'update';
}
}
}
$optionalModulesInfo[$migrationAction][$type][$moduleName] = $moduleDetails;
}
return $optionalModulesInfo;
}
// Function to install/update mandatory modules
public static function installMandatoryModules() {
require_once('vtlib/Vtiger/Package.php');
require_once('vtlib/Vtiger/Module.php');
require_once('include/utils/utils.php');
if ($handle = opendir('packages/vtiger/mandatory')) {
while (false !== ($file = readdir($handle))) {
$packageNameParts = explode(".",$file);
if($packageNameParts[count($packageNameParts)-1] != 'zip'){
continue;
}
array_pop($packageNameParts);
$packageName = implode("",$packageNameParts);
if (!empty($packageName)) {
$packagepath = "packages/vtiger/mandatory/$file";
$package = new Vtiger_Package();
$module = $package->getModuleNameFromZip($packagepath);
if($module != null) {
$moduleInstance = Vtiger_Module::getInstance($module);
if($moduleInstance) {
updateVtlibModule($module, $packagepath);
} else {
installVtlibModule($module, $packagepath);
}
}
}
}
closedir($handle);
}
}
public static function getMandatoryModuleList() {
require_once('vtlib/Vtiger/Package.php');
require_once('vtlib/Vtiger/Module.php');
require_once('include/utils/utils.php');
$moduleList = array();
if ($handle = opendir('packages/vtiger/mandatory')) {
while (false !== ($file = readdir($handle))) {
$packageNameParts = explode(".",$file);
if($packageNameParts[count($packageNameParts)-1] != 'zip'){
continue;
}
array_pop($packageNameParts);
$packageName = implode("",$packageNameParts);
if (!empty($packageName)) {
$packagepath = "packages/vtiger/mandatory/$file";
$package = new Vtiger_Package();
$moduleList[] = $package->getModuleNameFromZip($packagepath);
}
}
closedir($handle);
}
return $moduleList;
}
public static function installSelectedOptionalModules($selected_modules, $source_directory='', $destination_directory='') {
require_once('vtlib/Vtiger/Package.php');
require_once('vtlib/Vtiger/Module.php');
require_once('include/utils/utils.php');
$selected_modules = explode(":",$selected_modules);
$languagePacks = array();
if ($handle = opendir('packages/vtiger/optional')) {
while (false !== ($file = readdir($handle))) {
$filename_arr = explode(".", $file);
if($filename_arr[count($filename_arr)-1] != 'zip'){
continue;
}
$packagename = $filename_arr[0];
$packagepath = "packages/vtiger/optional/$file";
$package = new Vtiger_Package();
$module = $package->getModuleNameFromZip($packagepath);
if (!empty($packagename) && in_array($module,$selected_modules)) {
if($package->isLanguageType($packagepath)) {
$languagePacks[$module] = $packagepath;
continue;
}
if($module != null) {
if($package->isModuleBundle()) {
$unzip = new Vtiger_Unzip($packagepath);
$unzip->unzipAllEx($package->getTemporaryFilePath());
$moduleInfoList = $package->getAvailableModuleInfoFromModuleBundle();
foreach($moduleInfoList as $moduleInfo) {
$moduleInfo = (Array)$moduleInfo;
$packagepath = $package->getTemporaryFilePath($moduleInfo['filepath']);
$subModule = new Vtiger_Package();
$subModuleName = $subModule->getModuleNameFromZip($packagepath);
$moduleInstance = Vtiger_Module::getInstance($subModuleName);
if($moduleInstance) {
updateVtlibModule($subModuleName, $packagepath);
} else {
installVtlibModule($subModuleName, $packagepath);
}
}
} else {
$moduleInstance = Vtiger_Module::getInstance($module);
if($moduleInstance) {
updateVtlibModule($module, $packagepath);
} else {
installVtlibModule($module, $packagepath);
}
}
}
}
}
closedir($handle);
}
foreach($languagePacks as $module => $packagepath) {
installVtlibModule($module, $packagepath);
continue;
}
}
//Function to to rename the installation file and folder so that no one destroys the setup
public static function renameInstallationFiles() {
$renamefile = uniqid(rand(), true);
$ins_file_renamed = true;
if(!@rename("install.php", $renamefile."install.php.txt")) {
if (@copy ("install.php", $renamefile."install.php.txt")) {
if(!@unlink("install.php")) {
$ins_file_renamed = false;
}
} else {
$ins_file_renamed = false;
}
}
$ins_dir_renamed = true;
if(!@rename("install/", $renamefile."install/")) {
if (@copy ("install/", $renamefile."install/")) {
if(!@unlink("install/")) {
$ins_dir_renamed = false;
}
} else {
$ins_dir_renamed = false;
}
}
$result = array();
$result['renamefile'] = $renamefile;
$result['install_file_renamed'] = $ins_file_renamed;
$result['install_directory_renamed'] = $ins_dir_renamed;
return $result;
}
public static function getMySQLVersion($serverInfo) {
if(!is_array($serverInfo)) {
$version = explode('-',$serverInfo);
$mysql_server_version=$version[0];
} else {
$mysql_server_version = $serverInfo['version'];
}
return $mysql_server_version;
}
}
//Function used to execute the query and display the success/failure of the query
function ExecuteQuery($query) {
global $adb, $installationStrings, $conn;
global $migrationlog;
//For third option migration we have to use the $conn object because the queries should be executed in 4.2.3 db
$status = $adb->query($query);
if(is_object($status)) {
echo '
'.$installationStrings['LBL_SUCCESS'].' |
'.$query.' |
';
$migrationlog->debug("Query Success ==> $query");
} else {
echo '
'.$installationStrings['LBL_FAILURE'].' |
'.$query.' |
';
$migrationlog->debug("Query Failed ==> $query \n Error is ==> [".$adb->database->ErrorNo()."]".$adb->database->ErrorMsg());
}
}
//Function used to execute the query and display the success/failure of the query
function ExecutePQuery($query, $params) {
global $adb, $installationStrings, $conn;
global $migrationlog;
//For third option migration we have to use the $conn object because the queries should be executed in 4.2.3 db
$status = $adb->pquery($query, $params);
$query = $adb->convert2sql($query, $params);
if(is_object($status)) {
echo '
'.$installationStrings['LBL_SUCCESS'].' |
'.$query.' |
';
$migrationlog->debug("Query Success ==> $query");
} else {
echo '
'.$installationStrings['LBL_FAILURE'].' |
'.$query.' |
';
$migrationlog->debug("Query Failed ==> $query \n Error is ==> [".$adb->database->ErrorNo()."]".$adb->database->ErrorMsg());
}
}
?>