mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
85 lines
2.0 KiB
PHP
85 lines
2.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Rules\Wiki\Resource;
|
|
|
|
use App\Enums\Models\Wiki\ResourceSite;
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\DataAwareRule;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Translation\PotentiallyTranslatedString;
|
|
|
|
class ResourceLinkFormatRule implements DataAwareRule, ValidationRule
|
|
{
|
|
/**
|
|
* The data under validation.
|
|
*/
|
|
protected array $data = [];
|
|
|
|
/**
|
|
* Set the data under validation.
|
|
*/
|
|
public function setData(array $data): self
|
|
{
|
|
$this->data = $data;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function __construct(protected ?ResourceSite $site = null) {}
|
|
|
|
/**
|
|
* Resolve the site.
|
|
*/
|
|
protected function site(): ?ResourceSite
|
|
{
|
|
if ($this->site instanceof ResourceSite) {
|
|
return $this->site;
|
|
}
|
|
|
|
$site = Arr::get($this->data, 'site');
|
|
if (is_numeric($site)) {
|
|
return ResourceSite::tryFrom(intval($site));
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param Closure(string): PotentiallyTranslatedString $fail
|
|
*/
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
$site = $this->site();
|
|
if (! $site instanceof ResourceSite) {
|
|
return;
|
|
}
|
|
|
|
$key = Str::of($attribute)->explode('.')->last();
|
|
|
|
$rules = [
|
|
new AnimeResourceLinkFormatRule($site),
|
|
new ArtistResourceLinkFormatRule($site),
|
|
new SongResourceLinkFormatRule($site),
|
|
new StudioResourceLinkFormatRule($site),
|
|
];
|
|
|
|
foreach ($rules as $rule) {
|
|
$validator = Validator::make(
|
|
[$key => $value],
|
|
[$key => $rule]
|
|
);
|
|
|
|
if ($validator->passes()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
$fail(__('validation.regex'));
|
|
}
|
|
}
|