Files

485 lines
17 KiB
PHP
Raw Permalink Normal View History

2025-05-12 15:44:39 +00:00
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program 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
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
/*********************************************************************************
* Description:
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. All Rights
* Reserved. Contributor(s): ______________________________________..
* *******************************************************************************/
if(!is_admin($current_user)) {
sugar_die($app_strings['ERR_NOT_ADMIN']);
}
require_once('include/utils/db_utils.php');
require_once('include/utils/zip_utils.php');
require_once('modules/UpgradeWizard/uw_utils.php');
require_once('modules/Administration/UpgradeHistory.php');
if(!isset($locale) || empty($locale)) {
$locale = new Localization();
}
global $sugar_config;
global $sugar_flavor;
///////////////////////////////////////////////////////////////////////////////
//// SYSTEM PREP
$base_upgrade_dir = getcwd().'/'.$sugar_config['upload_dir'] . "upgrades";
$base_tmp_upgrade_dir = "$base_upgrade_dir/temp";
$subdirs = array('full', 'langpack', 'module', 'patch', 'theme', 'temp');
global $sugar_flavor;
prepSystemForUpgrade();
$uwMain = '';
$steps = array();
$step = 0;
$showNext = '';
$showCancel = '';
$showBack = '';
$showRecheck = '';
$stepNext = '';
$stepCancel = '';
$stepBack = '';
$stepRecheck = '';
$disableNextForLicense='';
if(!isset($_SESSION['step']) || !is_array($_SESSION['step'])){
$_SESSION['step'] = array();
}
//// END SYSTEM PREP
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//// LOGIC
$uh = new UpgradeHistory();
$smarty = new Sugar_Smarty();
set_upgrade_vars();
//Initialize the session variables. If upgrade_progress.php is already created
//look for session vars there and restore them
initialize_session_vars();
$deletedPackage =false;
$cancelUpgrade = false;
$backOrRecheckUpgrade = false;
// this flag set in pre_install.php->UWUpgrade();
//ADDING A SESSION VARIBALE FOR KEEPING TRACK OF TOTAL UPGRADE TIME.
if(!isset($_SESSION['totalUpgradeTime'])){
$_SESSION['totalUpgradeTime'] = 0;
}
if(!isset($mod_strings['LBL_UW_ACCEPT_THE_LICENSE']) || $mod_strings['LBL_UW_ACCEPT_THE_LICENSE'] == null){
$mod_strings['LBL_UW_ACCEPT_THE_LICENSE'] = 'Accept License';
}
if(!isset($mod_strings['LBL_UW_CONVERT_THE_LICENSE']) || $mod_strings['LBL_UW_CONVERT_THE_LICENSE'] == null){
$mod_strings['LBL_UW_CONVERT_THE_LICENSE'] = 'Convert License';
}
$license_title = $mod_strings['LBL_UW_ACCEPT_THE_LICENSE'];
if((isset($sugar_flavor) && $sugar_flavor != null) && ($sugar_flavor=='OS' || $sugar_flavor=='CE')){
$license_title = $mod_strings['LBL_UW_CONVERT_THE_LICENSE'];
}
if(isset($_REQUEST['delete_package']) && $_REQUEST['delete_package'] == 'true') {
logThis('running delete old package');
$error = '';
if(!isset($_REQUEST['install_file']) || ($_REQUEST['install_file'] == "")) {
logThis('ERROR: trying to delete non-existent file: ['.$_REQUEST['install_file'].']');
$error .= $mod_strings['ERR_UW_NO_FILE_UPLOADED'].'<br>';
}
// delete file in upgrades/patch
$delete_me = urldecode( $_REQUEST['install_file'] );
if(is_file($delete_me) && !@unlink($delete_me)) {
logThis('ERROR: could not delete: '.$delete_me);
$error .= $mod_strings['ERR_UW_FILE_NOT_DELETED'].$delete_me.'<br>';
}
// delete back up instance
$delete_dir = clean_path(remove_file_extension(urldecode($_REQUEST['install_file'])) . "-restore");
if(is_dir($delete_dir) && !@rmdir_recursive($delete_dir)) {
logThis('ERROR: could not delete: '.$delete_dir);
$error .= $mod_strings['ERR_UW_FILE_NOT_DELETED'].$delete_dir.'<br>';
}
// delete file in cache/upload
$fileS = explode('/', $delete_me);
$c = count($fileS);
$fileName = (isset($fileS[$c-1]) && !empty($fileS[$c-1])) ? $fileS[$c-1] : $fileS[$c-2];
$deleteUpload = getcwd().'/'.$sugar_config['upload_dir'].$fileName;
logThis('Trying to delete '.$deleteUpload);
if(is_file($deleteUpload) && !@unlink($deleteUpload)) {
logThis('ERROR: could not delete: ['.$deleteUpload.']');
$error .= $mod_strings['ERR_UW_FILE_NOT_DELETED'].$sugar_config['upload_dir'].$fileName;
}
if(!empty($error)) {
$out = "<b><span class='error'>{$error}</span></b><br />";
$smarty->assign('frozen', $out);
}
}
//redirect to the new upgradewizard
if(isset($_SESSION['Upgraded451Wizard']) && $_SESSION['Upgraded451Wizard']==true){
if(!isset($_SESSION['Initial_451to500_Step'])){
//redirect to the new upgradewizard
$redirect_new_wizard = $sugar_config['site_url' ].'/index.php?module=UpgradeWizard&action=index';
//'<form name="redirect" action="' .$redirect_new_wizard. '" >';
//echo "<meta http-equiv='refresh' content='0; url={$redirect_new_wizard}'>";
$_SESSION['Initial_451to500_Step'] = true;
//unset($_SESSION['step']);
$_REQUEST['step'] = 0;
}
$steps = array(
'files' => array(
'license_fiveO',
'preflight',
'commit',
'end',
'cancel',
),
'desc' => array (
$license_title,
$mod_strings['LBL_UW_TITLE_PREFLIGHT'],
$mod_strings['LBL_UW_TITLE_COMMIT'],
$mod_strings['LBL_UW_TITLE_END'],
$mod_strings['LBL_UW_TITLE_CANCEL'],
),
);
}
else{
if(isset($_SESSION['UpgradedUpgradeWizard']) && $_SESSION['UpgradedUpgradeWizard'] == true) {
// Upgrading from 5.0 upwards and upload already performed.
$steps = array(
'files' => array(
'start',
'systemCheck',
'preflight',
'commit',
'end',
'cancel',
),
'desc' => array (
$mod_strings['LBL_UW_TITLE_START'],
$mod_strings['LBL_UW_TITLE_SYSTEM_CHECK'],
$mod_strings['LBL_UW_TITLE_PREFLIGHT'],
$mod_strings['LBL_UW_TITLE_COMMIT'],
$mod_strings['LBL_UW_TITLE_END'],
$mod_strings['LBL_UW_TITLE_CANCEL'],
),
);
}
else{
// Upgrading from 5.0 upwards and upload not performed yet.
$steps = array(
'files' => array(
'start',
'systemCheck',
'upload',
'preflight',
'commit',
'end',
'cancel',
),
'desc' => array (
$mod_strings['LBL_UW_TITLE_START'],
$mod_strings['LBL_UW_TITLE_SYSTEM_CHECK'],
$mod_strings['LBL_UPLOAD_UPGRADE'],
$mod_strings['LBL_UW_TITLE_PREFLIGHT'],
$mod_strings['LBL_UW_TITLE_COMMIT'],
$mod_strings['LBL_UW_TITLE_END'],
$mod_strings['LBL_UW_TITLE_CANCEL'],
),
);
}
}
$upgradeStepFile = '';
if(isset($_REQUEST['step']) && $_REQUEST['step'] !=null){
if($_REQUEST['step'] == -1) {
$_REQUEST['step'] = count($steps['files']) - 1;
} elseif($_REQUEST['step'] >= count($steps['files'])) {
$_REQUEST['step'] = 0;
}
$upgradeStepFile = $steps['files'][$_REQUEST['step']];
} else {
//check if upgrade was run before. If so then resume from there
$previouUpgradeRun = get_upgrade_progress();
if($previouUpgradeRun != null){
//echo 'Previous run '.$previouUpgradeRun.'</br>';
$upgradeStepFile = $previouUpgradeRun;
//reset REQUEST
for($i=0;$i<sizeof($steps['files']);$i++){
if($steps['files'][$i]== $previouUpgradeRun){
$_REQUEST['step']=$i;
break;
}
}
}
else{
// first time through - kill off old sessions
unset($_SESSION['step']);
$_REQUEST['step'] = 0;
$upgradeStepFile = $steps['files'][$_REQUEST['step']];
}
}
if($upgradeStepFile == 'license_fiveO'){
$disableNextForLicense = 'disabled = "disabled"';
}
if($upgradeStepFile == 'end'){
//if(isset($_SESSION['current_db_version']) && substr($_SESSION['current_db_version'],0,1) == 4){
ob_start();
include('modules/ACL/install_actions.php');
include('modules/Administration/RebuildRelationship.php');
//also add the cache cleaning here.
if(function_exists('deleteCache')){
deleteCache();
}
ob_end_clean();
if(isset($_SESSION['current_db_version']) && substr($_SESSION['current_db_version'],0,1) == 4){
//Remove footer from themes except default, love and link themes
logThis('Start removing footer.php file from themes...');
$deleteNot =array('themes/default/footer.php','themes/Love/footer.php','themes/Links/footer.php');
removeFileFromPath('footer.php','themes', $deleteNot);
logThis('End removing footer.php file from themes...');
}
//}
}
require('modules/UpgradeWizard/'.$upgradeStepFile.'.php');
//// END LOGIC
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//// UPGRADE HISTORY
// display installed pieces and versions
$installeds = $uh->getAll();
$upgrades_installed = 0;
$uwHistory = $mod_strings['LBL_UW_DESC_MODULES_INSTALLED']."<br>\n";
$uwHistory .= "<ul>\n";
$uwHistory .= "<table>\n";
$uwHistory .= <<<eoq
<tr>
<th></th>
<th align=left>
{$mod_strings['LBL_ML_NAME']}
</th>
<th align=left>
{$mod_strings['LBL_ML_TYPE']}
</th>
<th align=left>
{$mod_strings['LBL_ML_VERSION']}
</th>
<th align=left>
{$mod_strings['LBL_ML_INSTALLED']}
</th>
<th>
{$mod_strings['LBL_ML_DESCRIPTION']}
</th>
<th>
{$mod_strings['LBL_ML_ACTION']}
</th>
</tr>
eoq;
foreach($installeds as $installed) {
$form_action = '';
$filename = from_html($installed->filename);
$date_entered = $installed->date_entered;
$type = $installed->type;
//rrs only display patches here
if($type == 'patch'){
$version = $installed->version;
$upgrades_installed++;
$link = is_file($filename)? ' <input type="hidden" name="module" value="UpgradeWizard">
<input type="hidden" name="action" value="index">
<input type="hidden" name="step" value="'.$_REQUEST['step'].'">
<input type="hidden" name="delete_package" value="true">
<input type=hidden name="install_file" value="'.$filename.'" />
<input type=submit value="'.$mod_strings['LBL_BUTTON_DELETE'].'" />':'';
$view = 'default';
$target_manifest = remove_file_extension( $filename ) . "-manifest.php";
// cn: bug 9174 - cleared out upgrade dirs, or corrupt entries in upgrade_history give us bad file paths
if(is_file($target_manifest)) {
require_once( "$target_manifest" );
$name = empty($manifest['name']) ? $filename : $manifest['name'];
$description = empty($manifest['description']) ? $mod_strings['LBL_UW_NONE'] : $manifest['description'];
if(isset($manifest['icon']) && $manifest['icon'] != "") {
$manifest_copy_files_to_dir = isset($manifest['copy_files']['to_dir']) ? clean_path($manifest['copy_files']['to_dir']) : "";
$manifest_copy_files_from_dir = isset($manifest['copy_files']['from_dir']) ? clean_path($manifest['copy_files']['from_dir']) : "";
$manifest_icon = clean_path($manifest['icon']);
$icon = "<img src=\"" . $manifest_copy_files_to_dir . ($manifest_copy_files_from_dir != "" ? substr($manifest_icon, strlen($manifest_copy_files_from_dir)+1) : $manifest_icon ) . "\">";
} else {
$icon = getImageForType( $manifest['type'] );
}
$uwHistory .= "<form action=\"index.php\" method=\"post\">\n".
"<tr><td>$icon</td><td>$name</td><td>$type</td><td>$version</td><td>$date_entered</td><td>$description</td><td>$link</td></tr>\n".
"</form>\n";
}
}
}
if($upgrades_installed == 0) {
$uwHistory .= "<td colspan='6'>";
$uwHistory .= $mod_strings['LBL_UW_NO_INSTALLED_UPGRADES'];
$uwHistory .= "</td></tr>";
}
$uwHistory .= "</table>\n";
$uwHistory .= "</ul>\n";
//// END UPGRADE HISTORY
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//// PAGE OUTPUT
if($upgradeStepFile=='preflight' || $upgradeStepFile=='commit' || $upgradeStepFile=='end'){
$UW_510RC_PACKAGE_MESSAGE=<<<eoq
<table cellpadding="3" cellspacing="0" border="0">
<tr>
<th colspan="2" align="center">
<h1><span class='error'><b>We do not recommended upgrading your production system to 5.1.0 RC. We recommend upgrading a development system for testing purposes.</b></span></h1>
</th>
</tr>
</table>
eoq;
}
$js=<<<eoq
<script type="text/javascript" language="Javascript">
function toggleNwFiles(target) {
var div = document.getElementById(target);
if(div.style.display == "none") {
div.style.display = "";
} else {
div.style.display = "none";
}
}
function handlePreflight(step) {
if(step == 'preflight') {
if(document.getElementById('select_schema_change') != null){
document.getElementById('schema').value = document.getElementById('select_schema_change').value;
}
if(document.getElementById('diffs') != null) {
/* preset the hidden var for defaults */
checkSqlStatus(false);
theForm = document.getElementById('diffs');
var serial = '';
for(i=0; i<theForm.elements.length; i++) {
if(theForm.elements[i].type == 'checkbox' && theForm.elements[i].checked == false) {
// we only want "DON'T OVERWRITE" files
if(serial != '') {
serial += "::";
}
serial += theForm.elements[i].value;
}
} document.getElementById('overwrite_files_serial').value = serial;
if(document.getElementById('addTask').checked == true) {
document.getElementById('addTaskReminder').value = 'remind';
}
if(document.getElementById('addEmail').checked == true) {
document.getElementById('addEmailReminder').value = 'remind';
}
}
}
return;
}
</script>
eoq;
$smarty->assign('UW_MAIN', $uwMain);
$smarty->assign('UW_JS', $js);
$smarty->assign('CHECKLIST', getChecklist($steps, $step));
$smarty->assign('UW_TITLE', get_module_title($mod_strings['LBL_UW_TITLE'], $mod_strings['LBL_UW_TITLE'].": ".$steps['desc'][$_REQUEST['step']], true));
$smarty->assign('MOD', $mod_strings);
$smarty->assign('APP', $app_strings);
$smarty->assign('GRIDLINE', $current_user->getPreference('gridline'));
$smarty->assign('showNext', $showNext);
$smarty->assign('showCancel', $showCancel);
$smarty->assign('showBack', $showBack);
$smarty->assign('showRecheck', $showRecheck);
$smarty->assign('STEP_NEXT', $stepNext);
$smarty->assign('STEP_CANCEL', $stepCancel);
$smarty->assign('STEP_BACK', $stepBack);
$smarty->assign('STEP_RECHECK', $stepRecheck);
$smarty->assign('step', $steps['files'][$_REQUEST['step']]);
$smarty->assign('UW_HISTORY', $uwHistory);
$smarty->assign('disableNextForLicense',$disableNextForLicense);
if(isset($stop) && $stop == true) {
$frozen = (isset($frozen)) ? "<br />".$frozen : '';
$smarty->assign('frozen', $mod_strings['LBL_UW_FROZEN'].$frozen);
}
if ($sugar_config['sugar_version'] < '5.5') {
$smarty->assign('includeContainerCSS', true);
} else {
$smarty->assign('includeContainerCSS', false);
} // else
$smarty->display('modules/UpgradeWizard/uw_main.tpl');
//// END PAGE OUTPUT
///////////////////////////////////////////////////////////////////////////////
?>