2018-09-25 13:30:50 +02:00
|
|
|
<?php namespace BookStack\Entities;
|
|
|
|
|
|
|
|
use BookStack\Actions\Activity;
|
|
|
|
use BookStack\Actions\Comment;
|
2018-09-25 17:58:03 +02:00
|
|
|
use BookStack\Actions\Tag;
|
|
|
|
use BookStack\Actions\View;
|
2018-09-25 13:30:50 +02:00
|
|
|
use BookStack\Auth\Permissions\EntityPermission;
|
|
|
|
use BookStack\Auth\Permissions\JointPermission;
|
2019-09-20 01:18:28 +02:00
|
|
|
use BookStack\Facades\Permissions;
|
2018-09-25 13:30:50 +02:00
|
|
|
use BookStack\Ownable;
|
2018-09-25 19:00:40 +02:00
|
|
|
use Carbon\Carbon;
|
2019-10-05 13:55:01 +02:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2017-09-03 17:37:51 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
|
|
|
2018-09-25 19:00:40 +02:00
|
|
|
/**
|
|
|
|
* Class Entity
|
|
|
|
* The base class for book-like items such as pages, chapters & books.
|
|
|
|
* This is not a database model in itself but extended.
|
|
|
|
*
|
2019-09-19 19:03:17 +02:00
|
|
|
* @property int $id
|
2018-09-25 19:00:40 +02:00
|
|
|
* @property string $name
|
|
|
|
* @property string $slug
|
|
|
|
* @property Carbon $created_at
|
|
|
|
* @property Carbon $updated_at
|
|
|
|
* @property int $created_by
|
|
|
|
* @property int $updated_by
|
|
|
|
* @property boolean $restricted
|
2019-10-05 13:55:01 +02:00
|
|
|
* @property Collection $tags
|
|
|
|
* @method static Entity|Builder visible()
|
|
|
|
* @method static Entity|Builder hasPermission(string $permission)
|
|
|
|
* @method static Builder withLastView()
|
|
|
|
* @method static Builder withViewCount()
|
2018-09-25 19:00:40 +02:00
|
|
|
*
|
|
|
|
* @package BookStack\Entities
|
|
|
|
*/
|
2016-05-07 15:29:43 +02:00
|
|
|
class Entity extends Ownable
|
2015-08-16 15:51:45 +02:00
|
|
|
{
|
2015-11-21 18:22:14 +01:00
|
|
|
|
2018-03-24 19:46:31 +01:00
|
|
|
/**
|
|
|
|
* @var string - Name of property where the main text content is found
|
|
|
|
*/
|
2017-03-27 12:57:33 +02:00
|
|
|
public $textField = 'description';
|
2017-01-01 17:57:47 +01:00
|
|
|
|
2018-03-24 19:46:31 +01:00
|
|
|
/**
|
|
|
|
* @var float - Multiplier for search indexing.
|
|
|
|
*/
|
|
|
|
public $searchFactor = 1.0;
|
|
|
|
|
2018-09-25 13:30:50 +02:00
|
|
|
/**
|
2019-10-05 13:55:01 +02:00
|
|
|
* Get the entities that are visible to the current user.
|
|
|
|
*/
|
|
|
|
public function scopeVisible(Builder $query)
|
|
|
|
{
|
|
|
|
return $this->scopeHasPermission($query, 'view');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scope the query to those entities that the current user has the given permission for.
|
2018-09-25 13:30:50 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function scopeHasPermission(Builder $query, string $permission)
|
2018-09-25 13:30:50 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
return Permissions::restrictEntityQuery($query, $permission);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query scope to get the last view from the current user.
|
|
|
|
*/
|
|
|
|
public function scopeWithLastView(Builder $query)
|
|
|
|
{
|
|
|
|
$viewedAtQuery = View::query()->select('updated_at')
|
|
|
|
->whereColumn('viewable_id', '=', $this->getTable() . '.id')
|
|
|
|
->where('viewable_type', '=', $this->getMorphClass())
|
|
|
|
->where('user_id', '=', user()->id)
|
|
|
|
->take(1);
|
|
|
|
|
|
|
|
return $query->addSelect(['last_viewed_at' => $viewedAtQuery]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query scope to get the total view count of the entities.
|
|
|
|
*/
|
|
|
|
public function scopeWithViewCount(Builder $query)
|
|
|
|
{
|
|
|
|
$viewCountQuery = View::query()->selectRaw('SUM(views) as view_count')
|
|
|
|
->whereColumn('viewable_id', '=', $this->getTable() . '.id')
|
|
|
|
->where('viewable_type', '=', $this->getMorphClass())->take(1);
|
|
|
|
|
|
|
|
$query->addSelect(['view_count' => $viewCountQuery]);
|
2018-09-25 13:30:50 +02:00
|
|
|
}
|
|
|
|
|
2015-08-16 15:51:45 +02:00
|
|
|
/**
|
|
|
|
* Compares this entity to another given entity.
|
|
|
|
* Matches by comparing class and id.
|
|
|
|
* @param $entity
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function matches($entity)
|
|
|
|
{
|
|
|
|
return [get_class($this), $this->id] === [get_class($entity), $entity->id];
|
|
|
|
}
|
2015-08-16 19:59:23 +02:00
|
|
|
|
2015-11-29 19:06:55 +01:00
|
|
|
/**
|
|
|
|
* Checks if an entity matches or contains another given entity.
|
|
|
|
* @param Entity $entity
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function matchesOrContains(Entity $entity)
|
|
|
|
{
|
|
|
|
$matches = [get_class($this), $this->id] === [get_class($entity), $entity->id];
|
|
|
|
|
2018-01-28 17:58:52 +01:00
|
|
|
if ($matches) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-11-29 19:06:55 +01:00
|
|
|
|
2016-01-02 15:48:35 +01:00
|
|
|
if (($entity->isA('chapter') || $entity->isA('page')) && $this->isA('book')) {
|
2015-11-29 19:06:55 +01:00
|
|
|
return $entity->book_id === $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity->isA('page') && $this->isA('chapter')) {
|
|
|
|
return $entity->chapter_id === $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-16 19:59:23 +02:00
|
|
|
/**
|
2015-11-21 18:22:14 +01:00
|
|
|
* Gets the activity objects for this entity.
|
2019-10-05 13:55:01 +02:00
|
|
|
* @return MorphMany
|
2015-08-16 19:59:23 +02:00
|
|
|
*/
|
|
|
|
public function activity()
|
|
|
|
{
|
2019-09-20 01:18:28 +02:00
|
|
|
return $this->morphMany(Activity::class, 'entity')
|
|
|
|
->orderBy('created_at', 'desc');
|
2015-08-16 19:59:23 +02:00
|
|
|
}
|
|
|
|
|
2015-11-21 18:22:14 +01:00
|
|
|
/**
|
|
|
|
* Get View objects for this entity.
|
|
|
|
*/
|
|
|
|
public function views()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->morphMany(View::class, 'viewable');
|
2015-11-21 18:22:14 +01:00
|
|
|
}
|
|
|
|
|
2016-05-06 21:33:08 +02:00
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Get the Tag models that have been user assigned to this entity.
|
2019-10-05 13:55:01 +02:00
|
|
|
* @return MorphMany
|
2016-05-06 21:33:08 +02:00
|
|
|
*/
|
2016-05-13 22:20:21 +02:00
|
|
|
public function tags()
|
2016-05-06 21:33:08 +02:00
|
|
|
{
|
2016-05-14 21:02:00 +02:00
|
|
|
return $this->morphMany(Tag::class, 'entity')->orderBy('order', 'asc');
|
2016-05-06 21:33:08 +02:00
|
|
|
}
|
|
|
|
|
2017-09-03 17:37:51 +02:00
|
|
|
/**
|
|
|
|
* Get the comments for an entity
|
2017-09-09 16:56:24 +02:00
|
|
|
* @param bool $orderByCreated
|
|
|
|
* @return MorphMany
|
2017-09-03 17:37:51 +02:00
|
|
|
*/
|
2017-09-09 16:56:24 +02:00
|
|
|
public function comments($orderByCreated = true)
|
2017-09-03 17:37:51 +02:00
|
|
|
{
|
2017-09-09 16:56:24 +02:00
|
|
|
$query = $this->morphMany(Comment::class, 'entity');
|
|
|
|
return $orderByCreated ? $query->orderBy('created_at', 'asc') : $query;
|
2017-09-03 17:37:51 +02:00
|
|
|
}
|
|
|
|
|
2017-03-19 13:48:44 +01:00
|
|
|
/**
|
|
|
|
* Get the related search terms.
|
2019-10-05 13:55:01 +02:00
|
|
|
* @return MorphMany
|
2017-03-19 13:48:44 +01:00
|
|
|
*/
|
|
|
|
public function searchTerms()
|
|
|
|
{
|
|
|
|
return $this->morphMany(SearchTerm::class, 'entity');
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:43:28 +02:00
|
|
|
/**
|
2016-02-28 11:49:41 +01:00
|
|
|
* Get this entities restrictions.
|
|
|
|
*/
|
2016-05-01 22:20:50 +02:00
|
|
|
public function permissions()
|
2016-02-28 11:49:41 +01:00
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->morphMany(EntityPermission::class, 'restrictable');
|
2016-02-28 11:49:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this entity has a specific restriction set against it.
|
|
|
|
* @param $role_id
|
|
|
|
* @param $action
|
2015-08-31 12:43:28 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-02-28 11:49:41 +01:00
|
|
|
public function hasRestriction($role_id, $action)
|
2015-08-31 12:43:28 +02:00
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->permissions()->where('role_id', '=', $role_id)
|
2016-04-24 17:54:20 +02:00
|
|
|
->where('action', '=', $action)->count() > 0;
|
|
|
|
}
|
|
|
|
|
2016-04-23 19:14:26 +02:00
|
|
|
/**
|
2016-05-01 22:20:50 +02:00
|
|
|
* Get the entity jointPermissions this is connected to.
|
2019-10-05 13:55:01 +02:00
|
|
|
* @return MorphMany
|
2016-04-23 19:14:26 +02:00
|
|
|
*/
|
2016-05-01 22:20:50 +02:00
|
|
|
public function jointPermissions()
|
2016-04-23 19:14:26 +02:00
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->morphMany(JointPermission::class, 'entity');
|
2016-04-23 19:14:26 +02:00
|
|
|
}
|
|
|
|
|
2015-08-31 21:11:44 +02:00
|
|
|
/**
|
2020-09-26 18:00:17 +02:00
|
|
|
* Check if this instance or class is a certain type of entity.
|
|
|
|
* Examples of $type are 'page', 'book', 'chapter'
|
2015-08-31 21:11:44 +02:00
|
|
|
*/
|
2020-09-26 18:00:17 +02:00
|
|
|
public static function isA(string $type): bool
|
2015-08-31 12:43:28 +02:00
|
|
|
{
|
2016-04-23 19:14:26 +02:00
|
|
|
return static::getType() === strtolower($type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get entity type.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function getType()
|
|
|
|
{
|
|
|
|
return strtolower(static::getClassName());
|
2015-08-31 12:43:28 +02:00
|
|
|
}
|
|
|
|
|
2016-05-06 21:33:08 +02:00
|
|
|
/**
|
|
|
|
* Get an instance of an entity of the given type.
|
|
|
|
* @param $type
|
|
|
|
* @return Entity
|
|
|
|
*/
|
|
|
|
public static function getEntityInstance($type)
|
|
|
|
{
|
2018-09-16 20:34:09 +02:00
|
|
|
$types = ['Page', 'Book', 'Chapter', 'Bookshelf'];
|
2016-05-06 21:33:08 +02:00
|
|
|
$className = str_replace([' ', '-', '_'], '', ucwords($type));
|
|
|
|
if (!in_array($className, $types)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-09-25 13:30:50 +02:00
|
|
|
return app('BookStack\\Entities\\' . $className);
|
2016-05-06 21:33:08 +02:00
|
|
|
}
|
|
|
|
|
2015-12-05 15:41:51 +01:00
|
|
|
/**
|
2016-02-27 20:24:42 +01:00
|
|
|
* Gets a limited-length version of the entities name.
|
2015-12-05 15:41:51 +01:00
|
|
|
*/
|
2020-09-19 13:06:45 +02:00
|
|
|
public function getShortName(int $length = 25): string
|
2015-12-05 15:41:51 +01:00
|
|
|
{
|
2018-09-11 20:42:25 +02:00
|
|
|
if (mb_strlen($this->name) <= $length) {
|
2018-01-28 17:58:52 +01:00
|
|
|
return $this->name;
|
|
|
|
}
|
2018-09-11 20:42:25 +02:00
|
|
|
return mb_substr($this->name, 0, $length - 3) . '...';
|
2015-12-05 15:41:51 +01:00
|
|
|
}
|
|
|
|
|
2017-03-19 13:48:44 +01:00
|
|
|
/**
|
|
|
|
* Get the body text of this entity.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getText()
|
|
|
|
{
|
|
|
|
return $this->{$this->textField};
|
|
|
|
}
|
|
|
|
|
2018-10-16 19:49:16 +02:00
|
|
|
/**
|
|
|
|
* Get an excerpt of this entity's descriptive content to the specified length.
|
|
|
|
* @param int $length
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getExcerpt(int $length = 100)
|
|
|
|
{
|
|
|
|
$text = $this->getText();
|
|
|
|
if (mb_strlen($text) > $length) {
|
|
|
|
$text = mb_substr($text, 0, $length-3) . '...';
|
|
|
|
}
|
2019-04-06 19:47:27 +02:00
|
|
|
return trim($text);
|
2018-10-16 19:49:16 +02:00
|
|
|
}
|
|
|
|
|
2017-04-29 23:01:43 +02:00
|
|
|
/**
|
|
|
|
* Get the url of this entity
|
|
|
|
* @param $path
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-04-14 19:00:16 +02:00
|
|
|
public function getUrl($path = '/')
|
2018-01-28 17:58:52 +01:00
|
|
|
{
|
2018-04-14 19:00:16 +02:00
|
|
|
return $path;
|
2018-01-28 17:58:52 +01:00
|
|
|
}
|
2019-09-20 01:18:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Rebuild the permissions for this entity.
|
|
|
|
*/
|
|
|
|
public function rebuildPermissions()
|
|
|
|
{
|
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
2020-05-23 01:28:41 +02:00
|
|
|
Permissions::buildJointPermissionsForEntity(clone $this);
|
2019-09-20 01:18:28 +02:00
|
|
|
}
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
/**
|
|
|
|
* Index the current entity for search
|
|
|
|
*/
|
|
|
|
public function indexForSearch()
|
|
|
|
{
|
|
|
|
$searchService = app()->make(SearchService::class);
|
2020-05-23 01:28:41 +02:00
|
|
|
$searchService->indexEntity(clone $this);
|
2019-10-05 13:55:01 +02:00
|
|
|
}
|
|
|
|
|
2019-09-20 01:18:28 +02:00
|
|
|
/**
|
|
|
|
* Generate and set a new URL slug for this model.
|
|
|
|
*/
|
|
|
|
public function refreshSlug(): string
|
|
|
|
{
|
|
|
|
$generator = new SlugGenerator($this);
|
|
|
|
$this->slug = $generator->generate();
|
|
|
|
return $this->slug;
|
|
|
|
}
|
2015-08-16 15:51:45 +02:00
|
|
|
}
|