- 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.
135 lines
4.4 KiB
PHP
135 lines
4.4 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.
|
|
************************************************************************************/
|
|
include_once('vtlib/Vtiger/LayoutExport.php');
|
|
|
|
/**
|
|
* Provides API to import layout into vtiger CRM
|
|
* @package vtlib
|
|
*/
|
|
class Vtiger_LayoutImport extends Vtiger_LayoutExport {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->_export_tmpdir;
|
|
}
|
|
|
|
/**
|
|
* Initialize Import
|
|
* @access private
|
|
*/
|
|
function initImport($zipfile, $overwrite) {
|
|
$this->__initSchema();
|
|
$name = $this->getModuleNameFromZip($zipfile);
|
|
return $name;
|
|
}
|
|
|
|
/**
|
|
* Import Module from zip file
|
|
* @param String Zip file name
|
|
* @param Boolean True for overwriting existing module
|
|
*/
|
|
function import($zipfile, $overwrite=false) {
|
|
$this->initImport($zipfile, $overwrite);
|
|
|
|
// Call module import function
|
|
$this->import_Layout($zipfile);
|
|
}
|
|
|
|
/**
|
|
* Update Layout from zip file
|
|
* @param Object Instance of Layout
|
|
* @param String Zip file name
|
|
* @param Boolean True for overwriting existing module
|
|
*/
|
|
function update($instance, $zipfile, $overwrite=true) {
|
|
$this->import($zipfile, $overwrite);
|
|
}
|
|
|
|
/**
|
|
* Import Layout
|
|
* @access private
|
|
*/
|
|
function import_Layout($zipfile) {
|
|
$name = $this->_modulexml->name;
|
|
$label = $this->_modulexml->label;
|
|
|
|
self::log("Importing $name ... STARTED");
|
|
$unzip = new Vtiger_Unzip($zipfile);
|
|
$filelist = $unzip->getList();
|
|
$vtiger6format = false;
|
|
|
|
foreach($filelist as $filename=>$fileinfo) {
|
|
if(!$unzip->isdir($filename)) {
|
|
|
|
if(strpos($filename, '/') === false) continue;
|
|
|
|
|
|
$targetdir = substr($filename, 0, strripos($filename,'/'));
|
|
$targetfile = basename($filename);
|
|
$dounzip = false;
|
|
// Case handling for jscalendar
|
|
if(stripos($targetdir, "layouts/$name/skins") === 0) {
|
|
$dounzip = true;
|
|
$vtiger6format = true;
|
|
}
|
|
// vtiger6 format
|
|
else if (stripos($targetdir, "layouts/$name/modules") === 0) {
|
|
$vtiger6format = true;
|
|
$dounzip = true;
|
|
}
|
|
//case handling for the special library files
|
|
else if (stripos($targetdir, "layouts/$name/libraries") === 0) {
|
|
$vtiger6format = true;
|
|
$dounzip = true;
|
|
}
|
|
if($dounzip) {
|
|
// vtiger6 format
|
|
if ($vtiger6format) {
|
|
$targetdir = "layouts/$name/" . str_replace("layouts/$name", "", $targetdir);
|
|
@mkdir($targetdir, 0755, true);
|
|
}
|
|
|
|
global $upload_badext;
|
|
$badFileExtensions= array_diff($upload_badext, array('js'));
|
|
$filepath = 'zip://'.$zipfile.'#'.$filename ;
|
|
$fileValidation = Vtiger_Functions::verifyClaimedMIME($filepath, $badFileExtensions);
|
|
|
|
$imageContents = file_get_contents('zip://'.$zipfile.'#'.$filename);
|
|
// Check for php code injection
|
|
if (preg_match('/(<\?php?(.*?))/i', $imageContents) == 1) {
|
|
$fileValidation = false;
|
|
}
|
|
|
|
if($fileValidation){
|
|
if($unzip->unzip($filename, "$targetdir/$targetfile") !== false){
|
|
self::log("Copying file $filename ... DONE");
|
|
} else {
|
|
self::log("Copying file $filename ... FAILED");
|
|
}
|
|
}
|
|
} else {
|
|
self::log("Copying file $filename ... SKIPPED");
|
|
}
|
|
}
|
|
}
|
|
if($unzip) $unzip->close();
|
|
|
|
self::register($name,$label);
|
|
|
|
self::log("Importing $name($label) ... DONE");
|
|
|
|
return;
|
|
}
|
|
|
|
|
|
} |