Files
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

224 lines
8.9 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.
************************************************************************************/
class Settings_LayoutEditor_Field_Action extends Settings_Vtiger_Index_Action {
function __construct() {
parent::__construct();
$this->exposeMethod('add');
$this->exposeMethod('save');
$this->exposeMethod('delete');
$this->exposeMethod('move');
$this->exposeMethod('unHide');
$this->exposeMethod('updateDuplicateHandling');
}
public function add(Vtiger_Request $request) {
$type = $request->get('fieldType');
$moduleName = $request->get('sourceModule');
$blockId = $request->get('blockid');
$moduleModel = Settings_LayoutEditor_Module_Model::getInstanceByName($moduleName);
$response = new Vtiger_Response();
try{
$fieldModel = $moduleModel->addField($type,$blockId,$request->getAll());
$fieldInfo = $fieldModel->getFieldInfo();
$responseData = array_merge(array('id'=>$fieldModel->getId(), 'blockid'=>$blockId, 'customField'=>$fieldModel->isCustomField()),$fieldInfo);
$defaultValue = $fieldModel->get('defaultvalue');
$responseData['fieldDefaultValueRaw'] = $defaultValue;
if (isset($defaultValue)) {
if ($defaultValue && $fieldInfo['type'] == 'date') {
$defaultValue = DateTimeField::convertToUserFormat($defaultValue);
} else if (!$defaultValue) {
$defaultValue = $fieldModel->getDisplayValue($defaultValue);
} else if (is_array($defaultValue)) {
foreach ($defaultValue as $key => $value) {
$defaultValue[$key] = $fieldModel->getDisplayValue($value);
}
$defaultValue = Zend_Json::encode($defaultValue);
}
}
$responseData['fieldDefaultValue'] = $defaultValue;
$response->setResult($responseData);
}catch(Exception $e) {
$response->setError($e->getCode(), $e->getMessage());
}
$response->emit();
}
public function save(Vtiger_Request $request) {
$currentUser = Users_Record_Model::getCurrentUserModel();
$fieldId = $request->get('fieldid');
$fieldInstance = Settings_LayoutEditor_Field_Model::getInstance($fieldId);
$fieldLabel = $fieldInstance->get('label');
$mandatory = $request->get('mandatory',null);
$presence = $request->get('presence',null);
$quickCreate = $request->get('quickcreate',null);
$summaryField = $request->get('summaryfield',null);
$massEditable = $request->get('masseditable',null);
$headerField = $request->get('headerfield',null);
//SalesPlatform.ru begin initializing the field with uitype 19 with the CKEditor editor
$uitype19field = $request->get('uitype19field',null);
if(isset($uitype19field) && $uitype19field != null){
$fieldInstance->set('uitype19field', $uitype19field);
}else{
$fieldInstance->set('uitype19field', 2);
}
//SalesPlatform.ru begin initializing the field with uitype 19 with the CKEditor editor
if (!$fieldLabel) {
$fieldInstance->set('label', $fieldLabel);
}
if(!empty($mandatory)){
$fieldInstance->updateTypeofDataFromMandatory($mandatory);
}
if(!empty($presence)){
$fieldInstance->set('presence', $presence);
}
if(!empty($quickCreate)){
$fieldInstance->set('quickcreate', $quickCreate);
}
if(isset($summaryField) && $summaryField != null){
$fieldInstance->set('summaryfield', $summaryField);
}
if(isset($headerField) && $headerField != null){
$fieldInstance->set('headerfield', $headerField);
}
if(!empty($massEditable)){
$fieldInstance->set('masseditable', $massEditable);
}
$defaultValue = decode_html($request->get('fieldDefaultValue'));
$fieldInstance->set('defaultvalue', $defaultValue);
$response = new Vtiger_Response();
try{
$fieldInstance->save();
$fieldInstance = Settings_LayoutEditor_Field_Model::getInstance($fieldId);
$fieldLabel = decode_html($request->get('fieldLabel'));
$fieldInfo = $fieldInstance->getFieldInfo();
$fieldInfo['id'] = $fieldInstance->getId();
$fieldInfo['fieldDefaultValueRaw'] = $defaultValue;
if (isset($defaultValue)) {
if ($defaultValue && $fieldInfo['type'] == 'date') {
$defaultValue = DateTimeField::convertToUserFormat($defaultValue);
} else if (!$defaultValue) {
$defaultValue = $fieldInstance->getDisplayValue($defaultValue);
} else if (is_array($defaultValue)) {
foreach ($defaultValue as $key => $value) {
$defaultValue[$key] = $fieldInstance->getDisplayValue($value);
}
$defaultValue = Zend_Json::encode($defaultValue);
}
}
$fieldInfo['fieldDefaultValue'] = $defaultValue;
$response->setResult(array_merge(array('success'=>true), $fieldInfo));
}catch(Exception $e) {
$response->setError($e->getCode(), $e->getMessage());
}
$response->emit();
}
public function delete(Vtiger_Request $request) {
$fieldId = $request->get('fieldid');
$fieldInstance = Settings_LayoutEditor_Field_Model::getInstance($fieldId);
$response = new Vtiger_Response();
if(!$fieldInstance->isCustomField()) {
$response->setError('122', 'Cannot delete Non custom field');
$response->emit();
return;
}
try{
$this->_deleteField($fieldInstance);
}catch(Exception $e) {
$response->setError($e->getCode(), $e->getMessage());
}
$response->emit();
}
private function _deleteField($fieldInstance) {
$sourceModule = $fieldInstance->get('block')->module->name;
$fieldLabel = $fieldInstance->get('label');
if($fieldInstance->uitype == 16 || $fieldInstance->uitype == 33){
$pickListValues = Settings_Picklist_Field_Model::getEditablePicklistValues ($fieldInstance->name);
$fieldLabel = array_merge(array($fieldLabel),$pickListValues);
}
$fieldInstance->delete();
// Settings_LayoutEditor_Module_Model::removeLabelFromLangFile($sourceModule, $fieldLabel);
//we should delete any update field workflow associated with custom field
$moduleName = $fieldInstance->getModule()->getName();
Settings_Workflows_Record_Model::deleteUpadateFieldWorkflow($moduleName, $fieldInstance->getFieldName());
}
public function move(Vtiger_Request $request) {
$updatedFieldsList = $request->get('updatedFields');
// for Clearing cache we need Module Model
$sourceModule = $request->get('selectedModule');
$moduleModel = Vtiger_Module_Model::getInstance($sourceModule);
//This will update the fields sequence for the updated blocks
Settings_LayoutEditor_Block_Model::updateFieldSequenceNumber($updatedFieldsList,$moduleModel);
$response = new Vtiger_Response();
$response->setResult(array('success'=>true));
$response->emit();
}
public function unHide(Vtiger_Request $request) {
$response = new Vtiger_Response();
try{
$fieldIds = $request->get('fieldIdList');
Settings_LayoutEditor_Field_Model::makeFieldActive($fieldIds, $request->get('blockId'),$request->get('selectedModule'));
$responseData = array();
foreach($fieldIds as $fieldId) {
$fieldModel = Settings_LayoutEditor_Field_Model::getInstance($fieldId);
$fieldInfo = $fieldModel->getFieldInfo();
$responseData[] = array_merge(array('id'=>$fieldModel->getId(), 'blockid'=>$fieldModel->get('block')->id, 'customField'=>$fieldModel->isCustomField()),$fieldInfo);
}
$response->setResult($responseData);
}catch(Exception $e) {
$response->setError($e->getCode(), $e->getMessage());
}
$response->emit();
}
public function updateDuplicateHandling(Vtiger_Request $request) {
$response = new Vtiger_Response();
try {
$sourceModule = $request->get('sourceModule');
$moduleModel = Settings_LayoutEditor_Module_Model::getInstanceByName($sourceModule);
$fieldIdsList = $request->get('fieldIdsList');
$result = $moduleModel->updateDuplicateHandling($request->get('rule'), $fieldIdsList, $request->get('syncActionId'));
$response->setResult($result);
} catch (Exception $e) {
$response->setError($e->getCode(), $e->getMessage());
}
$response->emit();
}
public function validateRequest(Vtiger_Request $request) {
$request->validateWriteAccess();
}
}