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

97 lines
2.7 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;
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 21:58:06 +02:00
public function execute(): bool {
2020-04-02 00:02:51 +02:00
return $this->sql->executeSelect($this);
}
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
2020-04-03 17:39:58 +02:00
}