AbstractDaoService<Ta>

Abstract DAO-backed Service

abstract class AbstractDaoService<Ta> implements EntityRepo<Ta>
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Properties

Protected
NameTypeSummary
$gatekeeperGatekeeper

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(Gatekeeper $gatekeeper)

Creates a new AbstractDaoService.

Instance Methods

Public
ReturnsSignature and Description
int
countAll(ConstMap<string,mixed> $criteria)

Counts several records by some arbitrary criteria.

Traversable<Ta>
findAll(ConstMap<string,mixed> $criteria, ?Pagination $pagination = null, ?bool $totalCount = false)

Finds several records by some arbitrary criteria.

?Ta
findById(mixed $id)

Gets a single document by ID.

?Ta
findOne(ConstMap<string,mixed> $criteria)

Finds a single record by some arbitrary criteria.

Ta
get(mixed $id)

Gets a single document by ID, throwing an exception if it's not found.

Traversable<Ta>
getAll(ConstVector<mixed> $ids)

Gets several documents by ID.

ImmMap<string,Ta>
getInstanceMap(Traversable<Ta> $entities)

Gets a Map that relates identifier to instance

string

Gets the type of entity produced, mainly for ACL reasons.

Protected
ReturnsSignature and Description
Ta
getAndAssert(mixed $id, string $verb)

Gets the entity and asserts an ACL permission.

EntityRepo<Ta>

Gets the DAO.

Ta
getForUpdate(mixed $id)

Gets the record, but tests the 'write' permission

Property Details

$gatekeeper

protected Gatekeeper $gatekeeper

Method Details

__construct

public function __construct(Gatekeeper $gatekeeper)

Creates a new AbstractDaoService.

Parameters
NameTypeDescription
$gatekeeperGatekeeper

The security gatekeeper

countAll

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

Counts several records by some arbitrary criteria.

Since
0.6.0
Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

Returns
TypeDescription
int

The count of the documents

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findAll

public function findAll(ConstMap<string,mixed> $criteria, ?Pagination $pagination = null, ?bool $totalCount = false)

Finds several records by some arbitrary criteria.

Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

$pagination?Pagination

Optional pagination parameters

$totalCount?bool

Return a CursorSubset that includes the total number of records. This is only done if $pagination is not using the defaults.

Returns
TypeDescription
Traversable<Ta>

The objects found or null if none

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findById

public function findById(mixed $id)

Gets a single document by ID.

Parameters
NameTypeDescription
$idmixed

The document identifier

Returns
TypeDescription
?Ta

The entity

Throws
TypeConditions
Forbidden

If the user has no access

Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

findOne

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

Finds a single record by some arbitrary criteria.

Parameters
NameTypeDescription
$criteriaConstMap<string,mixed>

Field to value pairs

Returns
TypeDescription
?Ta

The object found or null if none

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

get

public function get(mixed $id)

Gets a single document by ID, throwing an exception if it's not found.

Parameters
NameTypeDescription
$idmixed

The document identifier

Returns
TypeDescription
Ta

The entity

Throws
TypeConditions
Forbidden

If the user has no access

Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Generic

If any other database problem occurs

getAll

public function getAll(ConstVector<mixed> $ids)

Gets several documents by ID.

Parameters
NameTypeDescription
$idsConstVector<mixed>

Array of identifiers

Returns
TypeDescription
Traversable<Ta>

The results

Throws
TypeConditions
Forbidden

If the user has no access

Unreachable

If the connection fails

Unretrievable

If the result cannot be returned

Generic

If any other database problem occurs

getAndAssert

protected function getAndAssert(mixed $id, string $verb)

Gets the entity and asserts an ACL permission.

Since
0.5.1
Parameters
NameTypeDescription
$idmixed

The entity id

$verbstring

The verb (e.g. 'read', 'write')

Returns
TypeDescription
Ta

The entity

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Generic

If any other database problem occurs

Forbidden

If the user has no access

getDao

abstract protected function getDao()

Gets the DAO.

Returns
TypeDescription
EntityRepo<Ta>

The backing DAO

getForUpdate

protected function getForUpdate(mixed $id)

Gets the record, but tests the 'write' permission

Deprecated
Since 0.5.1. Use `getAndAssert($id, 'write')` instead
Scheduled for removal in 1.0.0
Parameters
NameTypeDescription
$idmixed

The entity id

Returns
TypeDescription
Ta

The entity

Throws
TypeConditions
Unreachable

If the connection fails

Unretrievable

If the document doesn't exist

Generic

If any other database problem occurs

Forbidden

If the user has no access

getInstanceMap

public function getInstanceMap(Traversable<Ta> $entities)

Gets a Map that relates identifier to instance

Parameters
NameTypeDescription
$entitiesTraversable<Ta>

The entities to "zip"

Returns
TypeDescription
ImmMap<string,Ta>

The instances keyed by identifier

getType

public function getType()

Gets the type of entity produced, mainly for ACL reasons.

Returns
TypeDescription
string

The entity type