chore(money,taxation): remove legacy-era money and taxation sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-20 20:54:20 +02:00
parent d8a96a3fb8
commit 398863e437
19 changed files with 0 additions and 1337 deletions
@@ -1,64 +0,0 @@
<?php
namespace App\Domains\Money\Http\Requests;
use App\Rules\PublicHttpUrl;
use Illuminate\Foundation\Http\FormRequest;
class ExchangeRateProviderRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
$rules = [
'driver' => [
'required',
],
'key' => [
'required',
],
'currencies' => [
'nullable',
],
'currencies.*' => [
'nullable',
],
'driver_config' => [
'nullable',
],
// Only the CurrencyConverter "DEDICATED" plan reads a custom URL from
// driver_config; guard it against SSRF (private/reserved targets).
'driver_config.url' => [
'nullable',
'string',
'url',
new PublicHttpUrl,
],
'active' => [
'nullable',
'boolean',
],
];
return $rules;
}
public function getExchangeRateProviderPayload()
{
return collect($this->validated())
->merge([
'company_id' => $this->header('company'),
])
->toArray();
}
}