web-base/core/Driver/SQL/Query/Select.class.php

140 lines
4.2 KiB
PHP
Raw Normal View History

2020-04-02 00:02:51 +02:00
<?php
namespace Driver\SQL\Query;
2020-04-04 01:15:59 +02:00
use Driver\SQL\Condition\CondOr;
2020-04-03 17:39:58 +02:00
use Driver\SQL\Join;
2021-04-08 18:29:47 +02:00
use Driver\SQL\SQL;
2020-04-03 17:39:58 +02:00
2020-04-02 00:02:51 +02:00
class Select extends Query {
2020-04-03 17:39:58 +02:00
private array $columns;
private array $tables;
private array $conditions;
private array $joins;
private array $orderColumns;
2020-06-15 21:14:59 +02:00
private array $groupColumns;
2020-04-03 17:39:58 +02:00
private bool $sortAscending;
private int $limit;
private int $offset;
2020-04-02 00:02:51 +02:00
public function __construct($sql, ...$columns) {
parent::__construct($sql);
$this->columns = (!empty($columns) && is_array($columns[0])) ? $columns[0] : $columns;
$this->tables = array();
$this->conditions = array();
$this->joins = array();
2020-04-03 14:46:29 +02:00
$this->orderColumns = array();
2020-06-15 21:14:59 +02:00
$this->groupColumns = array();
2020-04-03 14:46:29 +02:00
$this->limit = 0;
$this->offset = 0;
$this->sortAscending = true;
2020-04-02 00:02:51 +02:00
}
2021-04-02 21:58:06 +02:00
public function from(...$tables): Select {
2020-04-02 00:02:51 +02:00
$this->tables = array_merge($this->tables, $tables);
return $this;
}
2021-04-02 21:58:06 +02:00
public function where(...$conditions): Select {
2020-04-04 01:15:59 +02:00
$this->conditions[] = (count($conditions) === 1 ? $conditions : new CondOr($conditions));
2020-04-02 00:02:51 +02:00
return $this;
}
2021-04-02 21:58:06 +02:00
public function innerJoin(string $table, string $columnA, string $columnB, ?string $tableAlias = null): Select {
2021-01-07 14:59:36 +01:00
$this->joins[] = new Join("INNER", $table, $columnA, $columnB, $tableAlias);
2020-04-02 00:02:51 +02:00
return $this;
}
2021-04-02 21:58:06 +02:00
public function leftJoin(string $table, string $columnA, string $columnB, ?string $tableAlias = null): Select {
2021-01-07 14:59:36 +01:00
$this->joins[] = new Join("LEFT", $table, $columnA, $columnB, $tableAlias);
2020-04-02 00:02:51 +02:00
return $this;
}
2021-04-02 21:58:06 +02:00
public function groupBy(...$columns): Select {
2020-06-15 21:14:59 +02:00
$this->groupColumns = $columns;
return $this;
}
2021-04-02 21:58:06 +02:00
public function orderBy(...$columns): Select {
2020-04-03 14:46:29 +02:00
$this->orderColumns = $columns;
return $this;
}
2021-04-02 21:58:06 +02:00
public function ascending(): Select {
2020-04-03 17:39:58 +02:00
$this->sortAscending = true;
2020-04-03 14:46:29 +02:00
return $this;
}
2021-04-02 21:58:06 +02:00
public function descending(): Select {
2020-04-03 17:39:58 +02:00
$this->sortAscending = false;
2020-04-03 14:46:29 +02:00
return $this;
}
2021-04-02 21:58:06 +02:00
public function limit(int $limit): Select {
2020-04-03 14:46:29 +02:00
$this->limit = $limit;
return $this;
}
2021-04-02 21:58:06 +02:00
public function offset(int $offset): Select {
2020-04-03 14:46:29 +02:00
$this->offset = $offset;
return $this;
}
2021-04-02 22:41:24 +02:00
public function execute() {
2021-04-08 18:29:47 +02:00
return $this->sql->executeQuery($this, true);
2020-04-02 00:02:51 +02:00
}
2021-04-02 21:58:06 +02:00
public function getColumns(): array { return $this->columns; }
public function getTables(): array { return $this->tables; }
public function getConditions(): array { return $this->conditions; }
public function getJoins(): array { return $this->joins; }
public function isOrderedAscending(): bool { return $this->sortAscending; }
public function getOrderBy(): array { return $this->orderColumns; }
public function getLimit(): int { return $this->limit; }
public function getOffset(): int { return $this->offset; }
public function getGroupBy(): array { return $this->groupColumns; }
2020-04-03 14:46:29 +02:00
2021-04-09 16:05:36 +02:00
public function build(array &$params): ?string {
2021-04-08 18:29:47 +02:00
$columns = $this->sql->columnName($this->getColumns());
$tables = $this->getTables();
if (!$tables) {
return "SELECT $columns";
}
$tables = $this->sql->tableName($tables);
$where = $this->sql->getWhereClause($this->getConditions(), $params);
$joinStr = "";
$joins = $this->getJoins();
if (!empty($joins)) {
foreach ($joins as $join) {
$type = $join->getType();
$joinTable = $this->sql->tableName($join->getTable());
$columnA = $this->sql->columnName($join->getColumnA());
$columnB = $this->sql->columnName($join->getColumnB());
$tableAlias = ($join->getTableAlias() ? " " . $join->getTableAlias() : "");
$joinStr .= " $type JOIN $joinTable$tableAlias ON $columnA=$columnB";
}
}
$groupBy = "";
$groupColumns = $this->getGroupBy();
if (!empty($groupColumns)) {
$groupBy = " GROUP BY " . $this->sql->columnName($groupColumns);
}
$orderBy = "";
$orderColumns = $this->getOrderBy();
if (!empty($orderColumns)) {
$orderBy = " ORDER BY " . $this->sql->columnName($orderColumns);
$orderBy .= ($this->isOrderedAscending() ? " ASC" : " DESC");
}
$limit = ($this->getLimit() > 0 ? (" LIMIT " . $this->getLimit()) : "");
$offset = ($this->getOffset() > 0 ? (" OFFSET " . $this->getOffset()) : "");
return "SELECT $columns FROM $tables$joinStr$where$groupBy$orderBy$limit$offset";
}
2020-04-03 17:39:58 +02:00
}