whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
RestAPI
/
Http
/
Requests
/
File
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/RestAPI/Http/Requests/File/FileStoreRequest.php
<?php namespace Modules\RestAPI\Http\Requests\File; use Froiden\RestAPI\Exceptions\UnauthorizedException; use Modules\RestAPI\Http\Requests\BaseRequest; class FileStoreRequest extends BaseRequest { /** * Determine if the user is authorized to make this request. * * @return bool * * @throws UnauthorizedException */ public function authorize() { $allowedTypes = ['expense-invoice', 'ticket-files']; // Employee not logged in, check type of file if (! api_user() && ! in_array(request()->get('type'), $allowedTypes)) { return false; } return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'type' => 'required|in:expense-invoice,logos,documents,photos,resumes,ticket-files', 'file' => 'mimes:jpeg,png,bmp,doc,docx,pdf,xls,xlsx,ppt,pptx,txt,zip|max:8192', ]; } }
Copyright ©2021 || Defacer Indonesia