- 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.
122 lines
4.1 KiB
PHP
122 lines
4.1 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
* The content of this file is subject to the ITS4YouEmails license.
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
|
|
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
|
|
* All Rights Reserved.
|
|
********************************************************************************/
|
|
|
|
class ITS4YouEmails_Attachment_Model extends Vtiger_Base_Model
|
|
{
|
|
/**
|
|
* @var PearDatabase
|
|
*/
|
|
public $db;
|
|
|
|
/**
|
|
* @param null|int $record
|
|
* @return self
|
|
* @throws Exception
|
|
*/
|
|
public static function getInstance($record = null)
|
|
{
|
|
$instance = new self();
|
|
$instance->db = PearDatabase::getInstance();
|
|
$instance->set('id', $record);
|
|
$instance->retrieveData();
|
|
|
|
return $instance;
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
$recordId = $this->get('id');
|
|
$currentDate = $this->db->formatDate(date('Y-m-d H:i:s'), true);
|
|
$params1 = array(
|
|
'crmid' => $recordId,
|
|
'smcreatorid' => $this->get('creator_id'),
|
|
'smownerid' => $this->get('owner_id'),
|
|
'setype' => $this->get('module') . ' Attachment',
|
|
'description' => $this->get('description'),
|
|
'createdtime' => $currentDate,
|
|
'modifiedtime' => $currentDate,
|
|
);
|
|
$params2 = array(
|
|
'attachmentsid' => $recordId,
|
|
'name' => $this->get('file_name'),
|
|
'description' => $this->get('description'),
|
|
'type' => $this->get('file_type'),
|
|
'path' => $this->get('file_path'),
|
|
);
|
|
|
|
if (columnExists('storedname', 'vtiger_attachments')) {
|
|
$params2['storedname'] = $this->get('stored_name');
|
|
}
|
|
|
|
$this->db->pquery(
|
|
$this->getInsertQuery('vtiger_crmentity', $params1),
|
|
$params1
|
|
);
|
|
$this->db->pquery(
|
|
$this->getInsertQuery('vtiger_attachments', $params2),
|
|
$params2
|
|
);
|
|
}
|
|
|
|
public function getInsertQuery($table, $params)
|
|
{
|
|
return sprintf('INSERT INTO %s (%s) VALUES (%s)',
|
|
$table, implode(',', array_keys($params)), generateQuestionMarks($params)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function retrieveData()
|
|
{
|
|
$record = $this->get('id');
|
|
$data = $this->getData();
|
|
|
|
$entityResult = $this->db->pquery('SELECT * FROM vtiger_crmentity WHERE crmid=?', [$record]);
|
|
$entityData = (array)$this->db->query_result_rowdata($entityResult);
|
|
|
|
$attachmentResult = $this->db->pquery('SELECT * FROM vtiger_attachments WHERE attachmentsid=?', [$record]);
|
|
$attachmentData = (array)$this->db->query_result_rowdata($attachmentResult);
|
|
|
|
$this->setData(array_merge($data, $entityData, $attachmentData));
|
|
}
|
|
|
|
public static function getParentRecords($recordId)
|
|
{
|
|
$parentRecordModel = Vtiger_Record_Model::getInstanceById($recordId);
|
|
$parentModuleModel = $parentRecordModel->getModule();
|
|
|
|
$relatedModuleModel = Vtiger_Module_Model::getInstance('Documents');
|
|
$relationModel = Vtiger_Relation_Model::getInstance($parentModuleModel, $relatedModuleModel);
|
|
|
|
$sql = $relationModel->getQuery($parentRecordModel);
|
|
$adb = PearDatabase::getInstance();
|
|
$result = $adb->pquery($sql);
|
|
$records = [];
|
|
|
|
while ($row = $adb->fetchByAssoc($result)) {
|
|
$documentRecordId = $row['crmid'];
|
|
|
|
if (isPermitted('Documents', 'DetailView', $documentRecordId)) {
|
|
$folder = Documents_Folder_Model::getInstanceById($row['folderid']);
|
|
|
|
if ($folder) {
|
|
$row['foldername'] = $folder->getName();
|
|
}
|
|
|
|
$records[$documentRecordId] = $row;
|
|
}
|
|
}
|
|
|
|
return $records;
|
|
}
|
|
}
|
|
|