2016-09-01 16:23:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class StoreAlbumRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2016-10-05 14:49:44 +01:00
|
|
|
switch ($this->method())
|
|
|
|
{
|
|
|
|
case 'POST':
|
|
|
|
return [
|
|
|
|
'description' => '',
|
2018-07-12 21:55:01 +01:00
|
|
|
'name' => 'required|album_path_unique|max:255',
|
2016-10-05 14:49:44 +01:00
|
|
|
'storage_id' => 'required|sometimes'
|
|
|
|
];
|
|
|
|
|
|
|
|
case 'PATCH':
|
|
|
|
case 'PUT':
|
|
|
|
$albumId = intval($this->segment(3));
|
|
|
|
|
|
|
|
return [
|
|
|
|
'description' => 'sometimes',
|
2018-07-12 21:55:01 +01:00
|
|
|
'name' => 'required|sometimes|max:255|album_path_unique:' . $albumId,
|
2016-10-05 14:49:44 +01:00
|
|
|
'storage_id' => 'required|sometimes'
|
|
|
|
];
|
|
|
|
}
|
2016-09-01 16:23:39 +01:00
|
|
|
}
|
|
|
|
}
|