2020-08-18 16:01:25 +02:00
|
|
|
<?php
|
2022-07-06 07:18:41 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
2020-08-18 16:01:25 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientPortal\Uploads;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class StoreUploadRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2022-02-16 03:24:10 +01:00
|
|
|
return (bool) auth()->guard('contact')->user()->client->getSetting('client_portal_enable_uploads');
|
2020-08-18 16:01:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2021-11-19 23:39:35 +01:00
|
|
|
'file' => ['file', 'mimes:png,ai,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000'],
|
2020-08-18 16:01:25 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Since saveDocuments() expects an array of uploaded files,
|
|
|
|
* we need to convert it to an array before uploading.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
|
|
|
* @return mixed
|
2020-08-18 16:01:25 +02:00
|
|
|
*/
|
|
|
|
public function getFile()
|
|
|
|
{
|
|
|
|
if (gettype($this->file) !== 'array') {
|
|
|
|
return [$this->file];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->file;
|
|
|
|
}
|
|
|
|
}
|