MongoIndexHelper

Creates indexes or anything like that at deploy time.

trait MongoIndexHelper

Requires the mongodb/mongodb composer package to be installed.

Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Protected
ReturnsSignature and Description
ConstVector<string>
createIndexes(Manager $manager, string $db, string $collection, ConstVector<MongoIndex> $indexes)

Creates some indexes in a collection.

ConstVector<mixed>
dropIndexes(Manager $manager, string $db, string $collection, ConstSet<string> $names)

Deletes some indexes in a collection.

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

createIndexes

protected function createIndexes(Manager $manager, string $db, string $collection, ConstVector<MongoIndex> $indexes)

Creates some indexes in a collection.

See
https://docs.mongodb.com/manual/reference/command/createIndexes/
Parameters
NameTypeDescription
$managerManager

The MongoDB manager

$dbstring

The database name

$collectionstring

The collection name

$indexesConstVector<MongoIndex>

The indexes to create

Returns
TypeDescription
ConstVector<string>

The names of the created indexes

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Violating

If a constraint is violated

Inoperable

If an API is used incorrectly

Generic

If any other database problem occurs

dropIndexes

protected function dropIndexes(Manager $manager, string $db, string $collection, ConstSet<string> $names)

Deletes some indexes in a collection.

This method will first check for the existence of the supplied indexes and if found, will drop them.

See
https://docs.mongodb.com/manual/reference/command/dropIndexes/
Parameters
NameTypeDescription
$managerManager

The MongoDB manager

$dbstring

The database name

$collectionstring

The collection name

$namesConstSet<string>
Returns
TypeDescription
ConstVector<mixed>

The names of the created indexes

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Violating

If a constraint is violated

Inoperable

If an API is used incorrectly

Generic

If any other database problem occurs

ensure

Inherited from MongoHelper

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

Inherited from MongoHelper

protected function now()

Gets the current time.

Returns
TypeDescription
UTCDateTime

The current time

toDate

Inherited from MongoHelper

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

Inherited from MongoHelper

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

Inherited from MongoHelper

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