1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 23:44:27 +02:00
Files
php-flarum/src/Query/ApplyQueryParametersTrait.php
Alexander Skvortsov a9526917b8 Query Namespace (#2645)
Move shared classes in search and filter namespaces to a new query namespace
2021-03-02 09:57:40 -05:00

63 lines
1.5 KiB
PHP

<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Query;
use Illuminate\Support\Str;
trait ApplyQueryParametersTrait
{
/**
* Apply sort criteria to a discussion query.
*
* @param AbstractQueryState $query
* @param array $sort
*/
protected function applySort(AbstractQueryState $query, array $sort = null)
{
$sort = $sort ?: $query->getDefaultSort();
if (is_callable($sort)) {
$sort($query->getQuery());
} else {
foreach ($sort as $field => $order) {
if (is_array($order)) {
foreach ($order as $value) {
$query->getQuery()->orderByRaw(Str::snake($field).' != ?', [$value]);
}
} else {
$query->getQuery()->orderBy(Str::snake($field), $order);
}
}
}
}
/**
* @param AbstractQueryState $query
* @param int $offset
*/
protected function applyOffset(AbstractQueryState $query, $offset)
{
if ($offset > 0) {
$query->getQuery()->skip($offset);
}
}
/**
* @param AbstractQueryState $query
* @param int|null $limit
*/
protected function applyLimit(AbstractQueryState $query, $limit)
{
if ($limit > 0) {
$query->getQuery()->take($limit);
}
}
}