Files
crm.clientright.ru/modules/Vtiger/views/ExportExtensionLog.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

141 lines
4.4 KiB
PHP

<?php
/* +**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("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.
* ***********************************************************************************/
require_once 'modules/WSAPP/WSAPPLogs.php';
class Vtiger_ExportExtensionLog_View extends Vtiger_View_Controller {
public function requiresPermission(\Vtiger_Request $request) {
$permissions = parent::requiresPermission($request);
$permissions[] = array('module_parameter' => 'custom_module', 'action' => 'DetailView');
$request->set('custom_module', 'WSAPP');
return $permissions;
}
public function checkPermission(Vtiger_Request $request) {
parent::checkPermission($request);
}
function preProcess(Vtiger_Request $request) {
return false;
}
function postProcess(Vtiger_Request $request) {
return false;
}
/**
* Function to convert log details to user format
* @param <array> $logDetails
* @return <array> $data
*/
function convertLogDetailsToUserFormat($logDetails, $moduleName) {
$db = PearDatabase::getInstance();
$data = array();
$data[0]['module'] = vtranslate('LBL_SOURCE_MODULE');
$data[0]['name'] = vtranslate('LBL_RECORD_NAME');
$i = 1;
foreach ($logDetails as $logId) {
if (!is_numeric($logId)) {
list ($moduleId, $recordId) = explode('x', $logId);
if ($logId && $moduleId) {
$wsObject = VtigerWebserviceObject::fromId($db, $moduleId);
$moduleName = $wsObject->getEntityName();
}
} else {
$recordId = $logId;
if ($logId) {
$moduleName = getSalesEntityType($recordId);
}
}
$name = getEntityName($moduleName, $recordId);
if (!empty($name)) {
$data[$i]['module'] = $moduleName;
$data[$i]['name'] = $name[$recordId];
$i++;
}
}
return $data;
}
function process(Vtiger_request $request) {
$logId = $request->get('logid');
$type = $request->get('type');
$this->getCSV($logId, $type);
}
/**
* Function exports log data into a csv file
*/
function getCSV($logId, $type) {
$logData = WSAPP_Logs::getSyncCountDetails($logId);
$sourceModule = WSAPP_Logs::getModuleFromLogId($logId);
if ($type == 'app_skip' || $type == 'vt_skip') {
$data = json_decode(decode_html($logData[$type.'_info'], true));
$i = 1;
$tmpData = array();
$tmpData[0]['module'] = vtranslate('LBL_SOURCE_MODULE');
$tmpData[0]['name'] = vtranslate('LBL_RECORD_NAME');
$tmpData[0]['error'] = vtranslate('LBL_REASON');
foreach ($data as $skipInfo) {
$skipError = (array) $skipInfo;
foreach ($skipError as $name => $errorMsg) {
$tmpData[$i]['module'] = $sourceModule;
$tmpData[$i]['name'] = $name;
$tmpData[$i]['error'] = $errorMsg;
$i++;
}
}
$data = $tmpData;
} else {
$data = json_decode(decode_html($logData[$type.'_ids'], true));
$data = $this->convertLogDetailsToUserFormat($data, $sourceModule);
}
$rootDirectory = vglobal('root_directory');
$tmpDir = vglobal('tmp_dir');
$tempFileName = tempnam($rootDirectory.$tmpDir, 'csv');
$this->writeToCSVFile($tempFileName, $data);
$fileName = 'ExtensionLog.csv';
if (isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) {
header('Pragma: public');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
}
// we are adding UTF-8 Byte Order Mark - BOM at the bottom so the size should be + 8 of the file size
$fileSize = @filesize($tempFileName) + 8;
header('Content-Encoding: UTF-8');
header('Content-type: text/csv; charset=UTF-8');
header('Content-Length: '.$fileSize);
header('Content-disposition: attachment; filename="'.$fileName.'"');
$fp = fopen($tempFileName, 'rb');
fpassthru($fp);
}
function writeToCSVFile($fileName, $data) {
$arr_val = $data;
$fp = fopen($fileName, 'w+');
if (isset($arr_val)) {
foreach ($arr_val as $key => $array_value) {
$csv_values = array_map('decode_html', array_values($array_value));
fputcsv($fp, $csv_values);
}
}
fclose($fp);
}
}