UploadGuard

A helper for dealing with file upload validation.

class UploadGuard
Copyright
2015-2016 Appertly
Since
0.4.6
License
Apache-2.0

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(finfo $finfo)

Creates a new UploadGuard.

Instance Methods

Public
ReturnsSignature and Description
string
getMimeType(UploadedFileInterface $file, string $field, ?ConstSet<string> $mimeTypes = null)

Validates the uploaded files in a request.

ConstVector<UploadedFileInterface>
getUploadedFiles(ServerRequestInterface $request, string $field, ?int $maxSize = null)

Gets the list of uploaded files, validating file size.

Method Details

__construct

public function __construct(finfo $finfo)

Creates a new UploadGuard.

Parameters
NameTypeDescription
$finfofinfo

The MIME detector

getMimeType

public function getMimeType(UploadedFileInterface $file, string $field, ?ConstSet<string> $mimeTypes = null)

Validates the uploaded files in a request.

Parameters
NameTypeDescription
$fileUploadedFileInterface

The uploaded file

$fieldstring
$mimeTypes?ConstSet<string>

A set of allowed MIME types (e.g. image/svg+xml, 'video/*')

Returns
TypeDescription
string

The MIME type

Throws
TypeConditions
Invalid

if the file aren't valid

getUploadedFiles

public function getUploadedFiles(ServerRequestInterface $request, string $field, ?int $maxSize = null)

Gets the list of uploaded files, validating file size.

Parameters
NameTypeDescription
$requestServerRequestInterface

The PSR HTTP Request

$fieldstring

The request field containing the files

$maxSize?int

The maximum allowed file size

Returns
TypeDescription
ConstVector<UploadedFileInterface>

The uploaded files

Throws
TypeConditions
Invalid

if any files aren't valid