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

162 lines
5.4 KiB
PHP

<?php
/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("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.
*************************************************************************************/
/**
* Vtiger Action Model Class
*/
class Vtiger_Action_Model extends Vtiger_Base_Model {
static $standardActions = array('0' => 'Save','1' => 'EditView','2' => 'Delete','3' => 'index','4' => 'DetailView', '7' => 'CreateView');
static $nonConfigurableActions = array('Save', 'index', 'SavePriceBook', 'SaveVendor',
'DetailViewAjax', 'PriceBookEditView', 'QuickCreate', 'VendorEditView',
'DeletePriceBook', 'DeleteVendor', 'Popup', 'PriceBookDetailView',
'TagCloud', 'VendorDetailView');
public function getId() {
return $this->get('actionid');
}
public function getName() {
return $this->get('actionname');
}
public function isUtilityTool() {
return false;
}
public function isModuleEnabled($module) {
$db = PearDatabase::getInstance();
if(!$module->isEntityModule()) {
return false;
}
if(in_array($this->getName(), self::$standardActions)) {
return true;
}
$tabId = $module->getId();
$sql = 'SELECT 1 FROM vtiger_profile2standardpermissions WHERE tabid = ? AND operation = ? LIMIT 1';
$params = array($tabId, $this->getId());
$result = $db->pquery($sql, $params);
if($result && $db->num_rows($result) > 0) {
return true;
}
return false;
}
public static function getInstanceFromQResult($result, $rowNo=0) {
$db = PearDatabase::getInstance();
$row = $db->query_result_rowdata($result, $rowNo);
$className = 'Vtiger_Action_Model';
$actionName = $row['actionname'];
if(!in_array($actionName, self::$standardActions)) {
$className = 'Vtiger_Utility_Model';
}
$actionModel = new $className();
return $actionModel->setData($row);
}
protected static $cachedInstances = NULL;
public static function getInstance($value, $force=false) {
if (!self::$cachedInstances || $force) {
self::$cachedInstances = self::getAll();
}
if (self::$cachedInstances) {
$actionid = Vtiger_Utils::isNumber($value) ? $value : false;
foreach (self::$cachedInstances as $instance) {
if($actionid !== false) {
if ($instance->get('actionid') == $actionid) {
return $instance;
}
} else {
if ($instance->get('actionname') == $value) {
return $instance;
}
}
}
}
return null;
}
public static function getInstanceWithIdOrName($value) {
$db = PearDatabase::getInstance();
if(Vtiger_Utils::isNumber($value)) {
$sql = 'SELECT * FROM vtiger_actionmapping WHERE actionid=? LIMIT 1';
} else {
$sql = 'SELECT * FROM vtiger_actionmapping WHERE actionname=?';
}
$params = array($value);
$result = $db->pquery($sql, $params);
if($db->num_rows($result) > 0) {
return self::getInstanceFromQResult($result);
}
return null;
}
public static function getAll($configurable=false) {
$actionModels = Vtiger_Cache::get('vtiger', 'actions');
if(!$actionModels){
$db = PearDatabase::getInstance();
$sql = 'SELECT * FROM vtiger_actionmapping';
$params = array();
if($configurable) {
$sql .= ' WHERE actionname NOT IN ('. generateQuestionMarks(self::$nonConfigurableActions) .')';
array_push($params, self::$nonConfigurableActions);
}
$result = $db->pquery($sql, $params);
$noOfRows = $db->num_rows($result);
$actionModels = array();
for($i=0; $i<$noOfRows; ++$i) {
$actionModels[] = self::getInstanceFromQResult($result, $i);
}
Vtiger_Cache::set('vtiger','actions', $actionModels);
}
return $actionModels;
}
public static function getAllBasic($configurable=false) {
$db = PearDatabase::getInstance();
$basicActionIds = array_keys(self::$standardActions);
$sql = 'SELECT * FROM vtiger_actionmapping WHERE actionid IN ('. generateQuestionMarks($basicActionIds) .')';
$params = $basicActionIds;
if($configurable) {
$sql .= ' AND actionname NOT IN ('. generateQuestionMarks(self::$nonConfigurableActions) .')';
$params = array_merge($params, self::$nonConfigurableActions);
}
$result = $db->pquery($sql, $params);
$noOfRows = $db->num_rows($result);
$actionModels = array();
for($i=0; $i<$noOfRows; ++$i) {
$actionModels[] = self::getInstanceFromQResult($result, $i);
}
return $actionModels;
}
public static function getAllUtility($configurable=false) {
$db = PearDatabase::getInstance();
$basicActionIds = array_keys(self::$standardActions);
$sql = 'SELECT * FROM vtiger_actionmapping WHERE actionid NOT IN ('. generateQuestionMarks($basicActionIds) .')';
$params = $basicActionIds;
if($configurable) {
$sql .= ' AND actionname NOT IN ('. generateQuestionMarks(self::$nonConfigurableActions) .')';
$params = array_merge($params, self::$nonConfigurableActions);
}
$result = $db->pquery($sql, $params);
$noOfRows = $db->num_rows($result);
$actionModels = array();
for($i=0; $i<$noOfRows; ++$i) {
$actionModels[] = self::getInstanceFromQResult($result, $i);
}
return $actionModels;
}
}