Files
crm.clientright.ru/modules/EmailTemplates/models/Record.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

150 lines
4.6 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.
*************************************************************************************/
class EmailTemplates_Record_Model extends Vtiger_Record_Model {
/**
* Function to get the id of the record
* @return <Number> - Record Id
*/
public function getId() {
return $this->get('templateid');
}
/**
* Function to set the id of the record
* @param <type> $value - id value
* @return <Object> - current instance
*/
public function setId($value) {
return $this->set('templateid',$value);
}
/**
* Function to delete the email template
* @param type $recordIds
*/
public function delete(){
$this->getModule()->deleteRecord($this);
}
/**
* Function to delete all the email templates
* @param type $recordIds
*/
public function deleteAllRecords(){
$this->getModule()->deleteAllRecords();
}
/**
* Function to get template fields
* To get the fields from module, which has the email field
* @return <arrray> template fields
*/
public function getEmailTemplateFields(){
return $this->getModule()->getAllModuleEmailTemplateFields();
}
/**
* Function to get the Email Template Record
* @param type $record
* @return <EmailTemplate_Record_Model>
*/
public function getTemplateData($record){
return $this->getModule()->getTemplateData($record);
}
/**
* Function to get the Detail View url for the record
* @return <String> - Record Detail View Url
*/
public function getDetailViewUrl() {
$module = $this->getModule();
return 'index.php?module='.$this->getModuleName().'&view='.$module->getDetailViewName().'&record='.$this->getId();
}
public function getName(){
return $this->get('subject');
}
public function isSystemTemplate() {
if($this->get('systemtemplate') == '1') {
return true;
}
return false;
}
/**
* Function to get the instance of Custom View module, given custom view id
* @param <Integer> $cvId
* @return CustomView_Record_Model instance, if exists. Null otherwise
*/
public static function getInstanceById($templateId, $module=null) {
$db = PearDatabase::getInstance();
$sql = 'SELECT * FROM vtiger_emailtemplates WHERE templateid = ?';
$params = array($templateId);
$result = $db->pquery($sql, $params);
if($db->num_rows($result) > 0) {
$row = $db->query_result_rowdata($result, 0);
$recordModel = new self();
return $recordModel->setData($row)->setModule('EmailTemplates');
}
throw new Exception(vtranslate('LBL_RECORD_DELETE', 'Vtiger'), 1);
}
public static function getAllForEmailTask($moduleName) {
$db = PearDatabase::getInstance();
$sql = 'SELECT templateid, templatename, body, deleted FROM vtiger_emailtemplates WHERE module = ? ORDER BY templateid DESC';
$params = array($moduleName);
$result = $db->pquery($sql, $params);
$numRows = $db->num_rows($result);
$recordModels = array();
if($numRows > 0) {
for($i=0;$i<$numRows;$i++) {
$row = $db->query_result_rowdata($result, $i);
$recordModel = new self();
$recordModels[$row['templateid']] = $recordModel->setData($row)->setModule('EmailTemplates');
}
}
return $recordModels;
}
public static function getSystemTemplateBySubject($subject) {
$db = PearDatabase::getInstance();
$sql = 'SELECT * FROM vtiger_emailtemplates WHERE subject = ? AND systemtemplate = ?';
$params = array($subject,1);
$result = $db->pquery($sql, $params);
$numRows = $db->num_rows($result);
if($numRows > 0) {
$row = $db->query_result_rowdata($result, 0);
$recordModel = new self();
$recordModel->setData($row)->setModule('EmailTemplates');
return $recordModel;
}
}
public function isDeleted() {
if ($this->get('deleted') == '1') {
return true;
} else {
return false;
}
}
public function updateImageName($imageName) {
$db = PearDatabase::getInstance();
if (!empty($imageName)) {
$db->pquery('UPDATE vtiger_emailtemplates SET templatepath=? WHERE templateid=?', array($imageName . ".png", $this->getId()));
}
}
}