2020-06-23 13:05:41 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-06-23 13:05:41 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-06-23 13:05:41 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-06-23 13:05:41 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Document;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\Document;
|
|
|
|
|
|
|
|
class StoreDocumentRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-08-20 06:05:26 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->can('create', Document::class);
|
2020-06-23 13:05:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2023-08-20 06:05:26 +02:00
|
|
|
'is_public' => 'sometimes|boolean',
|
2020-06-23 13:05:41 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-06-23 13:05:41 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-10-26 04:57:44 +02:00
|
|
|
if(isset($input['is_public'])) {
|
2023-08-20 06:05:26 +02:00
|
|
|
$input['is_public'] = $this->toBoolean($input['is_public']);
|
2023-10-26 04:57:44 +02:00
|
|
|
}
|
2023-08-20 06:05:26 +02:00
|
|
|
|
2020-06-23 13:05:41 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2023-08-20 06:05:26 +02:00
|
|
|
|
2020-06-23 13:05:41 +02:00
|
|
|
}
|