Files
crm.e5.pl/modules/Administration/RepairFieldCasing.php

145 lines
6.4 KiB
PHP
Raw Normal View History

2024-04-27 09:23:34 +02: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".
********************************************************************************/
//Check if current user has admin access
if(is_admin($current_user)) {
global $mod_strings;
//echo out processing message
echo '<br>'.$mod_strings['LBL_REPAIR_FIELD_CASING_PROCESSING'];
//store the affected entries
$database_entries = array();
$module_entries = array();
$query = "SELECT * FROM fields_meta_data";
$result = $GLOBALS['db']->query($query);
while($row = $GLOBALS['db']->fetchByAssoc($result)) {
$name = $row['name'];
$id = $row['id'];
$module_entries[$row['custom_module']] = true;
//Only run database SQL where the name or id casing does is not lowercased
if($name != strtolower($row['name'])) {
$database_entries[$row['custom_module']][$name] = $row;
}
}
//If we have database entries to process
if(!empty($database_entries)) {
foreach($database_entries as $module=>$entries) {
$table_name = strtolower($module) . '_cstm';
foreach($entries as $original_col_name=>$entry) {
echo '<br>'. string_format($mod_strings['LBL_REPAIR_FIELD_CASING_SQL_FIELD_META_DATA'], array($entry['name']));
$update_sql = "UPDATE fields_meta_data SET id = '" . $entry['custom_module'] . strtolower($entry['name']) . "', name = '" . strtolower($entry['name']) . "' WHERE id = '" . $entry['id'] . "'";
$GLOBALS['db']->query($update_sql);
echo '<br>'. string_format($mod_strings['LBL_REPAIR_FIELD_CASING_SQL_CUSTOM_TABLE'], array($entry['name'], $table_name));
if($GLOBALS['db']->dbType == 'mssql') {
$sql = "SP_RENAME '{$table_name}.{$entry['name']}', '" . strtolower($entry['name']) . "', 'COLUMN'";
$GLOBALS['db']->query($sql);
} else if($GLOBALS['db']->dbType == 'mysql') {
$entry['name'] = strtolower($entry['name']);
$GLOBALS['db']->alterColumn($table_name, $entry);
} else if($GLOBALS['db']->dbType == 'oci8') {
$sql = "ALTER TABLE \"" . strtoupper($table_name) ."\" RENAME COLUMN \"" . $entry['name'] . "\" TO \"" . strtolower($entry['name']) . "\"";
$GLOBALS['db']->query($sql);
}
}
}
}
//If we have metadata files to alter
if(!empty($module_entries)) {
$modules = array_keys($module_entries);
$views = array('basic_search', 'advanced_search', 'detailview', 'editview', 'quickcreate');
$class_names = array();
require_once ('include/TemplateHandler/TemplateHandler.php') ;
require_once('modules/ModuleBuilder/parsers/ParserFactory.php');
foreach($modules as $module) {
if(isset($GLOBALS['beanList'][$module])) {
$class_names[] = $GLOBALS['beanList'][$module];
}
$repairClass->module_list[] = $module;
foreach($views as $view) {
$parser = ParserFactory::getParser($view, $module);
if(isset($parser->_viewdefs['panels'])) {
foreach($parser->_viewdefs['panels'] as $panel_id=>$panel) {
foreach($panel as $row_id=>$row) {
foreach($row as $entry_id=>$entry) {
if(is_array($entry) && isset($entry['name'])) {
$parser->_viewdefs['panels'][$panel_id][$row_id][$entry_id]['name'] = strtolower($entry['name']);
}
}
}
}
} else {
//For basic_search and advanced_search views, just process the fields
foreach($parser->_viewdefs as $entry_id=>$entry) {
if(is_array($entry) && isset($entry['name'])) {
$parser->_viewdefs[$entry_id]['name'] = strtolower($entry['name']);
}
}
}
//Save the changes
$parser->handleSave(false);
} //foreach
//Now clear the cache of the .tpl files
TemplateHandler::clearCache($module);
} //foreach
echo '<br>'.$mod_strings['LBL_CLEAR_VARDEFS_DATA_CACHE_TITLE'];
require_once('modules/Administration/QuickRepairAndRebuild.php');
$repair = new RepairAndClear();
$repair->show_output = false;
$repair->module_list = array($class_names);
$repair->clearVardefs();
}
echo '<br>'.$mod_strings['LBL_DIAGNOSTIC_DONE'];
}
?>