54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Integration\Controllers;
|
|
|
|
use App\Domains\Integration\Models\Integration;
|
|
use App\Domains\Integration\Requests\StoreTenantIntegrationRequest;
|
|
use App\Domains\Integration\Services\TenantIntegrationService;
|
|
use Illuminate\Routing\Controller;
|
|
|
|
class TenantIntegrationController extends Controller
|
|
{
|
|
protected TenantIntegrationService $tenantIntegrationService;
|
|
|
|
public function __construct(TenantIntegrationService $tenantIntegrationService)
|
|
{
|
|
$this->tenantIntegrationService = $tenantIntegrationService;
|
|
}
|
|
|
|
public function index(string $tenantCode)
|
|
{
|
|
return response()->json($this->tenantIntegrationService->getAllForTenant($tenantCode));
|
|
}
|
|
|
|
public function show(string $tenantCode, string $integrationCode)
|
|
{
|
|
$integration = $this->tenantIntegrationService->getTenantIntegration($tenantCode, $integrationCode);
|
|
|
|
if (!$integration) {
|
|
return response()->json(['message' => 'Integration not configured for this tenant'], 404);
|
|
}
|
|
|
|
return response()->json($integration);
|
|
}
|
|
|
|
public function store(StoreTenantIntegrationRequest $request, string $tenantCode, string $integrationCode)
|
|
{
|
|
$integration = Integration::where('integration_code', $integrationCode)->firstOrFail();
|
|
|
|
try {
|
|
$tenantIntegration = $this->tenantIntegrationService->updateOrCreateIntegration(
|
|
$tenantCode,
|
|
$integration,
|
|
$request->input('integration_data', [])
|
|
);
|
|
|
|
return response()->json($tenantIntegration);
|
|
} catch (\Exception $e) {
|
|
return response()->json([
|
|
'message' => 'Error validando la configuración: ' . $e->getMessage()
|
|
], 400);
|
|
}
|
|
}
|
|
}
|