MongoHelper

Can be used by any class which accesses MongoDB.

trait MongoHelper
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Protected
ReturnsSignature and Description
Ta
ensure<Ta>(mixed $id, ?Ta $document)

Makes sure a document isn't null.

UTCDateTime
now()

Gets the current time.

?UTCDateTime
toDate(mixed $date)

Tries to parse a date.

ObjectID
toId(mixed $id)

Transforms a literal into a MongoDB ObjectId.

ConstVector<ObjectID>
toIds(ConstVector<mixed> $ids)

Transforms literals into MongoDB ObjectIds.

Method Details

ensure

protected function ensure<Ta>(mixed $id, ?Ta $document)

Makes sure a document isn't null.

Parameters
NameTypeDescription
$idmixed

The document identifier, either a \MongoDB\BSON\ObjectID or string

$document?Ta

The document to check

Returns
TypeDescription
Ta

Returns $document

Throws
TypeConditions
Unretrievable

if the document is null

now

protected function now()

Gets the current time.

Returns
TypeDescription
UTCDateTime

The current time

toDate

protected function toDate(mixed $date)

Tries to parse a date.

Parameters
NameTypeDescription
$datemixed

The possible string date value, a string, a \DateTimeInterface, or a \MongoDB\BSON\UTCDateTime

Returns
TypeDescription
?UTCDateTime

The MongoDB datetime or null

toId

protected function toId(mixed $id)

Transforms a literal into a MongoDB ObjectId.

Parameters
NameTypeDescription
$idmixed

If it's an ObjectID, returns that, otherwise creates a new ObjectID.

Returns
TypeDescription
ObjectID

The ObjectID

toIds

protected function toIds(ConstVector<mixed> $ids)

Transforms literals into MongoDB ObjectIds.

Parameters
NameTypeDescription
$idsConstVector<mixed>

Goes through each entry, converts to ObjectID

Returns
TypeDescription
ConstVector<ObjectID>

The ObjectIDs