mirror of
https://github.com/koel/koel
synced 2024-12-13 14:12:27 +00:00
28 lines
703 B
PHP
28 lines
703 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V6\Requests;
|
|
|
|
use App\Http\Requests\API\Request;
|
|
use App\Repositories\SongRepository;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
/**
|
|
* @property-read string|null $sort
|
|
* @property-read string $order
|
|
* @property-read int $limit
|
|
*/
|
|
class QueueFetchSongRequest extends Request
|
|
{
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'order' => ['required', Rule::in('asc', 'desc', 'rand')],
|
|
'limit' => 'required|integer|min:1',
|
|
'sort' => [
|
|
'required_unless:order,rand',
|
|
Rule::in(array_keys(SongRepository::SORT_COLUMNS_NORMALIZE_MAP)),
|
|
],
|
|
];
|
|
}
|
|
}
|