Files
crm.clientright.ru/modules/CTMultipleSMTP/CTMultipleSMTP.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

132 lines
4.8 KiB
PHP

<?php
require_once('data/CRMEntity.php');
require_once('data/Tracker.php');
require_once 'vtlib/Vtiger/Module.php';
require_once('modules/com_vtiger_workflow/include.inc');
class CTMultipleSMTP extends CRMEntity {
/**
* Invoked when special actions are performed on the module.
* @param String Module name
* @param String Event Type (module.postinstall, module.disabled, module.enabled, module.preuninstall)
*/
function vtlib_handler($modulename, $event_type) {
global $adb;
if($event_type == 'module.postinstall') {
self::addWidgetTo();
self::checkEnable();
self::installWorkflow();
} else if($event_type == 'module.disabled') {
// TODO Handle actions when this module is disabled.
self::removeWidgetTo();
self::disableSMTP();
self::removeWorkflows();
} else if($event_type == 'module.enabled') {
// TODO Handle actions when this module is enabled.
self::addWidgetTo();
self::installWorkflow();
self::checkEnable();
} else if($event_type == 'module.preuninstall') {
// TODO Handle actions when this module is about to be deleted.
self::removeWidgetTo();
self::removeWorkflows();
} else if($event_type == 'module.preupdate') {
// TODO Handle actions before this module is updated.
} else if($event_type == 'module.postupdate') {
self::checkEnable();
}
}
static function disableSMTP(){
global $adb;
$rs = $adb->pquery('UPDATE `ct_multiple_smtp_settings` SET `enable`= ?',array(0));
}
static function checkEnable() {
global $adb;
$rs=$adb->pquery("SELECT `enable` FROM `ct_multiple_smtp_settings`;",array());
if($adb->num_rows($rs)==0) {
$adb->pquery("INSERT INTO `ct_multiple_smtp_settings` (`enable`) VALUES ('0');",array());
}
}
/**
* Add widget to other module.
* @param unknown_type $moduleNames
* @return unknown_type
*/
static function addWidgetTo() {
global $adb;
$widgetType = 'HEADERSCRIPT';
$widgetName = 'CTMultipleSMTPJs';
$link = 'layouts/v7/modules/Settings/CTMultipleSMTP/resources/CTMultipleSMTP.js';
$module = Vtiger_Module::getInstance('CTMultipleSMTP');
if($module) {
$module->addLink($widgetType, $widgetName, $link);
}
$max_id=$adb->getUniqueID('vtiger_settings_field');
$adb->pquery("INSERT INTO `vtiger_settings_field` (`fieldid`, `blockid`, `name`, `description`, `linkto`, `sequence`) VALUES (?, ?, ?, ?, ?, ?)",array($max_id, '4', 'Multiple SMTP', 'Multiple SMTP', 'index.php?module=CTMultipleSMTP&parent=Settings&view=CTMultipleSMTPList', $max_id));
}
static function removeWidgetTo() {
global $adb;
$widgetType = 'HEADERSCRIPT';
$widgetName = 'CTMultipleSMTPJs';
$link = 'layouts/v7/modules/Settings/CTMultipleSMTP/resources/CTMultipleSMTP.js';
$module = Vtiger_Module::getInstance('CTMultipleSMTP');
if($module) {
$module->deleteLink($widgetType, $widgetName, $link);
}
$adb->pquery("DELETE FROM vtiger_settings_field WHERE `name` = ?",array('Multiple SMTP'));
}
static function installWorkflow() {
global $adb;
$name='CTMultipleSMTPEmailTask';
$dest1 = "modules/com_vtiger_workflow/tasks/".$name.".inc";
$source1 = "modules/CTMultipleSMTP/workflow/".$name.".inc";
if (file_exists($dest1)) {
$file_exist1 = true;
} else {
if(copy($source1, $dest1)) {
$file_exist1 = true;
}
}
mkdir('modules/Settings/CTMultipleSMTP/workflow');
chmod('modules/Settings/CTMultipleSMTP/workflow', 0777);
$dest2 = "modules/Settings/CTMultipleSMTP/workflow/".$name.".inc";
$source2 = "modules/CTMultipleSMTP/workflow/".$name.".inc";
if (file_exists($dest2)) {
$file_exist2 = true;
} else {
if(copy($source2, $dest2)) {
$file_exist2 = true;
}
}
$dest3 = "modules/Settings/CTMultipleSMTP/workflow/".$name.".php";
$source3 = "modules/CTMultipleSMTP/workflow/".$name.".php";
if (file_exists($dest3)) {
$file_exist3 = true;
} else {
if(copy($source3, $dest3)) {
$file_exist3 = true;
}
}
}
static function removeWorkflows() {
global $adb;
$sql1 = "DELETE FROM com_vtiger_workflow_tasktypes WHERE tasktypename = ?";
$adb->pquery($sql1, array('CTMultipleSMTPEmailTask'));
}
}
?>