2016-05-06 21:33:08 +02:00
|
|
|
<?php namespace BookStack\Repos;
|
|
|
|
|
2016-05-13 22:20:21 +02:00
|
|
|
use BookStack\Tag;
|
2016-05-06 21:33:08 +02:00
|
|
|
use BookStack\Entity;
|
|
|
|
use BookStack\Services\PermissionService;
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Class TagRepo
|
2016-05-06 21:33:08 +02:00
|
|
|
* @package BookStack\Repos
|
|
|
|
*/
|
2016-05-13 22:20:21 +02:00
|
|
|
class TagRepo
|
2016-05-06 21:33:08 +02:00
|
|
|
{
|
|
|
|
|
2016-05-13 22:20:21 +02:00
|
|
|
protected $tag;
|
2016-05-06 21:33:08 +02:00
|
|
|
protected $entity;
|
|
|
|
protected $permissionService;
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* TagRepo constructor.
|
|
|
|
* @param Tag $attr
|
2016-05-06 21:33:08 +02:00
|
|
|
* @param Entity $ent
|
|
|
|
* @param PermissionService $ps
|
|
|
|
*/
|
2016-05-13 22:20:21 +02:00
|
|
|
public function __construct(Tag $attr, Entity $ent, PermissionService $ps)
|
2016-05-06 21:33:08 +02:00
|
|
|
{
|
2016-05-13 22:20:21 +02:00
|
|
|
$this->tag = $attr;
|
2016-05-06 21:33:08 +02:00
|
|
|
$this->entity = $ent;
|
|
|
|
$this->permissionService = $ps;
|
|
|
|
}
|
|
|
|
|
2016-05-07 15:29:43 +02:00
|
|
|
/**
|
|
|
|
* Get an entity instance of its particular type.
|
|
|
|
* @param $entityType
|
|
|
|
* @param $entityId
|
|
|
|
* @param string $action
|
|
|
|
*/
|
|
|
|
public function getEntity($entityType, $entityId, $action = 'view')
|
|
|
|
{
|
|
|
|
$entityInstance = $this->entity->getEntityInstance($entityType);
|
2016-05-13 22:20:21 +02:00
|
|
|
$searchQuery = $entityInstance->where('id', '=', $entityId)->with('tags');
|
2016-05-07 15:29:43 +02:00
|
|
|
$searchQuery = $this->permissionService->enforceEntityRestrictions($searchQuery, $action);
|
|
|
|
return $searchQuery->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Get all tags for a particular entity.
|
2016-05-07 15:29:43 +02:00
|
|
|
* @param string $entityType
|
|
|
|
* @param int $entityId
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getForEntity($entityType, $entityId)
|
|
|
|
{
|
|
|
|
$entity = $this->getEntity($entityType, $entityId);
|
|
|
|
if ($entity === null) return collect();
|
|
|
|
|
2016-05-13 22:20:21 +02:00
|
|
|
return $entity->tags;
|
2016-05-07 15:29:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Get tag name suggestions from scanning existing tag names.
|
2016-05-07 15:29:43 +02:00
|
|
|
* @param $searchTerm
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getNameSuggestions($searchTerm)
|
|
|
|
{
|
|
|
|
if ($searchTerm === '') return [];
|
2016-05-13 22:20:21 +02:00
|
|
|
$query = $this->tag->where('name', 'LIKE', $searchTerm . '%')->groupBy('name')->orderBy('name', 'desc');
|
|
|
|
$query = $this->permissionService->filterRestrictedEntityRelations($query, 'tags', 'entity_id', 'entity_type');
|
2016-05-07 15:29:43 +02:00
|
|
|
return $query->get(['name'])->pluck('name');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Save an array of tags to an entity
|
2016-05-07 15:29:43 +02:00
|
|
|
* @param Entity $entity
|
2016-05-13 22:20:21 +02:00
|
|
|
* @param array $tags
|
2016-05-07 15:29:43 +02:00
|
|
|
* @return array|\Illuminate\Database\Eloquent\Collection
|
|
|
|
*/
|
2016-05-13 22:20:21 +02:00
|
|
|
public function saveTagsToEntity(Entity $entity, $tags = [])
|
2016-05-07 15:29:43 +02:00
|
|
|
{
|
2016-05-13 22:20:21 +02:00
|
|
|
$entity->tags()->delete();
|
|
|
|
$newTags = [];
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if (trim($tag['name']) === '') continue;
|
|
|
|
$newTags[] = $this->newInstanceFromInput($tag);
|
2016-05-07 15:29:43 +02:00
|
|
|
}
|
|
|
|
|
2016-05-13 22:20:21 +02:00
|
|
|
return $entity->tags()->saveMany($newTags);
|
2016-05-07 15:29:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Create a new Tag instance from user input.
|
2016-05-07 15:29:43 +02:00
|
|
|
* @param $input
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
protected function newInstanceFromInput($input)
|
|
|
|
{
|
|
|
|
$name = trim($input['name']);
|
|
|
|
$value = isset($input['value']) ? trim($input['value']) : '';
|
|
|
|
// Any other modification or cleanup required can go here
|
|
|
|
$values = ['name' => $name, 'value' => $value];
|
2016-05-13 22:20:21 +02:00
|
|
|
return $this->tag->newInstance($values);
|
2016-05-07 15:29:43 +02:00
|
|
|
}
|
2016-05-06 21:33:08 +02:00
|
|
|
|
|
|
|
}
|