2021-10-10 18:05:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
2022-11-27 15:29:29 +00:00
|
|
|
use App\Models\PlaylistFolder;
|
2021-10-10 18:05:51 +00:00
|
|
|
use App\Rules\ValidSmartPlaylistRulePayload;
|
2022-11-27 15:29:29 +00:00
|
|
|
use Illuminate\Validation\Rule;
|
2021-10-10 18:05:51 +00:00
|
|
|
|
2022-08-10 14:56:01 +00:00
|
|
|
/**
|
2022-09-14 12:12:06 +00:00
|
|
|
* @property-read string $name
|
2022-11-27 15:29:29 +00:00
|
|
|
* @property-read int|null $folder_id
|
2022-08-10 14:56:01 +00:00
|
|
|
* @property-read array $rules
|
2024-01-12 14:41:02 +00:00
|
|
|
* @property-read ?bool $own_songs_only
|
2022-08-10 14:56:01 +00:00
|
|
|
*/
|
2021-10-10 18:05:51 +00:00
|
|
|
class PlaylistUpdateRequest extends Request
|
|
|
|
{
|
|
|
|
/** @return array<mixed> */
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'required',
|
|
|
|
'rules' => ['array', 'nullable', new ValidSmartPlaylistRulePayload()],
|
2022-11-27 15:29:29 +00:00
|
|
|
'folder_id' => ['nullable', 'sometimes', Rule::exists(PlaylistFolder::class, 'id')],
|
2024-01-12 14:41:02 +00:00
|
|
|
'own_songs_only' => 'sometimes',
|
2021-10-10 18:05:51 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|