mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
a33dbcb04a
Count and reference list would get references then attempt to load entities, which could fail to load if in the recycle bin. This updates the queries to effectively ignore references for items we can't see (in recycle bin). Added test to cover. For #4918
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace BookStack\References;
|
|
|
|
use BookStack\Entities\Models\Entity;
|
|
use BookStack\Entities\Tools\MixedEntityListLoader;
|
|
use BookStack\Permissions\PermissionApplicator;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class ReferenceFetcher
|
|
{
|
|
public function __construct(
|
|
protected PermissionApplicator $permissions,
|
|
protected MixedEntityListLoader $mixedEntityListLoader,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Query and return the references pointing to the given entity.
|
|
* Loads the commonly required relations while taking permissions into account.
|
|
*/
|
|
public function getReferencesToEntity(Entity $entity): Collection
|
|
{
|
|
$references = $this->queryReferencesToEntity($entity)->get();
|
|
$this->mixedEntityListLoader->loadIntoRelations($references->all(), 'from', true);
|
|
|
|
return $references;
|
|
}
|
|
|
|
/**
|
|
* Returns the count of references pointing to the given entity.
|
|
* Takes permissions into account.
|
|
*/
|
|
public function getReferenceCountToEntity(Entity $entity): int
|
|
{
|
|
return $this->queryReferencesToEntity($entity)->count();
|
|
}
|
|
|
|
protected function queryReferencesToEntity(Entity $entity): Builder
|
|
{
|
|
$baseQuery = Reference::query()
|
|
->where('to_type', '=', $entity->getMorphClass())
|
|
->where('to_id', '=', $entity->id)
|
|
->whereHas('from');
|
|
|
|
return $this->permissions->restrictEntityRelationQuery(
|
|
$baseQuery,
|
|
'references',
|
|
'from_id',
|
|
'from_type'
|
|
);
|
|
}
|
|
}
|