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

141 lines
4.2 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.
*************************************************************************************/
/*
* Workflow Task Record Model Class
*/
require_once 'modules/com_vtiger_workflow/include.inc';
require_once 'modules/com_vtiger_workflow/VTTaskManager.inc';
class Settings_Workflows_TaskRecord_Model extends Settings_Vtiger_Record_Model {
const TASK_STATUS_ACTIVE = 1;
public function getId() {
return $this->get('task_id');
}
public function getName() {
return $this->get('summary');
}
public function isActive() {
return $this->get('status') == self::TASK_STATUS_ACTIVE;
}
public function getTaskObject() {
return $this->task_object;
}
public function setTaskObject($task) {
$this->task_object = $task;
return $this;
}
public function getTaskManager() {
return $this->task_manager;
}
public function setTaskManager($tm) {
$this->task_manager = $tm;
}
public function getEditViewUrl() {
return 'index.php?module=Workflows&parent=Settings&view=EditTask&type='.$this->getTaskType()->getName().'&task_id='.$this->getId().'&for_workflow='.$this->getWorkflow()->getId();
}
public function getV7EditViewUrl() {
return 'index.php?module=Workflows&parent=Settings&view=EditV7Task&type='.$this->getTaskType()->getName().'&task_id='.$this->getId().'&for_workflow='.$this->getWorkflow()->getId();
}
public function getDeleteActionUrl() {
return 'index.php?module=Workflows&parent=Settings&action=TaskAjax&mode=Delete&task_id='.$this->getId();
}
public function getChangeStatusUrl() {
return 'index.php?module=Workflows&parent=Settings&action=TaskAjax&mode=ChangeStatus&task_id='.$this->getId();
}
public function getWorkflow() {
return $this->workflow;
}
public function setWorkflowFromInstance($workflowModel) {
$this->workflow = $workflowModel;
return $this;
}
public function getTaskType() {
if(!$this->task_type) {
$taskObject = $this->getTaskObject();
$taskClass = get_class($taskObject);
$this->task_type = Settings_Workflows_TaskType_Model::getInstanceFromClassName($taskClass);
}
return $this->task_type;
}
public static function getAllForWorkflow($workflowModel, $active=false) {
$db = PearDatabase::getInstance();
$tm = new VTTaskManager($db);
$tasks = $tm->getTasksForWorkflow($workflowModel->getId());
$taskModels = array();
foreach($tasks as $task) {
if(!$active || $task->active == self::TASK_STATUS_ACTIVE) {
$taskModels[$task->id] = self::getInstanceFromTaskObject($task, $workflowModel, $tm);
}
}
return $taskModels;
}
public static function getInstance($taskId, $workflowModel=null) {
$db = PearDatabase::getInstance();
$tm = new VTTaskManager($db);
$task = $tm->retrieveTask($taskId);
if($workflowModel == null) {
$workflowModel = Settings_Workflows_Record_Model::getInstance($task->workflowId);
}
return self::getInstanceFromTaskObject($task, $workflowModel, $tm);
}
public static function getCleanInstance($workflowModel, $taskName) {
$db = PearDatabase::getInstance();
$tm = new VTTaskManager($db);
$task = $tm->createTask($taskName, $workflowModel->getId());
return self::getInstanceFromTaskObject($task, $workflowModel, $tm);
}
public static function getInstanceFromTaskObject($task, $workflowModel, $tm) {
$taskId = $task->id;
$summary = $task->summary;
$status = $task->active;
$taskModel = new self();
$taskModel->setTaskManager($tm);
return $taskModel->set('task_id', $taskId)->set('summary', $summary)->set('status', $status)
->setTaskObject($task)->setWorkflowFromInstance($workflowModel);
}
/**
* Function deletes workflow task
*/
public function delete() {
$this->task_manager->deleteTask($this->getId());
}
/**
* Function saves workflow task
*/
public function save() {
$taskObject = $this->getTaskObject();
$this->task_manager->saveTask($taskObject);
}
}