class PostRepository

Methods

Post>
query()

<p>Get a new query builder for the posts table.</p>

Post>
queryVisibleTo(User|null $user = null)

No description

findOrFail(int $id, User $actor = null)

<p>Find a post by ID, optionally making sure it is visible to a certain user, or throw an exception.</p>

Collection
findWhere(array $where = [], User $actor = null, array $sort = [], int $count = null, int $start = 0)

<p>Find posts that match certain conditions, optionally making sure they are visible to a certain user, and/or using other criteria.</p>

array
filterVisibleIds(array $ids, User $actor)

<p>Filter a list of post IDs to only include posts that are visible to a certain user.</p>

int
getIndexForNumber(int $discussionId, int $number, User $actor = null)

<p>Get the position within a discussion where a post with a certain number is. If the post with that number does not exist, the index of the closest post to it will be returned.</p>

Post>
queryIds(array $ids, User $actor = null)

No description

Details

Post> query()

<p>Get a new query builder for the posts table.</p>

Return Value

Post>

Post> queryVisibleTo(User|null $user = null)

Parameters

User|null $user

Return Value

Post>

Post findOrFail(int $id, User $actor = null)

<p>Find a post by ID, optionally making sure it is visible to a certain user, or throw an exception.</p>

Parameters

int $id
User $actor

Return Value

Post

Exceptions

ModelNotFoundException

Collection findWhere(array $where = [], User $actor = null, array $sort = [], int $count = null, int $start = 0)

<p>Find posts that match certain conditions, optionally making sure they are visible to a certain user, and/or using other criteria.</p>

Parameters

array $where
User $actor
array $sort
int $count
int $start

Return Value

Collection

array filterVisibleIds(array $ids, User $actor)

<p>Filter a list of post IDs to only include posts that are visible to a certain user.</p>

Parameters

array $ids
User $actor

Return Value

array

int getIndexForNumber(int $discussionId, int $number, User $actor = null)

<p>Get the position within a discussion where a post with a certain number is. If the post with that number does not exist, the index of the closest post to it will be returned.</p>

Parameters

int $discussionId
int $number
User $actor

Return Value

int

protected Post> queryIds(array $ids, User $actor = null)

Parameters

array $ids
User $actor

Return Value

Post>