runware.ai connection test funktioniert, drucken dialog implementiert
This commit is contained in:
@@ -103,17 +103,34 @@ class RunwareAi implements ApiPluginInterface
|
||||
|
||||
try {
|
||||
$response = Http::withHeaders([
|
||||
'Authorization' => 'Bearer ' . $token,
|
||||
'Content-Type' => 'application/json',
|
||||
'Accept' => 'application/json',
|
||||
])->timeout(5)->post($apiUrl, [
|
||||
[
|
||||
'taskType' => 'ping',
|
||||
'taskType' => 'authentication',
|
||||
'apiKey' => $token,
|
||||
]
|
||||
]);
|
||||
|
||||
return $response->successful();
|
||||
$responseData = $response->json();
|
||||
|
||||
if ($response->successful() && isset($responseData['data']) && !isset($responseData['error'])) {
|
||||
$this->logInfo('RunwareAI connection test successful: Authentication successful.', [
|
||||
'status' => $response->status(),
|
||||
'response' => $responseData,
|
||||
]);
|
||||
return true;
|
||||
} else {
|
||||
$errorMessage = $responseData['error'] ?? 'Unknown error';
|
||||
$this->logError('RunwareAI connection test failed: Authentication failed.', [
|
||||
'status' => $response->status(),
|
||||
'response' => $responseData,
|
||||
'error_message' => $errorMessage,
|
||||
]);
|
||||
return false;
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$this->logError('RunwareAI connection test failed.', ['error' => $e->getMessage()]);
|
||||
$this->logError('RunwareAI connection test failed: Exception caught.', ['error' => $e->getMessage()]);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@ use Filament\Notifications\Notification;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\Support\Facades\Blade;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use App\Api\Plugins\PluginLoader;
|
||||
|
||||
class ApiProviderResource extends Resource
|
||||
{
|
||||
@@ -90,67 +91,59 @@ class ApiProviderResource extends Resource
|
||||
->action(function (array $data, Forms\Components\Component $component, \Livewire\Component $livewire) {
|
||||
$formData = $component->getLivewire()->form->getState();
|
||||
$apiUrl = str_replace('127.0.0.1', 'localhost', $formData['api_url'] ?? null);
|
||||
$plugin = $formData['plugin'] ?? null;
|
||||
$username = $formData['username'] ?? null;
|
||||
$password = $formData['password'] ?? null;
|
||||
$pluginName = $formData['plugin'] ?? null;
|
||||
$token = $formData['token'] ?? null;
|
||||
|
||||
if (!$pluginName) {
|
||||
Notification::make()
|
||||
->title(__('filament.resource.api_provider.notification.connection_failed'))
|
||||
->body('Please select a plugin first.')
|
||||
->danger()
|
||||
->send();
|
||||
$component->getLivewire()->dispatch('testConnectionFinished', result: 'failed');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
$http = Http::timeout(25);
|
||||
// Create a dummy ApiProvider model for the test
|
||||
$dummyApiProvider = new \App\Models\ApiProvider();
|
||||
$dummyApiProvider->api_url = $apiUrl;
|
||||
$dummyApiProvider->token = $token;
|
||||
|
||||
if ($username && $password) {
|
||||
$http->withBasicAuth($username, $password);
|
||||
} elseif ($token) {
|
||||
$http->withToken($token);
|
||||
}
|
||||
// Load the specific plugin using the PluginLoader
|
||||
$pluginInstance = PluginLoader::getPlugin($pluginName, $dummyApiProvider);
|
||||
|
||||
$response = $http->get($apiUrl);
|
||||
// Call the testConnection method of the plugin
|
||||
$testResult = $pluginInstance->testConnection([
|
||||
'api_url' => $apiUrl,
|
||||
'token' => $token,
|
||||
'username' => $formData['username'] ?? null,
|
||||
'password' => $formData['password'] ?? null,
|
||||
]);
|
||||
|
||||
if ($response->successful()) {
|
||||
Log::info('External API connection successful.', [
|
||||
'api_url' => $apiUrl,
|
||||
'plugin' => $plugin,
|
||||
]);
|
||||
if ($testResult) {
|
||||
Notification::make()
|
||||
->title(__('filament.resource.api_provider.notification.connection_successful'))
|
||||
->success()
|
||||
->send();
|
||||
$component->getLivewire()->dispatch('testConnectionFinished', result: 'success');
|
||||
} else {
|
||||
Log::warning('External API connection failed: Non-successful response.', [
|
||||
'api_url' => $apiUrl,
|
||||
'plugin' => $plugin,
|
||||
'status' => $response->status(),
|
||||
'response_body' => $response->body(),
|
||||
]);
|
||||
Notification::make()
|
||||
->title(__('filament.resource.api_provider.notification.connection_failed'))
|
||||
->body($response->json('message', 'An unknown error occurred.'))
|
||||
->body('Plugin reported connection failed. Check logs for details.')
|
||||
->danger()
|
||||
->send();
|
||||
$component->getLivewire()->dispatch('testConnectionFinished', result: 'failed');
|
||||
}
|
||||
} catch (\Illuminate\Http\Client\RequestException $e) {
|
||||
Log::error('External API connection failed: Timeout or network error.', [
|
||||
'api_url' => $apiUrl,
|
||||
'plugin' => $plugin,
|
||||
'error_message' => $e->getMessage(),
|
||||
]);
|
||||
Notification::make()
|
||||
->title(__('filament.resource.api_provider.notification.connection_failed'))
|
||||
->body('Timeout or network error: ' . $e->getMessage())
|
||||
->danger()
|
||||
->send();
|
||||
$component->getLivewire()->dispatch('testConnectionFinished', result: 'failed');
|
||||
} catch (\Exception $e) {
|
||||
Log::error('External API connection failed: An unexpected error occurred.', [
|
||||
Log::error('Plugin test connection failed: An unexpected error occurred.', [
|
||||
'api_url' => $apiUrl,
|
||||
'plugin' => $plugin,
|
||||
'plugin' => $pluginName,
|
||||
'error_message' => $e->getMessage(),
|
||||
]);
|
||||
Notification::make()
|
||||
->title(__('filament.resource.api_provider.notification.connection_failed'))
|
||||
->body('An unexpected error occurred: ' . $e->getMessage())
|
||||
->body('An unexpected error occurred during plugin test: ' . $e->getMessage())
|
||||
->danger()
|
||||
->send();
|
||||
$component->getLivewire()->dispatch('testConnectionFinished', result: 'failed');
|
||||
|
||||
@@ -35,4 +35,11 @@ class StyleController extends Controller
|
||||
|
||||
return response()->json(['interval' => $interval ? (int)$interval->value / 1000 : 5]);
|
||||
}
|
||||
|
||||
public function getMaxNumberOfCopies()
|
||||
{
|
||||
$maxCopies = Setting::where('key', 'max_number_of_copies')->first();
|
||||
|
||||
return response()->json(['max_copies' => $maxCopies ? (int)$maxCopies->value : 10]); // Default to 10 if not set
|
||||
}
|
||||
}
|
||||
53
app/Http/Controllers/PrintController.php
Normal file
53
app/Http/Controllers/PrintController.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Symfony\Component\Process\Exception\ProcessFailedException;
|
||||
use Symfony\Component\Process\Process;
|
||||
|
||||
class PrintController extends Controller
|
||||
{
|
||||
public function printImage(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'image_path' => 'required|string',
|
||||
'quantity' => 'required|integer|min:1',
|
||||
]);
|
||||
|
||||
$imagePath = public_path(str_replace(url('/'), '', $request->input('image_path')));
|
||||
$quantity = $request->input('quantity');
|
||||
|
||||
if (!file_exists($imagePath)) {
|
||||
Log::error("PrintController: Image file not found at {$imagePath}");
|
||||
return response()->json(['error' => 'Image file not found.'], 404);
|
||||
}
|
||||
|
||||
// IMPORTANT: Replace this command with one that works in your environment.
|
||||
// Examples:
|
||||
// Linux/macOS: $command = ['lpr', '-#', $quantity, $imagePath];
|
||||
// Windows (assuming a shared printer named 'MyNetworkPrinter'):
|
||||
// $command = ['print', '/d:\\MyNetworkPrinter', $imagePath];
|
||||
// You might need to install additional software or configure your system
|
||||
// to enable command-line printing.
|
||||
// For a more robust solution, consider a dedicated print server application
|
||||
// or a commercial print API.
|
||||
$command = ['echo', "Simulating print of {$quantity} copies of {$imagePath}"]; // Placeholder
|
||||
|
||||
try {
|
||||
$process = new Process($command);
|
||||
$process->run();
|
||||
|
||||
if (!$process->isSuccessful()) {
|
||||
throw new ProcessFailedException($process);
|
||||
}
|
||||
|
||||
Log::info("PrintController: Successfully sent print command for {$imagePath} (x{$quantity})");
|
||||
return response()->json(['message' => 'Print command sent successfully.']);
|
||||
} catch (ProcessFailedException $exception) {
|
||||
Log::error("PrintController: Print command failed. Error: " . $exception->getMessage());
|
||||
return response()->json(['error' => 'Failed to send print command.', 'details' => $exception->getMessage()], 500);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user