HEX
Server: Apache
System: Linux server1.ariadata.co 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
User: nepi (1051)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,show_source,popen,proc_open
Upload Files
File: /home/nepi/public_html/src/core/Directus/Database/Query/Builder.php
<?php

namespace Directus\Database\Query;

use Directus\Database\Query\Relations\ManyToManyRelation;
use Directus\Database\Query\Relations\ManyToOneRelation;
use Directus\Database\Query\Relations\OneToManyRelation;
use Directus\Util\ArrayUtils;
use Zend\Db\Adapter\AdapterInterface;
use Zend\Db\ResultSet\AbstractResultSet;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\Sql\Having;
use Zend\Db\Sql\Predicate\Between;
use Zend\Db\Sql\Predicate\Expression;
use Zend\Db\Sql\Predicate\In;
use Zend\Db\Sql\Predicate\IsNotNull;
use Zend\Db\Sql\Predicate\IsNull;
use Zend\Db\Sql\Predicate\Like;
use Zend\Db\Sql\Predicate\NotBetween;
use Zend\Db\Sql\Predicate\NotIn;
use Zend\Db\Sql\Predicate\NotLike;
use Zend\Db\Sql\Predicate\Operator;
use Zend\Db\Sql\Predicate\Predicate;
use Zend\Db\Sql\Sql;

class Builder
{
    /**
     * @var AdapterInterface
     */
    protected $connection;

    /**
     * @var Sql
     */
    protected $sql = null;

    /**
     * @var array
     */
    protected $columns = ['*'];

    /**
     * @var string|null
     */
    protected $from;

    /**
     * @var array|null
     */
    protected $joins;

    /**
     * @var array
     */
    protected $wheres = [];

    /**
     * @var array
     */
    protected $order = [];

    /**
     * @var null|int
     */
    protected $offset = null;

    /**
     * @var null|int
     */
    protected $limit = null;

    /**
     * @var null|array
     */
    protected $groupBys = null;

    /**
     * @var null|array
     */
    protected $havings = null;

    /**
     * Builder constructor.
     *
     * @param AdapterInterface $connection
     */
    public function __construct(AdapterInterface $connection)
    {
        $this->connection = $connection;
    }

    /**
     * Sets the columns list to be selected
     *
     * @param array $columns
     *
     * @return $this
     */
    public function columns(array $columns)
    {
        $this->columns = $columns;

        return $this;
    }

    /**
     * Gets the selected columns
     *
     * @return array
     */
    public function getColumns()
    {
        return $this->columns;
    }

    /**
     * Sets the from table
     *
     * @param $from
     *
     * @return $this
     */
    public function from($from)
    {
        $this->from = $from;

        return $this;
    }

    /**
     * Gets the from table value
     *
     * @return null|string
     */
    public function getFrom()
    {
        return $this->from;
    }

    public function join($table, $on, $columns = ['*'], $type = 'inner')
    {
        $this->joins[] = compact('table', 'on', 'columns', 'type');

        return $this;
    }

    public function getJoins()
    {
        return $this->joins;
    }

    /**
     * Sets a condition to the query
     *
     * @param $column
     * @param $operator
     * @param $value
     * @param $not
     * @param $logical
     *
     * @return $this
     */
    public function where($column, $operator = null, $value = null, $not = false, $logical = 'and')
    {
        if ($column instanceof \Closure) {
            return $this->nestWhere($column, $logical);
        }

        $type = 'basic';

        $this->wheres[] = compact('type', 'operator', 'column', 'value', 'not', 'logical');

        return $this;
    }

    /**
     * Creates a nested condition
     *
     * @param \Closure $callback
     * @param string $logical
     *
     * @return $this
     */
    public function nestWhere(\Closure $callback, $logical = 'and')
    {
        $query = $this->newQuery();
        call_user_func($callback, $query);

        if (count($query->getWheres())) {
            $type = 'nest';
            $this->wheres[] = compact('type', 'query', 'logical');
        }

        return $this;
    }

    public function nestOrWhere(\Closure $callback)
    {
        return $this->nestWhere($callback, 'or');
    }

    /**
     * Create a condition where the given column is empty (NULL or empty string)
     *
     * @param $column
     *
     * @return Builder
     */
    public function whereEmpty($column)
    {
        return $this->nestWhere(function(Builder $query) use ($column) {
            $query->orWhereNull($column);
            $query->orWhereEqualTo($column, '');
        });
    }

    /**
     * Create a condition where the given column is NOT empty (NULL or empty string)
     *
     * @param $column
     *
     * @return Builder
     */
    public function whereNotEmpty($column)
    {
        return $this->nestWhere(function(Builder $query) use ($column) {
            $query->whereNotNull($column);
            $query->whereNotEqualTo($column, '');
        }, 'and');
    }

    /**
     * Sets a "where in" condition
     *
     * @param $column
     * @param array|Builder $values
     * @param bool $not
     * @param string $logical
     *
     * @return Builder
     */
    public function whereIn($column, $values, $not = false, $logical = 'and')
    {
        return $this->where($column, 'in', $values, $not, $logical);
    }

    /**
     * Sets a "where or in" condition
     *
     * @param $column
     * @param array|Builder $values
     * @param bool $not
     *
     * @return Builder
     */
    public function orWhereIn($column, $values, $not = false)
    {
        return $this->where($column, 'in', $values, $not, 'or');
    }

    /**
     * Sets an "where not in" condition
     *
     * @param $column
     * @param array $values
     *
     * @return Builder
     */
    public function whereNotIn($column, array $values, $not = false, $logical = 'and')
    {
        return $this->whereIn($column, $values, true, $logical);
    }

    public function whereBetween($column, array $values, $not = false, $logical = 'and')
    {
        return $this->where($column, 'between', $values, $not, $logical);
    }

    public function whereNotBetween($column, array $values, $not = false, $logical = 'and')
    {
        return $this->whereBetween($column, $values, true, $logical);
    }

    public function whereEqualTo($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, '=', $value, $not, $logical);
    }

    public function orWhereEqualTo($column, $value, $not = false)
    {
        return $this->where($column, '=', $value, $not, 'or');
    }

    public function whereNotEqualTo($column, $value, $not = false, $logical = 'and')
    {
        return $this->whereEqualTo($column, $value, true, $logical);
    }

    public function whereLessThan($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, '<', $value, $not, $logical);
    }

    public function whereLessThanOrEqual($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, '<=', $value, $not, $logical);
    }

    public function whereGreaterThan($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, '>', $value, $not, $logical);
    }

    public function whereGreaterThanOrEqual($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, '>=', $value, $not, $logical);
    }

    public function whereNull($column, $not = false, $logical = 'and')
    {
        return $this->where($column, 'null', null, $not, $logical);
    }

    public function orWhereNull($column, $not = false)
    {
        return $this->whereNull($column, $not, 'or');
    }

    public function whereNotNull($column)
    {
        return $this->whereNull($column, true);
    }

    public function whereLike($column, $value, $not = false, $logical = 'and')
    {
        return $this->where($column, 'like', $value, $not, $logical);
    }

    public function orWhereLike($column, $value, $not = false)
    {
        return $this->whereLike($column, $value, $not, 'or');
    }

    public function whereNotLike($column, $value, $not = false, $logical = 'and')
    {
        return $this->whereLike($column, $value, true, $logical);
    }

    public function whereAll($column, $table, $columnLeft, $columnRight, $values)
    {
        if ($columnLeft === null) {
            $relation = new OneToManyRelation($this, $column, $table, $columnRight, $this->getFrom());
        } else {
            $relation = new ManyToManyRelation($this, $table, $columnLeft, $columnRight);
        }

        $relation->all($values);

        return $this->whereIn($column, $relation);
    }

    public function whereHas($column, $table, $columnLeft, $columnRight, $count = 1, $not = false)
    {
        if (is_null($columnLeft)) {
            $relation = new OneToManyRelation($this, $column, $table, $columnRight, $this->getFrom());
        } else {
            $relation = new ManyToManyRelation($this, $table, $columnLeft, $columnRight);
        }

        // If checking if has 0, this case will be the opposite
        // has = 0, NOT IN the record that has more than 0
        // not has = 0, IN the record that has more than 0
        if ($count < 1) {
            $not = !$not;
        }

        $relation->has($count);

        return $this->whereIn($column, $relation, $not);
    }

    public function whereNotHas($column, $table, $columnLeft, $columnRight, $count = 1)
    {
        return $this->whereHas($column, $table, $columnLeft, $columnRight, $count, true);
    }

    public function whereRelational($column, $table, $columnLeft, $columnRight = null, \Closure $callback = null, $logical = 'and')
    {
        if (is_callable($columnRight)) {
            // $column: Relational Column
            // $table: Related table
            // $columnRight: Related table that points to $column
            $callback = $columnRight;
            $columnRight = $columnLeft;
            $columnLeft = null;
            $relation = new ManyToOneRelation($this, $columnRight, $table);
        } else if (is_null($columnLeft)) {
            $relation = new OneToManyRelation($this, $column, $table, $columnRight, $this->getFrom());
        } else {
            $relation = new ManyToManyRelation($this, $table, $columnLeft, $columnRight);
        }

        call_user_func($callback, $relation);

        return $this->whereIn($column, $relation, false, $logical);
    }

    public function orWhereRelational($column, $table, $columnLeft, $columnRight = null, \Closure $callback = null)
    {
        return $this->whereRelational($column, $table, $columnLeft, $columnRight, $callback, 'or');
    }

    /**
     * Gets the query conditions
     *
     * @return array
     */
    public function getWheres()
    {
        return $this->wheres;
    }

    /**
     * Order the query by the given table
     *
     * @param string $column
     * @param string $direction
     * @param bool $nullLast
     *
     * @return Builder
     */
    public function orderBy($column, $direction = 'ASC', $nullLast = false)
    {
        $this->order[] = [
            (string) $column,
            (string) $direction,
            (bool) $nullLast
        ];

        return $this;
    }

    /**
     * Gets the sorts
     *
     * @return array
     */
    public function getOrder()
    {
        return $this->order;
    }

    /**
     * Clears the order list
     */
    public function clearOrder()
    {
        $this->order = [];
    }

    /**
     * Sets the number of records to skip
     *
     * @param $value
     *
     * @return Builder
     */
    public function offset($value)
    {
        $this->offset = max(0, $value);

        return $this;
    }

    /**
     * Alias of Builder::offset
     *
     * @param $value
     *
     * @return Builder
     */
    public function skip($value)
    {
        return $this->offset($value);
    }

    /**
     * Gets the query offset
     *
     * @return int|null
     */
    public function getOffset()
    {
        return $this->offset;
    }

    /**
     * Alias of Builder::getOffset
     *
     * @return int|null
     */
    public function getSkip()
    {
        return $this->getOffset();
    }

    /**
     * Sets the query result limit
     *
     * @param $value
     *
     * @return $this
     */
    public function limit($value)
    {
        // =============================================================================
        // LIMIT 0 quickly returns an empty set.
        // This can be useful for checking the validity of a query.
        // @see: http://dev.mysql.com/doc/refman/5.7/en/limit-optimization.html
        // =============================================================================
        if ($value >= 0) {
            $this->limit = (int) $value;
        } else {
            $this->limit = null;
        }

        return $this;
    }

    /**
     * Gets the query result limit
     *
     * @return int|null
     */
    public function getLimit()
    {
        return $this->limit;
    }

    /**
     * Sets Group by columns
     *
     * @param array|string $columns
     */
    public function groupBy($columns)
    {
        if (!is_array($columns)) {
            $columns = [$columns];
        }

        if ($this->groupBys === null) {
            $this->groupBys = [];
        }

        foreach($columns as $column) {
            $this->groupBys[] = $column;
        }
    }

    /**
     * Sets having
     *
     * @param $column
     * @param $operator
     * @param $value
     *
     * @return $this
     */
    public function having($column, $operator = null, $value = null)
    {
        $this->havings[] = compact('column', 'operator', 'value');

        return $this;
    }

    /**
     * Gets havings
     *
     * @return array|null
     */
    public function getHavings()
    {
        return $this->havings;
    }

    /**
     * Build the Select Object
     *
     * @return \Zend\Db\Sql\Select
     */
    public function buildSelect()
    {
        $select = $this->getSqlObject()->select($this->getFrom());
        $select->columns($this->getColumns());
        $select->order($this->buildOrder());

        if ($this->getJoins() !== null) {
            foreach($this->getJoins() as $join) {
                $select->join($join['table'], $join['on'], $join['columns'], $join['type']);
            }
        }

        if ($this->getOffset() !== null && $this->getLimit() !== null) {
            $select->offset($this->getOffset());
        }

        if ($this->getLimit() !== null) {
            $select->limit($this->getLimit());
        }

        foreach ($this->getWheres() as $condition) {
            $this->buildCondition($select->where, $condition);
        }

        if ($this->groupBys !== null) {
            $groupBys = [];

            foreach ($this->groupBys as $groupBy) {
                $groupBys[] = $this->getIdentifier($groupBy);
            }

            $select->group($groupBys);
        }

        if ($this->getHavings() !== null) {
            foreach ($this->getHavings() as $having) {
                if ($having['column'] instanceof Expression) {
                    $expression = $having['column'];
                    $callback = function(Having $having) use ($expression) {
                        $having->addPredicate($expression);
                    };
                } else {
                    $callback = function(Having $havingObject) use ($having) {
                        $havingObject->addPredicate(new Operator($having['column'], $having['operator'], $having['value']));
                    };
                }

                $select->having($callback);
            }
        }

        return $select;
    }

    /**
     * Executes the query
     *
     * @return AbstractResultSet
     */
    public function get()
    {
        $sql = $this->getSqlObject();
        $select = $this->buildSelect();

        $statement = $sql->prepareStatementForSqlObject($select);
        $result = $statement->execute();

        $resultSet = new ResultSet($result);
        $resultSet->initialize($result);

        return $resultSet;
    }

    /**
     * Gets the query string
     *
     * @return string
     */
    public function getSql()
    {
        $sql = $this->getSqlObject();
        $select = $this->buildSelect();

        return $sql->buildSqlString($select, $this->connection);
    }

    /**
     * Build the condition expressions
     *
     * @param Predicate $where
     * @param array $condition
     */
    protected function buildCondition(Predicate $where, array $condition)
    {
        $logical = strtoupper(ArrayUtils::get($condition, 'logical', 'and'));

        if (ArrayUtils::get($condition, 'type') === 'nest') {
            /** @var Builder $query */
            $query = ArrayUtils::get($condition, 'query');
            if ($logical === 'OR') {
                $where->or;
            }

            $where = $where->nest();

            foreach ($query->getWheres() as $condition) {
                $query->from($this->getFrom());
                $query->buildCondition($where, $condition);
            }

            $where->unnest();
        } else {
            $where->addPredicate($this->buildConditionExpression($condition), $logical);
        }
    }

    protected function buildOrder()
    {
        $order = [];
        foreach ($this->getOrder() as $options) {
            $orderBy = $options[0];
            $orderDirection = $options[1];
            $nullLast = $options[2];

            if ($orderBy === '?') {
                $expression = new Expression('RAND()');
            } else {
                if ($nullLast === true) {
                    $order[] = new IsNull($this->getIdentifier($orderBy));
                }

                $expression = sprintf('%s %s', $this->getIdentifier($orderBy), $orderDirection);
            }

            $order[] = $expression;
        }

        return $order;
    }

    /**
     * Get the column identifier (table name prepended)
     *
     * @param string $column
     *
     * @return string
     */
    protected function getIdentifier($column)
    {
        $platform = $this->getConnection()->getPlatform();
        $table = $this->getFrom();

        if (is_string ($column) && strpos($column, $platform->getIdentifierSeparator()) === false) {
            $column = implode($platform->getIdentifierSeparator(), [$table, $column]);
        }

        return $column;
    }

    protected function buildConditionExpression($condition)
    {
        $not = ArrayUtils::get($condition, 'not', false) === true;
        $notChar = '';
        if ($not === true) {
            $notChar = $condition['operator'] === '=' ? '!' : 'n';
        }

        $operator = $notChar . $condition['operator'];

        $column = $condition['column'];
        $identifier = $this->getIdentifier($column);
        $value = $condition['value'];

        if ($value instanceof Builder) {
            $value = $value->buildSelect();
        }

        switch ($operator) {
            case 'in':
                $expression = new In($identifier, $value);
                break;
            case 'nin':
                $expression = new NotIn($identifier, $value);
                break;
            case 'like':
                $expression = new Like($identifier, $value);
                break;
            case 'nlike':
                $expression = new NotLike($identifier, $value);
                break;
            case 'null':
                $expression = new IsNull($identifier);
                break;
            case 'nnull':
                $expression = new IsNotNull($identifier);
                break;
            case 'between':
                $expression = new Between($identifier, array_shift($value), array_pop($value));
                break;
            case 'nbetween':
                $expression = new  NotBetween($identifier, array_shift($value), array_pop($value));
                break;
            default:
                $expression = new Operator($identifier, $operator, $value);
        }

        return $expression;
    }

    protected function getSqlObject()
    {
        if ($this->sql === null) {
            $this->sql = new Sql($this->connection);
        }

        return $this->sql;
    }

    /**
     * Gets a new instance of the query builder
     *
     * @return \Directus\Database\Query\Builder
     */
    public function newQuery()
    {
        return new self($this->connection);
    }

    /**
     * Gets the connection
     *
     * @return AdapterInterface
     */
    public function getConnection()
    {
        return $this->connection;
    }
}