- 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.
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Generic schema interchange format that can be converted to a runtime
|
|
* representation (HTMLPurifier_ConfigSchema) or HTML documentation. Members
|
|
* are completely validated.
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Interchange
|
|
{
|
|
|
|
/**
|
|
* Name of the application this schema is describing.
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* Array of Namespace ID => array(namespace info)
|
|
*/
|
|
public $namespaces = array();
|
|
|
|
/**
|
|
* Array of Directive ID => array(directive info)
|
|
*/
|
|
public $directives = array();
|
|
|
|
/**
|
|
* Adds a namespace array to $namespaces
|
|
*/
|
|
public function addNamespace($namespace) {
|
|
if (isset($this->namespaces[$i = $namespace->namespace])) {
|
|
throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine namespace '$i'");
|
|
}
|
|
$this->namespaces[$i] = $namespace;
|
|
}
|
|
|
|
/**
|
|
* Adds a directive array to $directives
|
|
*/
|
|
public function addDirective($directive) {
|
|
if (isset($this->directives[$i = $directive->id->toString()])) {
|
|
throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'");
|
|
}
|
|
$this->directives[$i] = $directive;
|
|
}
|
|
|
|
/**
|
|
* Convenience function to perform standard validation. Throws exception
|
|
* on failed validation.
|
|
*/
|
|
public function validate() {
|
|
$validator = new HTMLPurifier_ConfigSchema_Validator();
|
|
return $validator->validate($this);
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|