2015-08-16 15:51:45 +02:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 20:31:09 +02:00
|
|
|
namespace BookStack;
|
2015-08-16 15:51:45 +02:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2015-09-04 18:50:52 +02:00
|
|
|
abstract class Entity extends Model
|
2015-08-16 15:51:45 +02:00
|
|
|
{
|
2015-11-21 18:22:14 +01:00
|
|
|
|
2015-08-16 15:51:45 +02:00
|
|
|
/**
|
|
|
|
* Relation for the user that created this entity.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function createdBy()
|
|
|
|
{
|
2015-09-10 20:31:09 +02:00
|
|
|
return $this->belongsTo('BookStack\User', 'created_by');
|
2015-08-16 15:51:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Relation for the user that updated this entity.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function updatedBy()
|
|
|
|
{
|
2015-09-10 20:31:09 +02:00
|
|
|
return $this->belongsTo('BookStack\User', 'updated_by');
|
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-21 18:22:14 +01:00
|
|
|
* Gets the activity objects for this entity.
|
2015-08-16 19:59:23 +02:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphMany
|
|
|
|
*/
|
|
|
|
public function activity()
|
|
|
|
{
|
2015-09-10 20:31:09 +02:00
|
|
|
return $this->morphMany('BookStack\Activity', '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.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function views()
|
|
|
|
{
|
|
|
|
return $this->morphMany('BookStack\View', 'viewable');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get just the views for the current user.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function userViews()
|
|
|
|
{
|
|
|
|
return $this->views()->where('user_id', '=', auth()->user()->id);
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:43:28 +02:00
|
|
|
/**
|
|
|
|
* Allows checking of the exact class, Used to check entity type.
|
|
|
|
* Cleaner method for is_a.
|
|
|
|
* @param $type
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isA($type)
|
|
|
|
{
|
|
|
|
return $this->getName() === strtolower($type);
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:11:44 +02:00
|
|
|
/**
|
|
|
|
* Gets the class name.
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-08-31 12:43:28 +02:00
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
$fullClassName = get_class($this);
|
|
|
|
return strtolower(array_slice(explode('\\', $fullClassName), -1, 1)[0]);
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:11:44 +02:00
|
|
|
/**
|
|
|
|
* Perform a full-text search on this entity.
|
|
|
|
* @param string[] $fieldsToSearch
|
|
|
|
* @param string[] $terms
|
2015-09-01 16:35:11 +02:00
|
|
|
* @param string[] array $wheres
|
2015-08-31 21:11:44 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-09-01 16:35:11 +02:00
|
|
|
public static function fullTextSearch($fieldsToSearch, $terms, $wheres = [])
|
2015-08-31 21:11:44 +02:00
|
|
|
{
|
|
|
|
$termString = '';
|
2015-09-01 16:35:11 +02:00
|
|
|
foreach ($terms as $term) {
|
2015-08-31 21:11:44 +02:00
|
|
|
$termString .= $term . '* ';
|
|
|
|
}
|
|
|
|
$fields = implode(',', $fieldsToSearch);
|
2015-09-01 16:35:11 +02:00
|
|
|
$search = static::whereRaw('MATCH(' . $fields . ') AGAINST(? IN BOOLEAN MODE)', [$termString]);
|
|
|
|
foreach ($wheres as $whereTerm) {
|
|
|
|
$search->where($whereTerm[0], $whereTerm[1], $whereTerm[2]);
|
|
|
|
}
|
|
|
|
return $search->get();
|
2015-08-31 21:11:44 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 18:50:52 +02:00
|
|
|
/**
|
|
|
|
* Get the url for this item.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
abstract public function getUrl();
|
|
|
|
|
2015-08-16 15:51:45 +02:00
|
|
|
}
|