- 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.
117 lines
3.0 KiB
PHP
117 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Created by JetBrains PhpStorm.
|
|
* User: Stefan Warnat <support@stefanwarnat.de>
|
|
* Date: 20.09.14 23:15
|
|
* You must not use this file without permission.
|
|
*/
|
|
namespace Workflow\Plugins\ConnectionProvider;
|
|
|
|
use Workflow\VtUtils;
|
|
|
|
class FlexxLogistics extends \Workflow\ConnectionProvider {
|
|
protected $_title = 'Flexx Logistics';
|
|
private $_connection = null;
|
|
|
|
protected $configFields = array(
|
|
/*'default' => array(
|
|
'label' => 'Default method<br/>for all Workflow Mails',
|
|
'type' => 'checkbox'
|
|
)*/
|
|
);
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function renderExtraBackend($data) {
|
|
|
|
}
|
|
|
|
public function getConfigFields()
|
|
{
|
|
return array_merge($this->configFields, array(
|
|
'url' => array (
|
|
'label' => 'Server URL',
|
|
'type' => 'text',
|
|
'description' => 'URL of Backend Server'
|
|
),
|
|
'apikey' => array (
|
|
'label' => 'Offline API Key',
|
|
'type' => 'password',
|
|
'description' => 'API Key to access Server'
|
|
),
|
|
));
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
* @throws \Exception
|
|
*/
|
|
public function test() {
|
|
if(extension_loaded('curl') === false) {
|
|
throw new \Exception('php-curl Extension is required');
|
|
}
|
|
|
|
if(version_compare (phpversion(), '5.4.0') < 0) {
|
|
throw new \Exception('PHP Version 5.4 is required');
|
|
}
|
|
|
|
try {
|
|
|
|
$response = $this->sendRequest('api_tokens/' . $this->get('apikey'));
|
|
|
|
if(!empty($response->token)) {
|
|
return true;
|
|
} else {
|
|
throw new \Exception('API Key wrong');
|
|
}
|
|
|
|
} catch (\Exception $exp) {
|
|
throw new \Exception ($exp->getMessage());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function sendRequest($endpoint, $parameters = null, $method = 'AUTO') {
|
|
$url = rtrim($this->get('url'), '/') . '/api/';
|
|
|
|
$apiKey = $this->get('apikey');
|
|
|
|
$header = array(
|
|
'Accept: application/json',
|
|
'Content-Type: application/json',
|
|
'X-AUTH-TOKEN: ' . $apiKey
|
|
);
|
|
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url . $endpoint);
|
|
|
|
if(!empty($parameters)) {
|
|
|
|
$data_string = json_encode($parameters);
|
|
curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
|
|
}
|
|
|
|
if($method != 'GET' && $method != 'POST' && $method != 'AUTO') {
|
|
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
|
|
}
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
|
|
|
|
$server_output = curl_exec ($ch);
|
|
|
|
curl_close ($ch);
|
|
|
|
return json_decode($server_output);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
\Workflow\ConnectionProvider::register('flexxlogistics', '\Workflow\Plugins\ConnectionProvider\FlexxLogistics');
|
|
|