- 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.
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
/* * *******************************************************************************
|
|
* Description: ITS4You Mobile App
|
|
* All Rights Reserved.
|
|
* Contributor: IT-Solutions4You s.r.o - www.its4you.sk
|
|
* ****************************************************************************** */
|
|
|
|
dispatch('search/:text', 'componentsSearch');
|
|
|
|
function componentsSearch()
|
|
{
|
|
global $current_user;
|
|
|
|
$searchKey = params('text');
|
|
|
|
$response = new Vtiger_Response();
|
|
|
|
try {
|
|
include_once('modules/ITS4YouMobileApp/components/search/models/entries.php');
|
|
|
|
if ($current_user) {
|
|
$ApiSearchEntriesModel = new ApiSearchEntriesModel();
|
|
$ApiSearchEntriesModel->setSearchKey($searchKey);
|
|
$ApiSearchEntriesModel->load();
|
|
$entries = $ApiSearchEntriesModel->getEntries();
|
|
|
|
$response->setResult(array('text' => $searchKey, 'search' => $entries));
|
|
} else {
|
|
$response->setError('5100', 'Permission denied');
|
|
}
|
|
} catch (Exception $e) {
|
|
$response->setError($e->getCode(), $e->getMessage());
|
|
}
|
|
|
|
$response->emit();
|
|
}
|