Files
crm.clientright.ru/modules/Vtiger/handlers/FieldEventHandler.php
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- Added comprehensive AI Assistant system (aiassist/ directory):
  * Vector search and embedding capabilities
  * Typebot proxy integration
  * Elastic search functionality
  * Message classification and chat history
  * MCP proxy for external integrations

- Implemented Court Status API (GetCourtStatus.php):
  * Real-time court document status checking
  * Integration with external court systems
  * Comprehensive error handling and logging

- Enhanced S3 integration:
  * Improved file backup system with metadata
  * Batch processing capabilities
  * Enhanced error logging and recovery
  * Copy operations with URL fixing

- Added Telegram contact creation API
- Improved error logging across all modules
- Enhanced callback system for AI responses
- Extensive backup file storage with timestamps
- Updated documentation and README files

- File storage improvements:
  * Thousands of backup files with proper metadata
  * Fix operations for broken file references
  * Project-specific backup and recovery systems
  * Comprehensive file integrity checking

Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
2025-10-16 11:17:21 +03:00

135 lines
6.4 KiB
PHP

<?php
/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
************************************************************************************/
require_once 'include/events/VTEventHandler.inc';
class FieldEventHandler extends VTEventHandler {
function handleEvent($eventName, $fieldEntity) {
global $log, $adb;
if ($eventName == 'vtiger.field.afterdelete') {
$this->triggerPostDeleteEvents($fieldEntity);
}
}
function triggerPostDeleteEvents($fieldEntity) {
$db = PearDatabase::getInstance();
$fieldId = $fieldEntity->id;
$fieldName = $fieldEntity->name;
$columnName = $fieldEntity->column;
$fieldLabel = $fieldEntity->label;
$tableName = $fieldEntity->table;
$typeOfData = $fieldEntity->typeofdata;
$fieldModuleName= $fieldEntity->getModuleName();
$fieldType = explode('~', $typeOfData);
$deleteColumnName = "$tableName:$columnName:" . $fieldName . ':' . $fieldModuleName . '_' . str_replace(' ', '_', $fieldLabel) . ':' . $fieldType[0];
$columnCvStdFilter = "$tableName:$columnName:" . $fieldName . ':' . $fieldModuleName . '_' . str_replace(' ', '_', $fieldLabel);
$selectColumnName = "$tableName:$columnName:" . $fieldModuleName . '_' . str_replace(' ', '_', $fieldLabel) . ':' . $fieldName . ':' . $fieldType[0];
$reportSummaryColumn= "$tableName:$columnName:" . str_replace(' ', '_', $fieldLabel);
$query = 'ALTER TABLE ' . $db->sql_escape_string($tableName) . ' DROP COLUMN ' . $db->sql_escape_string($columnName);
$db->pquery($query, array());
//we have to remove the entries in customview and report related tables which have this field ($colName)
$db->pquery('DELETE FROM vtiger_cvcolumnlist WHERE columnname = ?', array($deleteColumnName));
$db->pquery('DELETE FROM vtiger_cvstdfilter WHERE columnname = ?', array($columnCvStdFilter));
$db->pquery('DELETE FROM vtiger_cvadvfilter WHERE columnname = ?', array($deleteColumnName));
$db->pquery('DELETE FROM vtiger_selectcolumn WHERE columnname = ?', array($selectColumnName));
$db->pquery('DELETE FROM vtiger_relcriteria WHERE columnname = ?', array($selectColumnName));
$db->pquery('DELETE FROM vtiger_reportsortcol WHERE columnname = ?', array($selectColumnName));
$db->pquery('DELETE FROM vtiger_reportsummary WHERE columnname LIKE ?', array('%' . $reportSummaryColumn . '%'));
$db->pquery('DELETE FROM vtiger_reportdatefilter WHERE datecolumnname = ?', array($columnCvStdFilter));
if ($fieldModuleName == 'Leads') {
$db->pquery('DELETE FROM vtiger_convertleadmapping WHERE leadfid=?', array($fieldId));
} elseif ($fieldModuleName == 'Accounts' || $fieldModuleName == 'Contacts' || $fieldModuleName == 'Potentials') {
$params = array('Accounts' => 'accountfid', 'Contacts' => 'contactfid', 'Potentials' => 'potentialfid');
$query = 'UPDATE vtiger_convertleadmapping SET ' . $params[$fieldModuleName] . '=0 WHERE ' . $params[$fieldModuleName] . '=?';
$db->pquery($query, array($fieldId));
}
if (in_array($fieldEntity->uitype, array(15, 33))) {
$db->pquery('DROP TABLE IF EXISTS vtiger_' . $db->sql_escape_string($columnName), array());
$db->pquery('DROP TABLE IF EXISTS vtiger_' . $db->sql_escape_string($columnName) . '_seq', array()); //To Delete Sequence Table
$db->pquery('DELETE FROM vtiger_picklist_dependency WHERE sourcefield=? OR targetfield=?', array($columnName, $columnName));
//delete from picklist tables
$picklistResult = $db->pquery('SELECT picklistid FROM vtiger_picklist WHERE name = ?', array($fieldName));
$picklistRow = $db->num_rows($picklistResult);
if($picklistRow) {
$picklistId = $db->query_result($picklistResult, 0, 'picklistid');
$db->pquery('DELETE FROM vtiger_picklist WHERE name = ?', array($fieldName));
$db->pquery('DELETE FROM vtiger_role2picklist WHERE picklistid = ?', array($picklistId));
}
$rolesList = array_keys(getAllRoleDetails());
Vtiger_Cache::flushPicklistCache($fieldName, $rolesList);
}
$this->triggerInventoryFieldPostDeleteEvents($fieldEntity);
}
public function triggerInventoryFieldPostDeleteEvents($fieldEntity) {
$db = PearDatabase::getInstance();
$fieldId = $fieldEntity->id;
$fieldModuleName = $fieldEntity->getModuleName();
if (in_array($fieldModuleName, getInventoryModules())) {
$db->pquery('DELETE FROM vtiger_inventorycustomfield WHERE fieldid=?', array($fieldId));
} else if (in_array($fieldModuleName, array('Products', 'Services'))) {
$refFieldName = ($fieldModuleName == 'Products') ? 'productfieldid' : 'servicefieldid';
$refFieldDefaultValue = ($fieldModuleName == 'Products') ? 'productFieldDefaultValue' : 'serviceFieldDefaultValue';
$query = "SELECT vtiger_inventorycustomfield.* FROM vtiger_inventorycustomfield
INNER JOIN vtiger_field ON vtiger_field.fieldid = vtiger_inventorycustomfield.fieldid
WHERE $refFieldName = ? AND defaultvalue LIKE ?";
$result = $db->pquery($query, array($fieldId, '%productFieldDefaultValue%serviceFieldDefaultValue%'));
$removeCacheModules = array();
while($rowData = $db->fetch_row($result)) {
$lineItemFieldModel = Vtiger_Field_Model::getInstance($rowData['fieldid']);
if ($lineItemFieldModel) {
$defaultValue = $lineItemFieldModel->getDefaultFieldValue();
if (is_array($defaultValue)) {
$defaultValue[$refFieldDefaultValue] = '';
if ($defaultValue['productFieldDefaultValue'] === '' && $defaultValue['serviceFieldDefaultValue'] === '') {
$defaultValue = '';
} else {
$defaultValue = Zend_Json::encode($defaultValue);
}
$lineItemFieldModel->set('defaultvalue', $defaultValue);
$lineItemFieldModel->save();
}
$removeCacheModules[$rowData['tabid']][] = $lineItemFieldModel->get('block')->id;
}
}
foreach ($removeCacheModules as $tabId => $blockIdsList) {
$moduleModel = Vtiger_Module_Model::getInstance($tabId);
foreach ($blockIdsList as $blockId) {
Vtiger_Cache::flushModuleandBlockFieldsCache($moduleModel, $blockId);
}
}
$db->pquery("UPDATE vtiger_inventorycustomfield SET $refFieldName=? WHERE fieldid=?", array('0', $fieldId));
}
}
}