getExchangeRateProviderPayload()); } public function update(ExchangeRateProvider $provider, ExchangeRateProviderRequest $request): ExchangeRateProvider { $provider->update($request->getExchangeRateProviderPayload()); return $provider; } public function checkActiveCurrencies($request) { return ExchangeRateProvider::whereJsonContains('currencies', $request->currencies) ->where('active', true) ->get(); } public function checkUpdateActiveCurrencies(ExchangeRateProvider $provider, $request) { return ExchangeRateProvider::where('active', $request->active) ->where('id', '<>', $provider->id) ->whereJsonContains('currencies', $request->currencies) ->get(); } public function checkProviderStatus($request) { try { $driver = ExchangeRateDriverFactory::make( $request['driver'], $request['key'], $request['driver_config'] ?? [] ); $rates = $driver->validateConnection(); return response()->json([ 'exchangeRate' => $rates, ], 200); } catch (ExchangeRateException $e) { return respondJson($e->errorKey, $e->getMessage()); } } public function getExchangeRate(string $driver, string $apiKey, array $driverConfig, string $baseCurrency, string $targetCurrency) { try { $driverInstance = ExchangeRateDriverFactory::make($driver, $apiKey, $driverConfig); return response()->json([ 'exchangeRate' => $driverInstance->getExchangeRate($baseCurrency, $targetCurrency), ], 200); } catch (ExchangeRateException $e) { return respondJson($e->errorKey, $e->getMessage()); } } public function getSupportedCurrencies(string $driver, string $apiKey, array $driverConfig = []) { try { $driverInstance = ExchangeRateDriverFactory::make($driver, $apiKey, $driverConfig); return response()->json([ 'supportedCurrencies' => $driverInstance->getSupportedCurrencies(), ]); } catch (ExchangeRateException $e) { return respondJson($e->errorKey, $e->getMessage()); } } public function addExchangeRateLog($model): ExchangeRateLog { return ExchangeRateLog::create([ 'exchange_rate' => $model->exchange_rate, 'company_id' => $model->company_id, 'base_currency_id' => $model->currency_id, 'currency_id' => CompanySetting::getSetting('currency', $model->company_id), ]); } }