2021-06-26 11:23:15 -04:00
< ? php
namespace BookStack\Entities\Tools ;
2018-09-25 07:30:50 -04:00
use BookStack\Auth\Permissions\PermissionService ;
2021-03-10 17:51:18 -05:00
use BookStack\Auth\User ;
2020-11-21 19:17:45 -05:00
use BookStack\Entities\EntityProvider ;
2021-11-08 10:24:49 -05:00
use BookStack\Entities\Models\BookChild ;
2020-11-21 19:17:45 -05:00
use BookStack\Entities\Models\Entity ;
2021-11-08 06:41:14 -05:00
use BookStack\Entities\Models\Page ;
2021-11-08 09:12:40 -05:00
use BookStack\Entities\Models\SearchTerm ;
2018-09-25 13:00:40 -04:00
use Illuminate\Database\Eloquent\Builder as EloquentBuilder ;
2021-11-08 06:04:27 -05:00
use Illuminate\Database\Eloquent\Collection as EloquentCollection ;
2021-11-08 10:24:49 -05:00
use Illuminate\Database\Eloquent\Relations\BelongsTo ;
2017-03-27 06:57:33 -04:00
use Illuminate\Database\Query\Builder ;
2017-04-15 14:16:07 -04:00
use Illuminate\Support\Collection ;
2021-11-08 06:04:27 -05:00
use Illuminate\Support\Facades\DB ;
2019-09-13 18:58:40 -04:00
use Illuminate\Support\Str ;
2021-11-08 09:12:40 -05:00
use SplObjectStorage ;
2017-03-19 08:48:44 -04:00
2020-11-21 19:17:45 -05:00
class SearchRunner
2017-03-19 08:48:44 -04:00
{
2018-09-25 13:00:40 -04:00
/**
* @ var EntityProvider
*/
protected $entityProvider ;
2018-09-23 07:34:30 -04:00
/**
2018-09-25 13:00:40 -04:00
* @ var PermissionService
2018-09-23 07:34:30 -04:00
*/
2018-09-25 13:00:40 -04:00
protected $permissionService ;
2017-03-27 13:05:34 -04:00
/**
2021-06-26 11:23:15 -04:00
* Acceptable operators to be used in a query .
*
2017-03-27 13:05:34 -04:00
* @ var array
*/
protected $queryOperators = [ '<=' , '>=' , '=' , '<' , '>' , 'like' , '!=' ];
2021-11-08 09:12:40 -05:00
/**
* Retain a cache of score adjusted terms for specific search options .
* From PHP >= 8 this can be made into a WeakMap instead .
*
* @ var SplObjectStorage
*/
protected $termAdjustmentCache ;
2021-11-08 06:04:27 -05:00
public function __construct ( EntityProvider $entityProvider , PermissionService $permissionService )
2017-03-19 08:48:44 -04:00
{
2018-09-25 13:00:40 -04:00
$this -> entityProvider = $entityProvider ;
2017-03-26 14:24:57 -04:00
$this -> permissionService = $permissionService ;
2021-11-08 09:12:40 -05:00
$this -> termAdjustmentCache = new SplObjectStorage ();
2017-03-19 08:48:44 -04:00
}
2017-03-27 06:57:33 -04:00
/**
* Search all entities in the system .
2020-06-27 08:29:00 -04:00
* The provided count is for each entity to search ,
2021-11-05 20:32:01 -04:00
* Total returned could be larger and not guaranteed .
2017-03-27 06:57:33 -04:00
*/
2020-06-27 08:29:00 -04:00
public function searchEntities ( SearchOptions $searchOpts , string $entityType = 'all' , int $page = 1 , int $count = 20 , string $action = 'view' ) : array
2017-03-19 08:48:44 -04:00
{
2018-09-25 13:00:40 -04:00
$entityTypes = array_keys ( $this -> entityProvider -> all ());
2017-04-09 15:59:57 -04:00
$entityTypesToSearch = $entityTypes ;
if ( $entityType !== 'all' ) {
$entityTypesToSearch = $entityType ;
2021-06-26 11:23:15 -04:00
} elseif ( isset ( $searchOpts -> filters [ 'type' ])) {
2020-06-27 08:29:00 -04:00
$entityTypesToSearch = explode ( '|' , $searchOpts -> filters [ 'type' ]);
2017-04-09 15:59:57 -04:00
}
2018-03-24 14:46:31 -04:00
$results = collect ();
2017-04-15 10:04:30 -04:00
$total = 0 ;
2018-03-24 15:04:18 -04:00
$hasMore = false ;
2017-04-15 10:04:30 -04:00
2017-04-09 15:59:57 -04:00
foreach ( $entityTypesToSearch as $entityType ) {
2018-01-28 11:58:52 -05:00
if ( ! in_array ( $entityType , $entityTypes )) {
continue ;
}
2021-11-05 20:32:01 -04:00
2021-11-08 10:24:49 -05:00
$entityModelInstance = $this -> entityProvider -> get ( $entityType );
$searchQuery = $this -> buildQuery ( $searchOpts , $entityModelInstance , $action );
2021-11-08 06:04:27 -05:00
$entityTotal = $searchQuery -> count ();
2021-11-08 10:24:49 -05:00
$searchResults = $this -> getPageOfDataFromQuery ( $searchQuery , $entityModelInstance , $page , $count );
2021-11-05 20:32:01 -04:00
if ( $entityTotal > ( $page * $count )) {
2018-03-24 15:04:18 -04:00
$hasMore = true ;
}
2021-11-05 20:32:01 -04:00
2018-03-24 15:04:18 -04:00
$total += $entityTotal ;
2021-11-08 06:04:27 -05:00
$results = $results -> merge ( $searchResults );
2017-04-09 15:59:57 -04:00
}
2017-03-26 14:24:57 -04:00
2017-04-15 10:04:30 -04:00
return [
2021-06-26 11:23:15 -04:00
'total' => $total ,
'count' => count ( $results ),
2018-03-24 15:04:18 -04:00
'has_more' => $hasMore ,
2021-06-26 11:23:15 -04:00
'results' => $results -> sortByDesc ( 'score' ) -> values (),
2017-04-15 10:04:30 -04:00
];
2017-03-26 14:24:57 -04:00
}
2017-04-15 14:16:07 -04:00
/**
2021-06-26 11:23:15 -04:00
* Search a book for entities .
2017-04-15 14:16:07 -04:00
*/
2020-06-27 08:29:00 -04:00
public function searchBook ( int $bookId , string $searchString ) : Collection
2017-04-15 14:16:07 -04:00
{
2020-06-27 08:29:00 -04:00
$opts = SearchOptions :: fromString ( $searchString );
2017-04-15 14:31:11 -04:00
$entityTypes = [ 'page' , 'chapter' ];
2020-06-27 08:29:00 -04:00
$entityTypesToSearch = isset ( $opts -> filters [ 'type' ]) ? explode ( '|' , $opts -> filters [ 'type' ]) : $entityTypes ;
2017-04-15 14:31:11 -04:00
2017-04-15 14:16:07 -04:00
$results = collect ();
2017-04-15 14:31:11 -04:00
foreach ( $entityTypesToSearch as $entityType ) {
2018-01-28 11:58:52 -05:00
if ( ! in_array ( $entityType , $entityTypes )) {
continue ;
}
2021-11-08 10:24:49 -05:00
$entityModelInstance = $this -> entityProvider -> get ( $entityType );
$search = $this -> buildQuery ( $opts , $entityModelInstance ) -> where ( 'book_id' , '=' , $bookId ) -> take ( 20 ) -> get ();
2017-04-15 14:31:11 -04:00
$results = $results -> merge ( $search );
}
2020-11-21 19:17:45 -05:00
2017-04-15 14:31:11 -04:00
return $results -> sortByDesc ( 'score' ) -> take ( 20 );
2017-04-15 14:16:07 -04:00
}
/**
2021-06-26 11:23:15 -04:00
* Search a chapter for entities .
2017-04-15 14:16:07 -04:00
*/
2020-06-27 08:29:00 -04:00
public function searchChapter ( int $chapterId , string $searchString ) : Collection
2017-04-15 14:16:07 -04:00
{
2020-06-27 08:29:00 -04:00
$opts = SearchOptions :: fromString ( $searchString );
2021-11-08 10:24:49 -05:00
$entityModelInstance = $this -> entityProvider -> get ( 'page' );
$pages = $this -> buildQuery ( $opts , $entityModelInstance ) -> where ( 'chapter_id' , '=' , $chapterId ) -> take ( 20 ) -> get ();
2021-06-26 11:23:15 -04:00
2017-04-15 14:16:07 -04:00
return $pages -> sortByDesc ( 'score' );
}
2017-03-27 06:57:33 -04:00
/**
2021-11-08 06:04:27 -05:00
* Get a page of result data from the given query based on the provided page parameters .
2017-03-27 06:57:33 -04:00
*/
2021-11-08 10:24:49 -05:00
protected function getPageOfDataFromQuery ( EloquentBuilder $query , Entity $entityModelInstance , int $page = 1 , int $count = 20 ) : EloquentCollection
2017-04-15 14:16:07 -04:00
{
2021-11-08 10:24:49 -05:00
$relations = [ 'tags' ];
if ( $entityModelInstance instanceof BookChild ) {
2021-11-13 08:28:17 -05:00
$relations [ 'book' ] = function ( BelongsTo $query ) {
2021-11-08 10:24:49 -05:00
$query -> visible ();
};
}
if ( $entityModelInstance instanceof Page ) {
2021-11-13 08:28:17 -05:00
$relations [ 'chapter' ] = function ( BelongsTo $query ) {
2021-11-08 10:24:49 -05:00
$query -> visible ();
};
}
2021-11-08 06:04:27 -05:00
return $query -> clone ()
2021-11-08 10:24:49 -05:00
-> with ( array_filter ( $relations ))
2021-11-08 06:04:27 -05:00
-> skip (( $page - 1 ) * $count )
-> take ( $count )
-> get ();
2017-04-15 14:16:07 -04:00
}
/**
2021-06-26 11:23:15 -04:00
* Create a search query for an entity .
2017-04-15 14:16:07 -04:00
*/
2021-11-08 10:24:49 -05:00
protected function buildQuery ( SearchOptions $searchOpts , Entity $entityModelInstance , string $action = 'view' ) : EloquentBuilder
2017-03-26 14:24:57 -04:00
{
2021-11-08 10:24:49 -05:00
$entityQuery = $entityModelInstance -> newQuery ();
2017-03-27 06:57:33 -04:00
2021-11-08 10:24:49 -05:00
if ( $entityModelInstance instanceof Page ) {
$entityQuery -> select ( $entityModelInstance :: $listAttributes );
2021-11-08 09:12:40 -05:00
} else {
$entityQuery -> select ([ '*' ]);
2021-11-08 06:41:14 -05:00
}
2017-03-27 06:57:33 -04:00
// Handle normal search terms
2021-11-08 10:24:49 -05:00
$this -> applyTermSearch ( $entityQuery , $searchOpts , $entityModelInstance );
2017-03-27 06:57:33 -04:00
// Handle exact term matching
2020-11-21 19:17:45 -05:00
foreach ( $searchOpts -> exacts as $inputTerm ) {
2021-11-08 10:24:49 -05:00
$entityQuery -> where ( function ( EloquentBuilder $query ) use ( $inputTerm , $entityModelInstance ) {
2021-06-26 11:23:15 -04:00
$query -> where ( 'name' , 'like' , '%' . $inputTerm . '%' )
2021-11-08 10:24:49 -05:00
-> orWhere ( $entityModelInstance -> textField , 'like' , '%' . $inputTerm . '%' );
2017-03-27 06:57:33 -04:00
});
}
2017-03-27 13:05:34 -04:00
// Handle tag searches
2020-06-27 08:29:00 -04:00
foreach ( $searchOpts -> tags as $inputTerm ) {
2021-11-08 06:29:25 -05:00
$this -> applyTagSearch ( $entityQuery , $inputTerm );
2017-03-27 13:05:34 -04:00
}
// Handle filters
2020-06-27 08:29:00 -04:00
foreach ( $searchOpts -> filters as $filterTerm => $filterValue ) {
2019-09-13 18:58:40 -04:00
$functionName = Str :: camel ( 'filter_' . $filterTerm );
2018-01-28 11:58:52 -05:00
if ( method_exists ( $this , $functionName )) {
2021-11-08 10:24:49 -05:00
$this -> $functionName ( $entityQuery , $entityModelInstance , $filterValue );
2018-01-28 11:58:52 -05:00
}
2017-03-27 13:05:34 -04:00
}
2021-11-08 10:24:49 -05:00
return $this -> permissionService -> enforceEntityRestrictions ( $entityModelInstance , $entityQuery , $action );
2021-11-08 06:29:25 -05:00
}
/**
* For the given search query , apply the queries for handling the regular search terms .
*/
2021-11-08 09:12:40 -05:00
protected function applyTermSearch ( EloquentBuilder $entityQuery , SearchOptions $options , Entity $entity ) : void
2021-11-08 06:29:25 -05:00
{
2021-11-08 09:12:40 -05:00
$terms = $options -> searches ;
2021-11-08 06:29:25 -05:00
if ( count ( $terms ) === 0 ) {
return ;
}
2021-11-08 09:12:40 -05:00
$scoredTerms = $this -> getTermAdjustments ( $options );
$scoreSelect = $this -> selectForScoredTerms ( $scoredTerms );
2021-11-08 06:29:25 -05:00
$subQuery = DB :: table ( 'search_terms' ) -> select ([
'entity_id' ,
'entity_type' ,
2021-11-08 09:12:40 -05:00
DB :: raw ( $scoreSelect [ 'statement' ]),
2021-11-08 06:29:25 -05:00
]);
2021-11-08 09:12:40 -05:00
$subQuery -> addBinding ( $scoreSelect [ 'bindings' ], 'select' );
2021-11-08 06:41:14 -05:00
2021-11-08 09:12:40 -05:00
$subQuery -> where ( 'entity_type' , '=' , $entity -> getMorphClass ());
2021-11-08 06:29:25 -05:00
$subQuery -> where ( function ( Builder $query ) use ( $terms ) {
foreach ( $terms as $inputTerm ) {
$query -> orWhere ( 'term' , 'like' , $inputTerm . '%' );
}
2021-11-08 09:12:40 -05:00
});
$subQuery -> groupBy ( 'entity_type' , 'entity_id' );
$entityQuery -> joinSub ( $subQuery , 's' , 'id' , '=' , 'entity_id' );
$entityQuery -> addSelect ( 's.score' );
$entityQuery -> orderBy ( 'score' , 'desc' );
}
/**
* Create a select statement , with prepared bindings , for the given
* set of scored search terms .
2021-11-08 10:00:47 -05:00
*
2021-11-09 10:13:15 -05:00
* @ param array < string , float > $scoredTerms
*
2021-11-08 09:12:40 -05:00
* @ return array { statement : string , bindings : string []}
*/
protected function selectForScoredTerms ( array $scoredTerms ) : array
{
// Within this we walk backwards to create the chain of 'if' statements
// so that each previous statement is used in the 'else' condition of
// the next (earlier) to be built. We start at '0' to have no score
// on no match (Should never actually get to this case).
$ifChain = '0' ;
$bindings = [];
foreach ( $scoredTerms as $term => $score ) {
2021-11-08 10:00:47 -05:00
$ifChain = 'IF(term like ?, score * ' . ( float ) $score . ', ' . $ifChain . ')' ;
2021-11-08 09:12:40 -05:00
$bindings [] = $term . '%' ;
}
return [
'statement' => 'SUM(' . $ifChain . ') as score' ,
2021-11-08 10:00:47 -05:00
'bindings' => array_reverse ( $bindings ),
2021-11-08 09:12:40 -05:00
];
}
2021-11-09 10:13:15 -05:00
/**
* For the terms in the given search options , query their popularity across all
* search terms then provide that back as score adjustment multiplier applicable
* for their rarity . Returns an array of float multipliers , keyed by term .
*
* @ return array < string , float >
*/
2021-11-08 09:12:40 -05:00
protected function getTermAdjustments ( SearchOptions $options ) : array
{
if ( isset ( $this -> termAdjustmentCache [ $options ])) {
return $this -> termAdjustmentCache [ $options ];
}
$termQuery = SearchTerm :: query () -> toBase ();
$whenStatements = [];
$whenBindings = [];
foreach ( $options -> searches as $term ) {
$whenStatements [] = 'WHEN term LIKE ? THEN ?' ;
$whenBindings [] = $term . '%' ;
$whenBindings [] = $term ;
$termQuery -> orWhere ( 'term' , 'like' , $term . '%' );
}
$case = 'CASE ' . implode ( ' ' , $whenStatements ) . ' END' ;
2021-11-08 10:00:47 -05:00
$termQuery -> selectRaw ( $case . ' as term' , $whenBindings );
2021-11-08 09:12:40 -05:00
$termQuery -> selectRaw ( 'COUNT(*) as count' );
$termQuery -> groupByRaw ( $case , $whenBindings );
2021-11-08 06:41:14 -05:00
2021-11-08 10:00:47 -05:00
$termCounts = $termQuery -> pluck ( 'count' , 'term' ) -> toArray ();
2021-11-08 09:12:40 -05:00
$adjusted = $this -> rawTermCountsToAdjustments ( $termCounts );
$this -> termAdjustmentCache [ $options ] = $adjusted ;
2021-11-08 10:00:47 -05:00
2021-11-08 09:12:40 -05:00
return $this -> termAdjustmentCache [ $options ];
}
/**
* Convert counts of terms into a relative - count normalised multiplier .
2021-11-08 10:00:47 -05:00
*
2021-11-08 09:12:40 -05:00
* @ param array < string , int > $termCounts
2021-11-08 10:00:47 -05:00
*
2021-11-08 09:12:40 -05:00
* @ return array < string , int >
*/
protected function rawTermCountsToAdjustments ( array $termCounts ) : array
{
2021-11-08 10:00:47 -05:00
if ( empty ( $termCounts )) {
return [];
}
2021-11-13 08:28:17 -05:00
2021-11-08 09:12:40 -05:00
$multipliers = [];
$max = max ( array_values ( $termCounts ));
foreach ( $termCounts as $term => $count ) {
$percent = round ( $count / $max , 5 );
$multipliers [ $term ] = 1.3 - $percent ;
}
2021-11-08 06:41:14 -05:00
2021-11-08 09:12:40 -05:00
return $multipliers ;
2017-03-26 14:24:57 -04:00
}
2017-03-27 13:05:34 -04:00
/**
* Get the available query operators as a regex escaped list .
*/
2020-06-27 08:29:00 -04:00
protected function getRegexEscapedOperators () : string
2017-03-27 13:05:34 -04:00
{
$escapedOperators = [];
foreach ( $this -> queryOperators as $operator ) {
$escapedOperators [] = preg_quote ( $operator );
}
2021-06-26 11:23:15 -04:00
2021-10-26 17:04:18 -04:00
return implode ( '|' , $escapedOperators );
2017-03-27 13:05:34 -04:00
}
/**
* Apply a tag search term onto a entity query .
*/
2020-06-27 08:29:00 -04:00
protected function applyTagSearch ( EloquentBuilder $query , string $tagTerm ) : EloquentBuilder
2018-01-28 11:58:52 -05:00
{
2021-06-26 11:23:15 -04:00
preg_match ( '/^(.*?)((' . $this -> getRegexEscapedOperators () . ')(.*?))?$/' , $tagTerm , $tagSplit );
2018-09-25 13:00:40 -04:00
$query -> whereHas ( 'tags' , function ( EloquentBuilder $query ) use ( $tagSplit ) {
2017-03-27 13:05:34 -04:00
$tagName = $tagSplit [ 1 ];
$tagOperator = count ( $tagSplit ) > 2 ? $tagSplit [ 3 ] : '' ;
$tagValue = count ( $tagSplit ) > 3 ? $tagSplit [ 4 ] : '' ;
$validOperator = in_array ( $tagOperator , $this -> queryOperators );
if ( ! empty ( $tagOperator ) && ! empty ( $tagValue ) && $validOperator ) {
2018-01-28 11:58:52 -05:00
if ( ! empty ( $tagName )) {
$query -> where ( 'name' , '=' , $tagName );
}
2017-03-27 13:05:34 -04:00
if ( is_numeric ( $tagValue ) && $tagOperator !== 'like' ) {
// We have to do a raw sql query for this since otherwise PDO will quote the value and MySQL will
// search the value as a string which prevents being able to do number-based operations
// on the tag values. We ensure it has a numeric value and then cast it just to be sure.
$tagValue = ( float ) trim ( $query -> getConnection () -> getPdo () -> quote ( $tagValue ), " ' " );
$query -> whereRaw ( " value ${ tagOperator } ${ tagValue } " );
} else {
$query -> where ( 'value' , $tagOperator , $tagValue );
}
} else {
$query -> where ( 'name' , '=' , $tagName );
}
});
2021-06-26 11:23:15 -04:00
2017-03-27 13:05:34 -04:00
return $query ;
}
/**
2021-06-26 11:23:15 -04:00
* Custom entity search filters .
2017-03-27 13:05:34 -04:00
*/
2021-11-08 06:04:27 -05:00
protected function filterUpdatedAfter ( EloquentBuilder $query , Entity $model , $input ) : void
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
try {
$date = date_create ( $input );
2021-11-08 06:04:27 -05:00
$query -> where ( 'updated_at' , '>=' , $date );
2021-11-08 10:00:47 -05:00
} catch ( \Exception $e ) {
}
2017-03-27 13:05:34 -04:00
}
2021-11-08 06:04:27 -05:00
protected function filterUpdatedBefore ( EloquentBuilder $query , Entity $model , $input ) : void
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
try {
$date = date_create ( $input );
2021-11-08 06:04:27 -05:00
$query -> where ( 'updated_at' , '<' , $date );
2021-11-08 10:00:47 -05:00
} catch ( \Exception $e ) {
}
2017-03-27 13:05:34 -04:00
}
2021-11-08 06:04:27 -05:00
protected function filterCreatedAfter ( EloquentBuilder $query , Entity $model , $input ) : void
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
try {
$date = date_create ( $input );
2021-11-08 06:04:27 -05:00
$query -> where ( 'created_at' , '>=' , $date );
2021-11-08 10:00:47 -05:00
} catch ( \Exception $e ) {
}
2017-03-27 13:05:34 -04:00
}
2018-09-25 13:00:40 -04:00
protected function filterCreatedBefore ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
try {
$date = date_create ( $input );
2021-11-08 06:04:27 -05:00
$query -> where ( 'created_at' , '<' , $date );
2021-11-08 10:00:47 -05:00
} catch ( \Exception $e ) {
}
2017-03-27 13:05:34 -04:00
}
2018-09-25 13:00:40 -04:00
protected function filterCreatedBy ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2021-03-10 17:51:18 -05:00
$userSlug = $input === 'me' ? user () -> slug : trim ( $input );
$user = User :: query () -> where ( 'slug' , '=' , $userSlug ) -> first ([ 'id' ]);
if ( $user ) {
$query -> where ( 'created_by' , '=' , $user -> id );
2018-01-28 11:58:52 -05:00
}
2017-03-27 13:05:34 -04:00
}
2018-09-25 13:00:40 -04:00
protected function filterUpdatedBy ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2021-03-10 17:51:18 -05:00
$userSlug = $input === 'me' ? user () -> slug : trim ( $input );
$user = User :: query () -> where ( 'slug' , '=' , $userSlug ) -> first ([ 'id' ]);
if ( $user ) {
$query -> where ( 'updated_by' , '=' , $user -> id );
2018-01-28 11:58:52 -05:00
}
2017-03-27 13:05:34 -04:00
}
2021-02-14 05:39:18 -05:00
protected function filterOwnedBy ( EloquentBuilder $query , Entity $model , $input )
{
2021-03-15 14:27:03 -04:00
$userSlug = $input === 'me' ? user () -> slug : trim ( $input );
$user = User :: query () -> where ( 'slug' , '=' , $userSlug ) -> first ([ 'id' ]);
if ( $user ) {
$query -> where ( 'owned_by' , '=' , $user -> id );
2021-02-14 05:39:18 -05:00
}
}
2018-09-25 13:00:40 -04:00
protected function filterInName ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2021-06-26 11:23:15 -04:00
$query -> where ( 'name' , 'like' , '%' . $input . '%' );
2017-03-27 13:05:34 -04:00
}
2018-09-25 13:00:40 -04:00
protected function filterInTitle ( EloquentBuilder $query , Entity $model , $input )
2018-01-28 11:58:52 -05:00
{
$this -> filterInName ( $query , $model , $input );
}
2017-03-27 13:05:34 -04:00
2018-09-25 13:00:40 -04:00
protected function filterInBody ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2021-06-26 11:23:15 -04:00
$query -> where ( $model -> textField , 'like' , '%' . $input . '%' );
2017-03-27 13:05:34 -04:00
}
2018-09-25 13:00:40 -04:00
protected function filterIsRestricted ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
$query -> where ( 'restricted' , '=' , true );
}
2018-09-25 13:00:40 -04:00
protected function filterViewedByMe ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
$query -> whereHas ( 'views' , function ( $query ) {
2017-03-27 13:05:34 -04:00
$query -> where ( 'user_id' , '=' , user () -> id );
});
}
2018-09-25 13:00:40 -04:00
protected function filterNotViewedByMe ( EloquentBuilder $query , Entity $model , $input )
2017-03-27 13:05:34 -04:00
{
2018-01-28 11:58:52 -05:00
$query -> whereDoesntHave ( 'views' , function ( $query ) {
2017-03-27 13:05:34 -04:00
$query -> where ( 'user_id' , '=' , user () -> id );
});
}
2018-09-25 13:00:40 -04:00
protected function filterSortBy ( EloquentBuilder $query , Entity $model , $input )
2017-10-01 06:24:13 -04:00
{
2019-09-13 18:58:40 -04:00
$functionName = Str :: camel ( 'sort_by_' . $input );
2018-01-28 11:58:52 -05:00
if ( method_exists ( $this , $functionName )) {
$this -> $functionName ( $query , $model );
}
2017-10-01 06:24:13 -04:00
}
/**
2021-06-26 11:23:15 -04:00
* Sorting filter options .
2017-10-01 06:24:13 -04:00
*/
2018-09-25 13:00:40 -04:00
protected function sortByLastCommented ( EloquentBuilder $query , Entity $model )
2017-10-01 06:24:13 -04:00
{
2021-11-08 06:04:27 -05:00
$commentsTable = DB :: getTablePrefix () . 'comments' ;
2017-10-01 06:24:13 -04:00
$morphClass = str_replace ( '\\' , '\\\\' , $model -> getMorphClass ());
2021-11-08 06:04:27 -05:00
$commentQuery = DB :: raw ( '(SELECT c1.entity_id, c1.entity_type, c1.created_at as last_commented FROM ' . $commentsTable . ' c1 LEFT JOIN ' . $commentsTable . ' c2 ON (c1.entity_id = c2.entity_id AND c1.entity_type = c2.entity_type AND c1.created_at < c2.created_at) WHERE c1.entity_type = \'' . $morphClass . '\' AND c2.created_at IS NULL) as comments' );
2017-10-01 06:24:13 -04:00
$query -> join ( $commentQuery , $model -> getTable () . '.id' , '=' , 'comments.entity_id' ) -> orderBy ( 'last_commented' , 'desc' );
}
2018-01-28 11:58:52 -05:00
}