FileService<Tk,Tv>

Interface for storing and retrieving uploaded files.

interface FileService<Tk,Tv>
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Public
ReturnsSignature and Description
void
delete(mixed $id)

Deletes a stored file.

StreamInterface
messageStream(mixed $id)

Gets the file as a PSR-7 Stream.

?Tv
read(mixed $id)

Gets a stored file.

Traversable<Tv>
readAll(ConstMap<string,mixed> $criteria)

Finds several files by some arbitrary criteria.

resource
resource(mixed $id)

Gets a stream resource for the given ID.

Tk
store(UploadedFileInterface $file, ConstMap<string,mixed> $metadata)

Stores an uploaded file.

void
stream(Tv $file, StreamInterface $stream)

Efficiently writes the contents of a file to a Stream.

Method Details

delete

abstract public function delete(mixed $id)

Deletes a stored file.

Parameters
NameTypeDescription
$idmixed

The document identifier, either a string or ObjectID

messageStream

abstract public function messageStream(mixed $id)

Gets the file as a PSR-7 Stream.

Parameters
NameTypeDescription
$idmixed

The document identifier, either a string or ObjectID

Returns
TypeDescription
StreamInterface

The readable stream

read

abstract public function read(mixed $id)

Gets a stored file.

Parameters
NameTypeDescription
$idmixed

The document identifier, either a string or ObjectID

Returns
TypeDescription
?Tv

The stored file

readAll

abstract public function readAll(ConstMap<string,mixed> $criteria)

Finds several files by some arbitrary criteria.

Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

Returns
TypeDescription
Traversable<Tv>

The objects found

resource

abstract public function resource(mixed $id)

Gets a stream resource for the given ID.

Parameters
NameTypeDescription
$idmixed

The document identifier, either a string or ObjectID

Returns
TypeDescription
resource

The stream

store

abstract public function store(UploadedFileInterface $file, ConstMap<string,mixed> $metadata)

Stores an uploaded file.

You should specify contentType in the metadata Map.

Parameters
NameTypeDescription
$fileUploadedFileInterface

The uploaded file

$metadataConstMap<string,mixed>

Any additional fields to persist. At the very least, try to supply contentType.

Returns
TypeDescription
Tk

The document ID of the stored file

stream

abstract public function stream(Tv $file, StreamInterface $stream)

Efficiently writes the contents of a file to a Stream.

Parameters
NameTypeDescription
$fileTv

The file

$streamStreamInterface

The stream