Compare commits
55 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 94857ecb46 | |||
| 0f0a3349fb | |||
| 7fb9c3ea05 | |||
| 11a939e8a1 | |||
| 1666af9906 | |||
| 78f7faba55 | |||
| b3f50fc6e4 | |||
| 7b4604ce98 | |||
| 654cc483b3 | |||
| c6b88256e3 | |||
| 5b4a6b9caa | |||
| 42af2e8bf9 | |||
| db92238e9e | |||
| 530104ceb6 | |||
| 7ea245fc89 | |||
| 0cc1d3d9f7 | |||
| c444de4815 | |||
| 263f99c8c3 | |||
| 450870ea19 | |||
| b3e3e95081 | |||
| f084c171ff | |||
| 7ca732f153 | |||
| f9771fed3f | |||
| 8d006568ef | |||
| 6304684683 | |||
| 528f43c7ac | |||
| 622176c3ff | |||
| e343595e7d | |||
| 4f31065818 | |||
| 4fe1558a7e | |||
| 904ba8cc97 | |||
| 4e59053d5c | |||
| 59c9a2e944 | |||
| f563126cd0 | |||
| 41166dd998 | |||
| 3d4327a92e | |||
| 28beb3678e | |||
| 32164f66ab | |||
| 3244f8cfac | |||
| 8027effa8c | |||
| 59375e567e | |||
| eb39acb7e9 | |||
| be3fc004d5 | |||
| bbe0631f5b | |||
| bf5d988ba4 | |||
| 4fc9b42540 | |||
| e5453807f2 | |||
| 5a6f6da70a | |||
| beb48f41d2 | |||
| 8d917b0f92 | |||
| 08fbc49091 | |||
| 08e49cfa65 | |||
| d58850b158 | |||
| aba45e8cb9 | |||
| ed22201bef |
+244
-180
@@ -22,208 +22,272 @@ class ActiveQuery extends QueryTrait implements ISqlBuilder
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
public bool $asArray = FALSE;
|
public bool $asArray = FALSE;
|
||||||
protected mixed $_mock = null;
|
protected mixed $_mock = NULL;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $asArray
|
* @param bool $asArray
|
||||||
* @return static
|
*
|
||||||
*/
|
* @return static
|
||||||
public function asArray(bool $asArray = true): static
|
*/
|
||||||
{
|
public function asArray(bool $asArray = TRUE): static
|
||||||
$this->asArray = $asArray;
|
{
|
||||||
return $this;
|
$this->asArray = $asArray;
|
||||||
}
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $methods
|
* @param array $methods
|
||||||
* @return $this
|
*
|
||||||
*/
|
* @return $this
|
||||||
public function with(array $methods): static
|
*/
|
||||||
{
|
public function with(array $methods): static
|
||||||
$this->modelClass->setWith($methods);
|
{
|
||||||
return $this;
|
$this->modelClass->setWith($methods);
|
||||||
}
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ModelInterface|array|null|bool
|
* @return ModelInterface|array|null|bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function first(): ModelInterface|null|array|bool
|
public function first(): ModelInterface|null|array|bool
|
||||||
{
|
{
|
||||||
$data = $this->buildCommand($this->builder->one())->one();
|
$data = $this->buildCommand($this->builder->one())->one();
|
||||||
if (is_array($data)) {
|
if (is_array($data)) {
|
||||||
return $this->populate($data);
|
return $this->populate($data);
|
||||||
}
|
}
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool|Collection
|
* @return bool|Collection
|
||||||
*/
|
*/
|
||||||
public function get(): bool|Collection
|
public function get(): bool|Collection
|
||||||
{
|
{
|
||||||
$data = $this->buildCommand($this->builder->all())->all();
|
$data = $this->buildCommand($this->builder->all())->all();
|
||||||
if (is_array($data)) {
|
if (is_array($data)) {
|
||||||
return new Collection($this, $this->modelClass, $data);
|
return new Collection($this, $this->modelClass, $data);
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws
|
* @param string $column
|
||||||
*/
|
* @param int|float $amount
|
||||||
public function flush(): bool
|
*
|
||||||
{
|
* @return bool
|
||||||
return (bool)$this->buildCommand($this->builder->truncate())->exec();
|
*/
|
||||||
}
|
public function increment(string $column, int|float $amount = 1): bool
|
||||||
|
{
|
||||||
|
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount]))->exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $size
|
* @param array $attributes
|
||||||
* @param Closure $closure
|
*
|
||||||
* @return void
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function chunk(int $size, Closure $closure): void
|
public function increments(array $attributes): bool
|
||||||
{
|
{
|
||||||
if ($this->offset === -1) $this->offset = 0;
|
return (bool)$this->buildCommand($this->builder->mathematics($attributes))->exec();
|
||||||
$data = $this->offset($this->offset)->limit($size)->get();
|
}
|
||||||
if (!$data || $data->isEmpty()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (Context::inCoroutine()) {
|
|
||||||
Coroutine::create(fn() => $closure($data));
|
|
||||||
} else {
|
|
||||||
call_user_func($closure, $data);
|
|
||||||
}
|
|
||||||
$this->offset += $size;
|
|
||||||
$this->chunk($size, $closure);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $field
|
|
||||||
* @param string|null $setKey
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
public function column(string $field, ?string $setKey = null): ?array
|
|
||||||
{
|
|
||||||
return $this->get()->column($field, $setKey);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $value
|
* @param string $column
|
||||||
* @return $this
|
* @param int|float $amount
|
||||||
*/
|
*
|
||||||
public function withMock(mixed $value): static
|
* @return bool
|
||||||
{
|
*/
|
||||||
$this->_mock = $value;
|
public function decrement(string $column, int|float $amount = 1): bool
|
||||||
return $this;
|
{
|
||||||
}
|
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount], '-'))->exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return mixed
|
* @param array $attributes
|
||||||
*/
|
*
|
||||||
public function mock(): mixed
|
* @return bool
|
||||||
{
|
*/
|
||||||
return $this->_mock;
|
public function decrements(array $attributes): bool
|
||||||
}
|
{
|
||||||
|
return (bool)$this->buildCommand($this->builder->mathematics($attributes, '-'))->exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @throws
|
||||||
* @return ModelInterface|array
|
*/
|
||||||
* @throws
|
public function flush(): bool
|
||||||
*/
|
{
|
||||||
public function populate(array $data): ModelInterface|array
|
return (bool)$this->buildCommand($this->builder->truncate())->exec();
|
||||||
{
|
}
|
||||||
$model = $this->modelClass->populates($data);
|
|
||||||
|
|
||||||
return $this->asArray ? $model->toArray() : $model;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @param int $size
|
||||||
* @throws
|
* @param Closure $closure
|
||||||
*/
|
*
|
||||||
public function count(): int
|
* @return void
|
||||||
{
|
*/
|
||||||
return $this->buildCommand($this->builder->count())->rowCount();
|
public function chunk(int $size, Closure $closure): void
|
||||||
}
|
{
|
||||||
|
if ($this->offset === -1) $this->offset = 0;
|
||||||
|
$data = $this->offset($this->offset)->limit($size)->get();
|
||||||
|
if (!$data || $data->isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (Context::inCoroutine()) {
|
||||||
|
Coroutine::create(fn() => $closure($data));
|
||||||
|
} else {
|
||||||
|
call_user_func($closure, $data);
|
||||||
|
}
|
||||||
|
$this->offset += $size;
|
||||||
|
$this->chunk($size, $closure);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $field
|
||||||
|
* @param string|null $setKey
|
||||||
|
*
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
|
public function column(string $field, ?string $setKey = NULL): ?array
|
||||||
|
{
|
||||||
|
return $this->get()->column($field, $setKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param mixed $value
|
||||||
* @return bool
|
*
|
||||||
* @throws
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function update(array $data): bool
|
public function withMock(mixed $value): static
|
||||||
{
|
{
|
||||||
if (count($data) < 1) {
|
$this->_mock = $value;
|
||||||
return true;
|
return $this;
|
||||||
}
|
}
|
||||||
$generate = $this->builder->update($data);
|
|
||||||
if (!is_bool($generate)) {
|
|
||||||
return (bool)$this->buildCommand($generate)->exec();
|
|
||||||
} else {
|
|
||||||
return $generate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $data
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function insert(array $data): bool
|
|
||||||
{
|
|
||||||
$sql = $this->builder->insert($data, isset($data[0]));
|
|
||||||
|
|
||||||
return (bool)$this->buildCommand($sql)->exec();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $filed
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function value(string $filed): mixed
|
|
||||||
{
|
|
||||||
return $this->first()[$filed] ?? NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function exists(): bool
|
|
||||||
{
|
|
||||||
return $this->buildCommand($this->limit(1)->builder->exists())->exists();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @return mixed
|
||||||
* @param array $params
|
*/
|
||||||
* @return int|bool
|
public function mock(): mixed
|
||||||
*/
|
{
|
||||||
public function execute(string $sql, array $params = []): int|bool
|
return $this->_mock;
|
||||||
{
|
}
|
||||||
return $this->buildCommand($sql, $params)->exec();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @param array $data
|
||||||
*/
|
*
|
||||||
public function delete(): bool
|
* @return ModelInterface|array
|
||||||
{
|
* @throws
|
||||||
return $this->buildCommand($this->builder->delete())->delete();
|
*/
|
||||||
}
|
public function populate(array $data): ModelInterface|array
|
||||||
|
{
|
||||||
|
$model = $this->modelClass->populates($data);
|
||||||
|
|
||||||
|
return $this->asArray ? $model->toArray() : $model;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function toSql(): string
|
||||||
|
{
|
||||||
|
return $this->builder->get();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
public function count(): int
|
||||||
|
{
|
||||||
|
return $this->buildCommand($this->builder->count())->rowCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $data
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
public function update(array $data): bool
|
||||||
|
{
|
||||||
|
if (count($data) < 1) {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
$generate = $this->builder->update($data);
|
||||||
|
if (!is_bool($generate)) {
|
||||||
|
return (bool)$this->buildCommand($generate)->exec();
|
||||||
|
} else {
|
||||||
|
return $generate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $data
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function insert(array $data): bool
|
||||||
|
{
|
||||||
|
$sql = $this->builder->insert($data, isset($data[0]));
|
||||||
|
|
||||||
|
return (bool)$this->buildCommand($sql)->exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $filed
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
public function value(string $filed): mixed
|
||||||
|
{
|
||||||
|
return $this->first()[$filed] ?? NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return bool
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
public function exists(): bool
|
||||||
|
{
|
||||||
|
return $this->buildCommand($this->limit(1)->builder->exists())->exists();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $sql
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return int|bool
|
||||||
|
*/
|
||||||
|
public function execute(string $sql, array $params = []): int|bool
|
||||||
|
{
|
||||||
|
return $this->buildCommand($sql, $params)->exec();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function delete(): bool
|
||||||
|
{
|
||||||
|
return $this->buildCommand($this->builder->delete())->delete();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -221,10 +221,11 @@ interface ActiveQueryInterface
|
|||||||
public function whereNotBetween(string $column, int|float $start, int|float $end): QueryTrait;
|
public function whereNotBetween(string $column, int|float $start, int|float $end): QueryTrait;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $column
|
* @param array|string $column
|
||||||
|
* @param mixed|null $value
|
||||||
* @return QueryTrait
|
* @return QueryTrait
|
||||||
*/
|
*/
|
||||||
public function where(array $column): QueryTrait;
|
public function where(array|string $column, mixed $value = null): QueryTrait;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+94
-41
@@ -1,4 +1,5 @@
|
|||||||
<?php /** @noinspection ALL */
|
<?php
|
||||||
|
/** @noinspection ALL */
|
||||||
/**
|
/**
|
||||||
* Created by PhpStorm.
|
* Created by PhpStorm.
|
||||||
* User: whwyy
|
* User: whwyy
|
||||||
@@ -22,6 +23,7 @@ use Database\ModelInterface;
|
|||||||
use Database\Relation;
|
use Database\Relation;
|
||||||
use Database\SqlBuilder;
|
use Database\SqlBuilder;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri\Di\Context;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use ReturnTypeWillChange;
|
use ReturnTypeWillChange;
|
||||||
@@ -61,7 +63,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
protected bool $skipValidate = false;
|
protected bool $skipValidate = FALSE;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -104,6 +106,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param array $data
|
||||||
|
*
|
||||||
* @return Model
|
* @return Model
|
||||||
*/
|
*/
|
||||||
public function setWith(array $data): static
|
public function setWith(array $data): static
|
||||||
@@ -162,6 +165,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $bool
|
* @param bool $bool
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setIsNowExample(bool $bool = FALSE): static
|
public function setIsNowExample(bool $bool = FALSE): static
|
||||||
@@ -210,9 +214,9 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
public function hasPrimaryValue(): bool
|
public function hasPrimaryValue(): bool
|
||||||
{
|
{
|
||||||
if ($this->hasPrimary()) {
|
if ($this->hasPrimary()) {
|
||||||
return $this->getPrimaryValue() === null;
|
return $this->getPrimaryValue() === NULL;
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -222,40 +226,44 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
*/
|
*/
|
||||||
public function getPrimaryValue(): ?int
|
public function getPrimaryValue(): ?int
|
||||||
{
|
{
|
||||||
if ($this->hasPrimary()) {
|
if ($this->hasPrimary() && isset($this->_oldAttributes[$this->getPrimary()])) {
|
||||||
return (int)$this->_oldAttributes[$this->getPrimary()] ?? null;
|
return (int)$this->_oldAttributes[$this->getPrimary()];
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int|string|array $param
|
* @param int|string|array $param
|
||||||
|
*
|
||||||
* @return Model|null
|
* @return Model|null
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public static function findOne(int|string|array $param): ?static
|
public static function findOne(int|string|array|null $param): ?static
|
||||||
{
|
{
|
||||||
$model = static::instance();
|
if (empty($param)) {
|
||||||
$query = new ActiveQuery($model);
|
return NULL;
|
||||||
|
}
|
||||||
|
$query = new ActiveQuery($model = static::instance());
|
||||||
$query->from($model->getTable())->alias('t1');
|
$query->from($model->getTable())->alias('t1');
|
||||||
if (is_numeric($param)) {
|
if (is_numeric($param)) {
|
||||||
$query->where([$model->getPrimary() => $param]);
|
$query->where([$model->getPrimary() => +$param]);
|
||||||
} else if (is_array($param)) {
|
} else if (is_array($param)) {
|
||||||
$query->where($param);
|
$query->where($param);
|
||||||
} else {
|
} else {
|
||||||
$query->whereRaw($param);
|
$query->whereRaw($param);
|
||||||
}
|
}
|
||||||
$data = $query->first();
|
if (($data = $query->first()) === FALSE) {
|
||||||
if ($data === false) {
|
|
||||||
throw new Exception($model->getLastError());
|
throw new Exception($model->getLastError());
|
||||||
|
} else {
|
||||||
|
return $data;
|
||||||
}
|
}
|
||||||
return $data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $param
|
* @param int $param
|
||||||
|
*
|
||||||
* @return Model|null
|
* @return Model|null
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -289,6 +297,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int|string|array $condition
|
* @param int|string|array $condition
|
||||||
|
*
|
||||||
* @return static|null
|
* @return static|null
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -300,6 +309,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|array $condition
|
* @param string|array $condition
|
||||||
|
*
|
||||||
* @return Collection
|
* @return Collection
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -323,7 +333,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
public static function query(): ActiveQuery
|
public static function query(): ActiveQuery
|
||||||
{
|
{
|
||||||
$model = new ActiveQuery(static::instance());
|
$model = new ActiveQuery(static::instance());
|
||||||
$model->from($model->getTable())->alias('t1');
|
$model->select()->from($model->getTable())->alias('t1');
|
||||||
return $model;
|
return $model;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -377,6 +387,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function setAttribute(string $name, mixed $value): mixed
|
public function setAttribute(string $name, mixed $value): mixed
|
||||||
@@ -391,6 +402,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function setOldAttribute(string $name, mixed $value): mixed
|
public function setOldAttribute(string $name, mixed $value): mixed
|
||||||
@@ -404,6 +416,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -418,6 +431,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setOldAttributes(array $param): static
|
public function setOldAttributes(array $param): static
|
||||||
@@ -436,14 +450,17 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
private function insert(): bool|static
|
private function insert(): bool|static
|
||||||
{
|
{
|
||||||
$sql = SqlBuilder::builder($query = static::query())->insert($this->_attributes);
|
$sql = SqlBuilder::builder($query = static::query())->insert($this->_attributes);
|
||||||
$lastId = $this->getConnection()->createCommand($sql, $query->params)->save();
|
$lastId = $this->getConnection()->createCommand($sql, $query->params)->exec();
|
||||||
if ($lastId === false) {
|
if ($lastId === FALSE) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if ($this->hasPrimary()) {
|
if (!$this->hasPrimary()) {
|
||||||
$this->_attributes[$this->getPrimary()] = $lastId;
|
return $this->refresh()->afterSave($this->_attributes, []);
|
||||||
}
|
}
|
||||||
return $this;
|
|
||||||
|
$this->_attributes[$this->getPrimary()] = $lastId;
|
||||||
|
|
||||||
|
return $this->refresh()->afterSave($this->_attributes, [$this->getPrimary() => $lastId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -451,6 +468,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
* @param array $old
|
* @param array $old
|
||||||
* @param array $condition
|
* @param array $condition
|
||||||
* @param array $change
|
* @param array $change
|
||||||
|
*
|
||||||
* @return $this|bool
|
* @return $this|bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -458,13 +476,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
{
|
{
|
||||||
$query = static::query()->where($condition);
|
$query = static::query()->where($condition);
|
||||||
if (count($change) < 1) {
|
if (count($change) < 1) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
$generate = SqlBuilder::builder($query)->update($change);
|
$generate = SqlBuilder::builder($query)->update($change);
|
||||||
if ($generate === false) {
|
if ($generate === FALSE) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if (!$this->getConnection()->createCommand($generate, $query->params)->save()) {
|
if (!$this->getConnection()->createCommand($generate, $query->params)->exec()) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return $this->refresh()->afterSave($old, $change);
|
return $this->refresh()->afterSave($old, $change);
|
||||||
@@ -524,6 +542,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $value
|
* @param array $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function populates(array $value): static
|
public function populates(array $value): static
|
||||||
@@ -537,6 +556,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $rule
|
* @param array $rule
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -556,6 +576,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $rule
|
* @param array $rule
|
||||||
|
*
|
||||||
* @return Validator
|
* @return Validator
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -576,6 +597,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
|
*
|
||||||
* @return null
|
* @return null
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -591,18 +613,19 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
*/
|
*/
|
||||||
public function getRelation(): ?Relation
|
public function getRelation(): ?Relation
|
||||||
{
|
{
|
||||||
return Kiri::getDi()->get(Relation::class);
|
return di(Relation::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $attribute
|
* @param string $attribute
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function has(string $attribute): bool
|
public function has(string $attribute): bool
|
||||||
{
|
{
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -628,6 +651,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param array $oldAttributes
|
* @param array $oldAttributes
|
||||||
* @param array $changeAttributes
|
* @param array $changeAttributes
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function afterSave(array $oldAttributes, array $changeAttributes): bool
|
public function afterSave(array $oldAttributes, array $changeAttributes): bool
|
||||||
@@ -638,6 +662,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param self $model
|
* @param self $model
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -653,6 +678,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
public function refresh(): static
|
public function refresh(): static
|
||||||
{
|
{
|
||||||
$this->_oldAttributes = $this->_attributes;
|
$this->_oldAttributes = $this->_attributes;
|
||||||
|
$this->isNewExample = FALSE;
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -660,17 +686,21 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function __set(string $name, mixed $value): void
|
public function __set(string $name, mixed $value): void
|
||||||
{
|
{
|
||||||
if ($this->hasRelateMethod($name, 'set')) {
|
$prefix = 'set' . ucfirst($name);
|
||||||
$this->{'set' . ucfirst($name)}($value);
|
if (method_exists($this, $prefix)) {
|
||||||
|
$this->{$prefix}($value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$method = $prefix . 'Attribute';
|
||||||
|
if (method_exists($this, $method)) {
|
||||||
|
$this->_attributes[$name] = $this->{$method}($value);
|
||||||
} else {
|
} else {
|
||||||
$method = 'set' . ucfirst($name) . 'Attribute';
|
|
||||||
if (method_exists($this, $method)) {
|
|
||||||
$value = $this->{$method} ($value);
|
|
||||||
}
|
|
||||||
$this->_attributes[$name] = $value;
|
$this->_attributes[$name] = $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -678,12 +708,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function __get(string $name): mixed
|
public function __get(string $name): mixed
|
||||||
{
|
{
|
||||||
$value = $this->_attributes[$name] ?? null;
|
$value = $this->_attributes[$name] ?? NULL;
|
||||||
if (!$this->hasRelateMethod($name)) {
|
if (!method_exists($this, 'get' . ucfirst($name))) {
|
||||||
return $this->withPropertyOverride($name, $value);
|
return $this->withPropertyOverride($name, $value);
|
||||||
} else {
|
} else {
|
||||||
return $this->withRelate($name);
|
return $this->withRelate($name);
|
||||||
@@ -694,9 +725,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed|null $value
|
* @param mixed|null $value
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
protected function withPropertyOverride(string $name, mixed $value = null): mixed
|
protected function withPropertyOverride(string $name, mixed $value = NULL): mixed
|
||||||
{
|
{
|
||||||
$method = 'get' . ucfirst($name) . 'Attribute';
|
$method = 'get' . ucfirst($name) . 'Attribute';
|
||||||
if (method_exists($this, $method)) {
|
if (method_exists($this, $method)) {
|
||||||
@@ -710,16 +742,26 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param string $prefix
|
* @param string $prefix
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
protected function hasRelateMethod(string $name, string $prefix = 'get'): bool
|
protected function hasRelateMethod(string $name): bool
|
||||||
{
|
{
|
||||||
return method_exists($this, $prefix . ucfirst($name));
|
$reflection = $this->container->get(static::class);
|
||||||
|
if (!$reflection->hasMethod($name)) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
if ($reflection->getMethod($name)->isStatic() || !$reflection->getMethod($name)->isPublic()) {
|
||||||
|
return FALSE;
|
||||||
|
} else {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
protected function withRelate(string $name): mixed
|
protected function withRelate(string $name): mixed
|
||||||
@@ -734,6 +776,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $name
|
* @param $name
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function __isset(string $name): bool
|
public function __isset(string $name): bool
|
||||||
@@ -744,6 +787,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -754,6 +798,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -765,18 +810,22 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
#[ReturnTypeWillChange] public function offsetSet(mixed $offset, mixed $value): void
|
#[ReturnTypeWillChange]
|
||||||
|
public function offsetSet(mixed $offset, mixed $value): void
|
||||||
{
|
{
|
||||||
$this->__set($offset, $value);
|
$this->__set($offset, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
|
*
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
#[ReturnTypeWillChange] public function offsetUnset(mixed $offset): void
|
#[ReturnTypeWillChange]
|
||||||
|
public function offsetUnset(mixed $offset): void
|
||||||
{
|
{
|
||||||
if (!isset($this->_attributes[$offset]) && !isset($this->_oldAttributes[$offset])) {
|
if (!isset($this->_attributes[$offset]) && !isset($this->_oldAttributes[$offset])) {
|
||||||
return;
|
return;
|
||||||
@@ -787,6 +836,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string ...$params
|
* @param string ...$params
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function unset(string ...$params): array
|
public function unset(string ...$params): array
|
||||||
@@ -797,6 +847,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param array $data
|
||||||
|
*
|
||||||
* @return static
|
* @return static
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -813,6 +864,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param array $arguments
|
* @param array $arguments
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function __callStatic(string $name, array $arguments)
|
public static function __callStatic(string $name, array $arguments)
|
||||||
@@ -823,11 +875,12 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $field
|
* @param string $field
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getOldAttribute(string $field): mixed
|
public function getOldAttribute(string $field): mixed
|
||||||
{
|
{
|
||||||
return $this->_oldAttributes[$field] ?? null;
|
return $this->_oldAttributes[$field] ?? NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-11
@@ -47,15 +47,6 @@ class Command extends Component
|
|||||||
return (bool)$this->_prepare();
|
return (bool)$this->_prepare();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function save(): bool
|
|
||||||
{
|
|
||||||
return (bool)$this->_prepare();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool|array
|
* @return bool|array
|
||||||
@@ -118,6 +109,7 @@ class Command extends Component
|
|||||||
{
|
{
|
||||||
$client = $this->connection->getConnection();
|
$client = $this->connection->getConnection();
|
||||||
try {
|
try {
|
||||||
|
$startTime = microtime(true);
|
||||||
if (($prepare = $client->prepare($this->sql)) === false) {
|
if (($prepare = $client->prepare($this->sql)) === false) {
|
||||||
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $client->errorInfo()[2]);
|
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $client->errorInfo()[2]);
|
||||||
}
|
}
|
||||||
@@ -127,7 +119,7 @@ class Command extends Component
|
|||||||
$result = $method == 'rowCount' ? $prepare->rowCount() : $prepare->{$method}(PDO::FETCH_ASSOC);
|
$result = $method == 'rowCount' ? $prepare->rowCount() : $prepare->{$method}(PDO::FETCH_ASSOC);
|
||||||
$prepare->closeCursor();
|
$prepare->closeCursor();
|
||||||
|
|
||||||
$this->connection->println($this->sql, $this->params);
|
$this->connection->println($startTime, microtime(true), $this->sql, $this->params);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
} catch (Throwable $throwable) {
|
} catch (Throwable $throwable) {
|
||||||
@@ -160,6 +152,7 @@ class Command extends Component
|
|||||||
{
|
{
|
||||||
$client = $this->connection->getConnection();
|
$client = $this->connection->getConnection();
|
||||||
try {
|
try {
|
||||||
|
$startTime = microtime(true);
|
||||||
if (($prepare = $client->prepare($this->sql)) === false) {
|
if (($prepare = $client->prepare($this->sql)) === false) {
|
||||||
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $prepare->errorInfo()[2]);
|
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $prepare->errorInfo()[2]);
|
||||||
}
|
}
|
||||||
@@ -170,7 +163,7 @@ class Command extends Component
|
|||||||
|
|
||||||
$result = $client->lastInsertId();
|
$result = $client->lastInsertId();
|
||||||
|
|
||||||
$this->connection->println($this->sql, $this->params);
|
$this->connection->println($startTime, microtime(true), $this->sql, $this->params);
|
||||||
|
|
||||||
return $result == 0 ? $prepare->rowCount() : (int)$result;
|
return $result == 0 ? $prepare->rowCount() : (int)$result;
|
||||||
} catch (Throwable $throwable) {
|
} catch (Throwable $throwable) {
|
||||||
|
|||||||
+20
-12
@@ -67,6 +67,14 @@ class Connection extends Component
|
|||||||
#[Container(LoggerInterface::class)]
|
#[Container(LoggerInterface::class)]
|
||||||
public StdoutLogger $logger;
|
public StdoutLogger $logger;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var EventProvider
|
||||||
|
*/
|
||||||
|
#[Container(EventProvider::class)]
|
||||||
|
public EventProvider $eventProvider;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Pool $connections
|
* @param Pool $connections
|
||||||
*/
|
*/
|
||||||
@@ -79,14 +87,16 @@ class Connection extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param float $startTime
|
||||||
|
* @param float $endTime
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function println(string $sql, array $params = []): void
|
public function println(float $startTime, float $endTime, string $sql, array $params = []): void
|
||||||
{
|
{
|
||||||
if (is_callable($this->_println)) {
|
if (is_callable($this->_println)) {
|
||||||
call_user_func($this->_println, $sql, $params);
|
call_user_func($this->_println, $startTime, $endTime, $sql, $params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,14 +107,13 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
public function init(): void
|
public function init(): void
|
||||||
{
|
{
|
||||||
$eventProvider = Kiri::getDi()->get(EventProvider::class);
|
$this->eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
||||||
$eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
$this->eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
||||||
$eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
$this->eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
||||||
$eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
$this->eventProvider->on(OnAfterRequest::class, [$this, 'clear']);
|
||||||
$eventProvider->on(OnAfterRequest::class, [$this, 'clear']);
|
$this->eventProvider->on(OnWorkerExit::class, [$this, 'disconnect']);
|
||||||
$eventProvider->on(OnWorkerExit::class, [$this, 'disconnect']);
|
$this->eventProvider->on(OnWorkerStart::class, [$this, 'tick']);
|
||||||
$eventProvider->on(OnWorkerStart::class, [$this, 'tick']);
|
$this->eventProvider->on(OnTaskerStart::class, [$this, 'tick']);
|
||||||
$eventProvider->on(OnTaskerStart::class, [$this, 'tick']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -113,7 +122,7 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
public function tick(): void
|
public function tick(): void
|
||||||
{
|
{
|
||||||
$this->timerId = Timer::tick($this->tick_time, fn() => $this->checkClientHealth($this->pool()));
|
$this->timerId = Timer::tick($this->tick_time, fn () => $this->checkClientHealth($this->pool()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -348,7 +357,6 @@ class Connection extends Component
|
|||||||
public function newConnect(): \PDO
|
public function newConnect(): \PDO
|
||||||
{
|
{
|
||||||
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, [
|
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, [
|
||||||
// $pdo = new \PDO('mysql:dbname=' . $this->database . ';host=' . $this->cds, $this->username, $this->password, [
|
|
||||||
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
||||||
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
||||||
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
||||||
|
|||||||
+2
-3
@@ -4,8 +4,8 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
use Database\Traits\HasBase;
|
use Database\Traits\HasBase;
|
||||||
use Exception;
|
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Di\Context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class HasCount
|
* Class HasCount
|
||||||
@@ -20,8 +20,7 @@ class HasCount extends HasBase
|
|||||||
*/
|
*/
|
||||||
public function get(): array|ModelInterface|null
|
public function get(): array|ModelInterface|null
|
||||||
{
|
{
|
||||||
$relation = Kiri::getDi()->get(Relation::class);
|
return di(Relation::class)->get($this->name);
|
||||||
return $relation->get($this->name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -12,6 +12,7 @@ namespace Database;
|
|||||||
use Database\Traits\HasBase;
|
use Database\Traits\HasBase;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Di\Context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class HasMany
|
* Class HasMany
|
||||||
@@ -28,7 +29,6 @@ class HasMany extends HasBase
|
|||||||
*/
|
*/
|
||||||
public function get(): array|Collection|null
|
public function get(): array|Collection|null
|
||||||
{
|
{
|
||||||
$relation = Kiri::getDi()->get(Relation::class);
|
return di(Relation::class)->get($this->name);
|
||||||
return $relation->get($this->name);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -12,6 +12,7 @@ namespace Database;
|
|||||||
use Database\Traits\HasBase;
|
use Database\Traits\HasBase;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Di\Context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class HasOne
|
* Class HasOne
|
||||||
@@ -27,7 +28,6 @@ class HasOne extends HasBase
|
|||||||
*/
|
*/
|
||||||
public function get(): array|ModelInterface|null
|
public function get(): array|ModelInterface|null
|
||||||
{
|
{
|
||||||
$relation = Kiri::getDi()->get(Relation::class);
|
return di(Relation::class)->first($this->name);
|
||||||
return $relation->first($this->name);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -266,21 +266,21 @@ class Model extends Base\Model
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ModelInterface|string $modelName
|
* @param string $modelName
|
||||||
* @param string $foreignKey
|
* @param string $foreignKey
|
||||||
* @param string $localKey
|
* @param string $localKey
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function _hasBase(ModelInterface|string $modelName, string $foreignKey, string $localKey): string
|
private function _hasBase(string $modelName, string $foreignKey, string $localKey): string
|
||||||
{
|
{
|
||||||
if (($value = $this->{$localKey}) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
$relation = $this->getRelation();
|
$relation = di(Relation::class);
|
||||||
|
|
||||||
$primaryKey = $modelName . $foreignKey . $value;
|
$primaryKey = str_replace('\\', '_', $modelName) . '_' . $foreignKey . '_' . $value;
|
||||||
if (!$relation->hasIdentification($primaryKey)) {
|
if (!$relation->hasIdentification($primaryKey)) {
|
||||||
$relation->bindIdentification($primaryKey, $modelName::query()->where([$foreignKey => $value]));
|
$relation->bindIdentification($primaryKey, $modelName::query()->where([$foreignKey => $value]));
|
||||||
}
|
}
|
||||||
@@ -289,59 +289,59 @@ class Model extends Base\Model
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ModelInterface|string $modelName
|
* @param string $modelName
|
||||||
* @param string $foreignKey
|
* @param string $foreignKey
|
||||||
* @param string $localKey
|
* @param string $localKey
|
||||||
* @return HasOne|ActiveQuery
|
* @return HasOne|ActiveQuery
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function hasOne(ModelInterface|string $modelName, string $foreignKey, string $localKey): HasOne|ActiveQuery
|
public function hasOne(string $modelName, string $foreignKey, string $localKey): HasOne|ActiveQuery
|
||||||
{
|
{
|
||||||
return new HasOne($this->_hasBase($modelName, $foreignKey, $localKey));
|
return new HasOne($this->_hasBase($modelName, $foreignKey, $localKey));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ModelInterface|string $modelName
|
* @param string $modelName
|
||||||
* @param string $foreignKey
|
* @param string $foreignKey
|
||||||
* @param string $localKey
|
* @param string $localKey
|
||||||
* @return ActiveQuery|HasCount
|
* @return ActiveQuery|HasCount
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function hasCount(ModelInterface|string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasCount
|
public function hasCount(string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasCount
|
||||||
{
|
{
|
||||||
return new HasCount($this->_hasBase($modelName, $foreignKey, $localKey));
|
return new HasCount($this->_hasBase($modelName, $foreignKey, $localKey));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ModelInterface|string $modelName
|
* @param string $modelName
|
||||||
* @param string $foreignKey
|
* @param string $foreignKey
|
||||||
* @param string $localKey
|
* @param string $localKey
|
||||||
* @return ActiveQuery|HasMany
|
* @return ActiveQuery|HasMany
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function hasMany(ModelInterface|string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasMany
|
public function hasMany(string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasMany
|
||||||
{
|
{
|
||||||
return new HasMany($this->_hasBase($modelName, $foreignKey, $localKey));
|
return new HasMany($this->_hasBase($modelName, $foreignKey, $localKey));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ModelInterface|string $modelName
|
* @param string $modelName
|
||||||
* @param string $foreignKey
|
* @param string $foreignKey
|
||||||
* @param string $localKey
|
* @param string $localKey
|
||||||
* @return ActiveQuery|HasMany
|
* @return ActiveQuery|HasMany
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function hasIn(ModelInterface|string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasMany
|
public function hasIn(string $modelName, string $foreignKey, string $localKey): ActiveQuery|HasMany
|
||||||
{
|
{
|
||||||
if (($value = $this->{$localKey}) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
$relation = $this->getRelation();
|
$relation = di(Relation::class);
|
||||||
|
|
||||||
$primaryKey = $modelName . $foreignKey . json_encode($value, JSON_UNESCAPED_UNICODE);
|
$primaryKey = str_replace('\\', '_', $modelName) . '_' . $foreignKey . '_' . implode('_', $value);
|
||||||
if (!$relation->hasIdentification($primaryKey)) {
|
if (!$relation->hasIdentification($primaryKey)) {
|
||||||
$relation->bindIdentification($primaryKey, $modelName::query()->whereIn($foreignKey, $value));
|
$relation->bindIdentification($primaryKey, $modelName::query()->whereIn($foreignKey, $value));
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -18,10 +18,10 @@ interface ModelInterface
|
|||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|string|int $param
|
* @param array|string|int|null $param
|
||||||
* @return ModelInterface|null
|
* @return ModelInterface|null
|
||||||
*/
|
*/
|
||||||
public static function findOne(array|string|int $param): ?static;
|
public static function findOne(array|string|int|null $param): ?static;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+11
-15
@@ -4,8 +4,10 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
|
|
||||||
|
use Database\Base\ActiveQueryInterface;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Di\Context;
|
use Kiri\Di\Context;
|
||||||
|
use Swoole\Coroutine;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Relation
|
* Class Relation
|
||||||
@@ -34,7 +36,7 @@ class Relation extends Component
|
|||||||
*/
|
*/
|
||||||
public function hasIdentification(string $identification): bool
|
public function hasIdentification(string $identification): bool
|
||||||
{
|
{
|
||||||
return isset($this->_query[$identification]) && $this->_query[$identification] instanceof ActiveQuery;
|
return isset($this->_query[$identification]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -54,12 +56,10 @@ class Relation extends Component
|
|||||||
*/
|
*/
|
||||||
public function first(string $_identification): mixed
|
public function first(string $_identification): mixed
|
||||||
{
|
{
|
||||||
if (Context::exists($_identification)) {
|
if (!Context::exists($_identification)) {
|
||||||
return Context::get($_identification);
|
Context::set($_identification, $this->_query[$_identification]->first());
|
||||||
}
|
}
|
||||||
$activeModel = $this->_query[$_identification]->first();
|
return Context::get($_identification);
|
||||||
unset($this->_query[$_identification]);
|
|
||||||
return Context::set($_identification, $activeModel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -69,12 +69,10 @@ class Relation extends Component
|
|||||||
*/
|
*/
|
||||||
public function count(string $_identification): mixed
|
public function count(string $_identification): mixed
|
||||||
{
|
{
|
||||||
if (Context::exists($_identification)) {
|
if (!Context::exists($_identification)) {
|
||||||
return Context::get($_identification);
|
Context::set($_identification, $this->_query[$_identification]->count());
|
||||||
}
|
}
|
||||||
$activeModel = $this->_query[$_identification]->count();
|
return Context::get($_identification);
|
||||||
unset($this->_query[$_identification]);
|
|
||||||
return Context::set($_identification, $activeModel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -86,11 +84,9 @@ class Relation extends Component
|
|||||||
public function get(string $_identification): mixed
|
public function get(string $_identification): mixed
|
||||||
{
|
{
|
||||||
if (Context::exists($_identification)) {
|
if (Context::exists($_identification)) {
|
||||||
return Context::get($_identification);
|
Context::set($_identification, $this->_query[$_identification]->get());
|
||||||
}
|
}
|
||||||
$activeModel = $this->_query[$_identification]->get();
|
return Context::get($_identification);
|
||||||
unset($this->_query[$_identification]);
|
|
||||||
return Context::set($_identification, $activeModel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+25
-34
@@ -1,4 +1,5 @@
|
|||||||
<?php /** @noinspection ALL */
|
<?php
|
||||||
|
/** @noinspection ALL */
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@@ -51,7 +52,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function getCondition(): string
|
public function getCondition(): string
|
||||||
{
|
{
|
||||||
return $this->where($this->query->where);
|
return $this->where($this->query->getWhere());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -73,9 +74,9 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function update(array $attributes): bool|string
|
public function update(array $attributes): bool|string
|
||||||
{
|
{
|
||||||
$conditions = $this->query->params;
|
$conditions = $this->query->getParams();
|
||||||
$this->query->params = [];
|
$this->query->setParams([]);
|
||||||
$data = $this->__updateBuilder($this->makeParams($attributes));
|
$data = $this->__updateBuilder($this->makeParams($attributes));
|
||||||
foreach ($conditions as $condition) {
|
foreach ($conditions as $condition) {
|
||||||
$this->query->pushParam($condition);
|
$this->query->pushParam($condition);
|
||||||
}
|
}
|
||||||
@@ -109,7 +110,7 @@ class SqlBuilder extends Component
|
|||||||
if (empty($string)) {
|
if (empty($string)) {
|
||||||
return Kiri::getLogger()->failure('None data update.');
|
return Kiri::getLogger()->failure('None data update.');
|
||||||
}
|
}
|
||||||
return 'UPDATE ' . $this->query->from . ' SET ' . implode(',', $string) . $this->make();
|
return 'UPDATE ' . $this->query->getFrom() . ' SET ' . implode(',', $string) . $this->make();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -121,7 +122,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function insert(array $attributes, bool $isBatch = false): string
|
public function insert(array $attributes, bool $isBatch = false): string
|
||||||
{
|
{
|
||||||
$update = 'INSERT INTO ' . $this->query->from;
|
$update = 'INSERT INTO ' . $this->query->getFrom();
|
||||||
if ($isBatch === false) {
|
if ($isBatch === false) {
|
||||||
$attributes = [$attributes];
|
$attributes = [$attributes];
|
||||||
}
|
}
|
||||||
@@ -143,7 +144,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function delete(): string
|
public function delete(): string
|
||||||
{
|
{
|
||||||
return 'DELETE FROM ' . $this->query->from . $this->make();
|
return 'DELETE FROM ' . $this->query->getFrom() . $this->make();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -189,7 +190,7 @@ class SqlBuilder extends Component
|
|||||||
if (is_null($value)) {
|
if (is_null($value)) {
|
||||||
return $keys;
|
return $keys;
|
||||||
}
|
}
|
||||||
if (is_string($value) && $this->isMath($value)) {
|
if (preg_match('/^[+|-]\s\d+$/', (string)$value)) {
|
||||||
$keys[] = $key . '=' . $key . ' ' . $value;
|
$keys[] = $key . '=' . $key . ' ' . $value;
|
||||||
} else {
|
} else {
|
||||||
$this->query->pushParam($value);
|
$this->query->pushParam($value);
|
||||||
@@ -199,23 +200,13 @@ class SqlBuilder extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $value
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function isMath(string $value): bool
|
|
||||||
{
|
|
||||||
return str_starts_with($value, '+ ') || str_starts_with($value, '- ');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function one(): string
|
public function one(): string
|
||||||
{
|
{
|
||||||
return $this->makeSelect($this->query->select) . $this->make() . $this->makeLimit($this->query->limit(1));
|
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query->limit(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -225,7 +216,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function all(): string
|
public function all(): string
|
||||||
{
|
{
|
||||||
return $this->makeSelect($this->query->select) . $this->make() . $this->makeLimit($this->query);
|
return $this->makeSelect($this->query->getSelect()) . $this->make() . $this->makeLimit($this->query);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -277,12 +268,12 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
private function makeSelect(array $select = ['*']): string
|
private function makeSelect(array $select = ['*']): string
|
||||||
{
|
{
|
||||||
$select = "SELECT " . implode(',', $select) . " FROM " . $this->query->from;
|
$select = "SELECT " . implode(',', $select) . " FROM " . $this->query->getFrom();
|
||||||
if ($this->query->alias != "") {
|
if ($this->query->getAlias() != "") {
|
||||||
$select .= " AS " . $this->query->alias;
|
$select .= " AS " . $this->query->getAlias();
|
||||||
}
|
}
|
||||||
if (count($this->query->join) > 0) {
|
if (count($this->query->getJoin()) > 0) {
|
||||||
$select .= ' ' . implode(' ', $this->query->join);
|
$select .= ' ' . implode(' ', $this->query->getJoin());
|
||||||
}
|
}
|
||||||
return $select;
|
return $select;
|
||||||
}
|
}
|
||||||
@@ -293,8 +284,8 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
private function makeGroup(): string
|
private function makeGroup(): string
|
||||||
{
|
{
|
||||||
if ($this->query->group != "") {
|
if ($this->query->getGroup() != "") {
|
||||||
return ' GROUP BY ' . $this->query->group;
|
return ' GROUP BY ' . $this->query->getGroup();
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
@@ -305,8 +296,8 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
private function makeOrder(): string
|
private function makeOrder(): string
|
||||||
{
|
{
|
||||||
if (count($this->query->order) > 0) {
|
if (count($this->query->getOrder()) > 0) {
|
||||||
return ' ORDER BY ' . implode(',', $this->query->order);
|
return ' ORDER BY ' . implode(',', $this->query->getOrder());
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
@@ -317,7 +308,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
private function makeCondition(): string
|
private function makeCondition(): string
|
||||||
{
|
{
|
||||||
$condition = $this->where($this->query->where);
|
$condition = $this->where($this->query->getWhere());
|
||||||
if (empty($condition)) {
|
if (empty($condition)) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
@@ -327,8 +318,8 @@ class SqlBuilder extends Component
|
|||||||
|
|
||||||
private function makeLimit(): string
|
private function makeLimit(): string
|
||||||
{
|
{
|
||||||
if ($this->query->offset >= 0 && $this->query->limit >= 1) {
|
if ($this->query->getOffset() >= 0 && $this->query->getLimit() >= 1) {
|
||||||
return ' LIMIT ' . $this->query->offset . ',' . $this->query->limit;
|
return ' LIMIT ' . $this->query->getOffset() . ',' . $this->query->getLimit();
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
@@ -354,7 +345,7 @@ class SqlBuilder extends Component
|
|||||||
*/
|
*/
|
||||||
public function truncate(): string
|
public function truncate(): string
|
||||||
{
|
{
|
||||||
return sprintf('TRUNCATE %s', $this->query->from);
|
return sprintf('TRUNCATE %s', $this->query->getFrom());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+7
-2
@@ -13,6 +13,7 @@ use Database\ModelInterface;
|
|||||||
use Database\Collection;
|
use Database\Collection;
|
||||||
use Database\Relation;
|
use Database\Relation;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Di\Context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class HasBase
|
* Class HasBase
|
||||||
@@ -52,12 +53,16 @@ abstract class HasBase implements \Database\Traits\Relation
|
|||||||
* @param string $name
|
* @param string $name
|
||||||
* @param array $arguments
|
* @param array $arguments
|
||||||
* @return $this|mixed
|
* @return $this|mixed
|
||||||
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function __call(string $name, array $arguments)
|
public function __call(string $name, array $arguments)
|
||||||
{
|
{
|
||||||
if ($name !== 'get') {
|
if ($name !== 'get') {
|
||||||
$relation = Kiri::getDi()->get(Relation::class);
|
$query = di(Relation::class)->getQuery($this->name);
|
||||||
$relation->getQuery($this->name)->$name(...$arguments);
|
if (is_null($query)) {
|
||||||
|
throw new \Exception('Unknown relation key: ' . $this->name);
|
||||||
|
}
|
||||||
|
$query->$name(...$arguments);
|
||||||
return $this;
|
return $this;
|
||||||
} else {
|
} else {
|
||||||
return $this->get();
|
return $this->get();
|
||||||
|
|||||||
+316
-32
@@ -27,20 +27,20 @@ use Kiri\Abstracts\Component;
|
|||||||
*/
|
*/
|
||||||
abstract class QueryTrait extends Component implements ActiveQueryInterface, ISqlBuilder
|
abstract class QueryTrait extends Component implements ActiveQueryInterface, ISqlBuilder
|
||||||
{
|
{
|
||||||
public array $where = [];
|
protected array $where = [];
|
||||||
public array $select = ['*'];
|
protected array $select = ['t1.*'];
|
||||||
public array $join = [];
|
protected array $join = [];
|
||||||
public array $order = [];
|
protected array $order = [];
|
||||||
public int $offset = -1;
|
protected int $offset = -1;
|
||||||
public int $limit = -1;
|
protected int $limit = -1;
|
||||||
public string $group = '';
|
protected string $group = '';
|
||||||
public string $from = '';
|
protected string $from = '';
|
||||||
public string $alias = 't1';
|
protected string $alias = '';
|
||||||
protected array $filter = [];
|
protected array $filter = [];
|
||||||
protected bool $lock = false;
|
protected bool $lock = FALSE;
|
||||||
protected SqlBuilder $builder;
|
protected SqlBuilder $builder;
|
||||||
public array $params = [];
|
protected array $params = [];
|
||||||
private array $_alias = ['t1'];
|
protected array $_alias = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -53,7 +53,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* Comply constructor.
|
* Comply constructor.
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function __construct($model = null)
|
public function __construct($model = NULL)
|
||||||
{
|
{
|
||||||
if (!is_null($model)) {
|
if (!is_null($model)) {
|
||||||
$this->modelClass = $model;
|
$this->modelClass = $model;
|
||||||
@@ -63,9 +63,249 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $where
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setWhere(array $where): void
|
||||||
|
{
|
||||||
|
$this->where = $where;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Closure|Query $callback
|
||||||
|
* @param array $attributes
|
||||||
|
*
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function whereNotExists(Closure|Query $callback, array $attributes = []): static
|
||||||
|
{
|
||||||
|
if ($callback instanceof Query) {
|
||||||
|
$this->where[] = 'NOT EXISTS(' . $callback->build() . ')';
|
||||||
|
} else {
|
||||||
|
$this->where[] = 'NOT EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
||||||
|
}
|
||||||
|
if (count($attributes) > 0) {
|
||||||
|
$this->bindParams($attributes);
|
||||||
|
}
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Closure|Query $callback
|
||||||
|
* @param array $attributes
|
||||||
|
*
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function whereExists(Closure|Query $callback, array $attributes = []): static
|
||||||
|
{
|
||||||
|
if ($callback instanceof Query) {
|
||||||
|
$this->where[] = 'EXISTS(' . $callback->build() . ')';
|
||||||
|
} else {
|
||||||
|
$this->where[] = 'EXISTS(' . $this->makeClosureFunction($callback) . ')';
|
||||||
|
}
|
||||||
|
if (count($attributes) > 0) {
|
||||||
|
$this->bindParams($attributes);
|
||||||
|
}
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $select
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setSelect(array $select): void
|
||||||
|
{
|
||||||
|
$this->select = $select;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $join
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setJoin(array $join): void
|
||||||
|
{
|
||||||
|
$this->join = $join;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $order
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setOrder(array $order): void
|
||||||
|
{
|
||||||
|
$this->order = $order;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $offset
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setOffset(int $offset): void
|
||||||
|
{
|
||||||
|
$this->offset = $offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $limit
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setLimit(int $limit): void
|
||||||
|
{
|
||||||
|
$this->limit = $limit;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $group
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setGroup(string $group): void
|
||||||
|
{
|
||||||
|
$this->group = $group;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $from
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setFrom(string $from): void
|
||||||
|
{
|
||||||
|
$this->from = $from;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $alias
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setAlias(string $alias): void
|
||||||
|
{
|
||||||
|
$this->alias = $alias;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setParams(array $params): void
|
||||||
|
{
|
||||||
|
$this->params = $params;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getWhere(): array
|
||||||
|
{
|
||||||
|
return $this->where;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array|string[]
|
||||||
|
*/
|
||||||
|
public function getSelect(): array
|
||||||
|
{
|
||||||
|
return $this->select;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getJoin(): array
|
||||||
|
{
|
||||||
|
return $this->join;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getOrder(): array
|
||||||
|
{
|
||||||
|
return $this->order;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function getOffset(): int
|
||||||
|
{
|
||||||
|
return $this->offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function getLimit(): int
|
||||||
|
{
|
||||||
|
return $this->limit;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getGroup(): string
|
||||||
|
{
|
||||||
|
return $this->group;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getFrom(): string
|
||||||
|
{
|
||||||
|
return $this->from;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getAlias(): string
|
||||||
|
{
|
||||||
|
return $this->alias;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getParams(): array
|
||||||
|
{
|
||||||
|
return $this->params;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param callable $callable
|
* @param callable $callable
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function when(string $column, callable $callable): static
|
public function when(string $column, callable $callable): static
|
||||||
@@ -82,6 +322,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $lock
|
* @param bool $lock
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function lock(bool $lock): static
|
public function lock(bool $lock): static
|
||||||
@@ -93,6 +334,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $whereRaw
|
* @param string $whereRaw
|
||||||
|
*
|
||||||
* @return QueryTrait
|
* @return QueryTrait
|
||||||
*/
|
*/
|
||||||
public function whereRaw(string $whereRaw): static
|
public function whereRaw(string $whereRaw): static
|
||||||
@@ -118,6 +360,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereLocate(string $column, string $value): static
|
public function whereLocate(string $column, string $value): static
|
||||||
@@ -129,6 +372,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNull(string $column): static
|
public function whereNull(string $column): static
|
||||||
@@ -140,6 +384,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereEmpty(string $column): static
|
public function whereEmpty(string $column): static
|
||||||
@@ -151,6 +396,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNotEmpty(string $column): static
|
public function whereNotEmpty(string $column): static
|
||||||
@@ -162,6 +408,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNotNull(string $column): static
|
public function whereNotNull(string $column): static
|
||||||
@@ -187,16 +434,21 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|Closure $tableName
|
* @param string|Closure|Query $tableName
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function from(string|Closure $tableName): static
|
public function from(string|Closure|Query $tableName): static
|
||||||
{
|
{
|
||||||
if ($tableName instanceof Closure) {
|
if ($tableName instanceof Query) {
|
||||||
$tableName = call_user_func($tableName, $this->queryInstance());
|
$this->from = '(' . $tableName->build() . ')';
|
||||||
|
} else if ($tableName instanceof Closure) {
|
||||||
|
$this->from = '(' . $this->makeClosureFunction($tableName) . ')';
|
||||||
|
} else if (class_exists($tableName)) {
|
||||||
|
$this->from = (new $tableName)->getTable();
|
||||||
|
} else {
|
||||||
|
$this->from = $tableName;
|
||||||
}
|
}
|
||||||
$this->from = $tableName;
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -206,6 +458,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $on
|
* @param array $on
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* $query->join([$tableName, ['userId'=>'uuvOd']], $param)
|
* $query->join([$tableName, ['userId'=>'uuvOd']], $param)
|
||||||
* $query->join([$tableName, ['userId'=>'uuvOd'], $param])
|
* $query->join([$tableName, ['userId'=>'uuvOd'], $param])
|
||||||
@@ -236,6 +489,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $params
|
* @param array $params
|
||||||
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function bindParams(array $params): void
|
public function bindParams(array $params): void
|
||||||
@@ -248,6 +502,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $condition
|
* @param array $condition
|
||||||
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function onCondition(array $condition): string
|
private function onCondition(array $condition): string
|
||||||
@@ -267,16 +522,17 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
private function isAliasField(string $value): bool
|
private function isAliasField(string $value): bool
|
||||||
{
|
{
|
||||||
foreach ($this->_alias as $alias) {
|
foreach ($this->_alias as $alias) {
|
||||||
if (str_starts_with($value, $alias . '.')) {
|
if (str_starts_with($value, $alias . '.')) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -285,6 +541,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -306,6 +563,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -327,6 +585,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $alias
|
* @param string $alias
|
||||||
* @param array $onCondition
|
* @param array $onCondition
|
||||||
* @param array $param
|
* @param array $param
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -357,6 +616,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $field
|
* @param string $field
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function max(string $field): static
|
public function max(string $field): static
|
||||||
@@ -454,10 +714,11 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param array|Closure|string $conditionArray
|
* @param array|Closure|string $conditionArray
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
* @param null $value
|
* @param null $value
|
||||||
|
*
|
||||||
* @return QueryTrait
|
* @return QueryTrait
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function whereOr(array|Closure|string $conditionArray = [], string $opera = '=', $value = null): static
|
public function whereOr(array|Closure|string $conditionArray = [], string $opera = '=', $value = NULL): static
|
||||||
{
|
{
|
||||||
if ($conditionArray instanceof Closure) {
|
if ($conditionArray instanceof Closure) {
|
||||||
$conditionArray = $this->makeClosureFunction($conditionArray);
|
$conditionArray = $this->makeClosureFunction($conditionArray);
|
||||||
@@ -477,6 +738,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereLike(string $column, string $value): static
|
public function whereLike(string $column, string $value): static
|
||||||
@@ -490,6 +752,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereLeftLike(string $column, string $value): static
|
public function whereLeftLike(string $column, string $value): static
|
||||||
@@ -503,6 +766,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereRightLike(string $column, string $value): static
|
public function whereRightLike(string $column, string $value): static
|
||||||
@@ -516,6 +780,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $value
|
* @param string $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNotLike(string $column, string $value): static
|
public function whereNotLike(string $column, string $value): static
|
||||||
@@ -528,19 +793,22 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $columns
|
* @param string $columns
|
||||||
* @param array|Closure $value
|
* @param array|Closure|Query $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
* @throws
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function whereIn(string $columns, array|Closure $value): static
|
public function whereIn(string $columns, array|Closure|Query $value): static
|
||||||
{
|
{
|
||||||
if ($value instanceof Closure) {
|
if (is_array($value)) {
|
||||||
$value = $this->makeClosureFunction($value);
|
if (count($value) < 1) throw new Exception('Value must be an not empty array');
|
||||||
|
|
||||||
|
$this->where[] = $columns . ' IN (' . implode(',', $value) . ')';
|
||||||
|
} else if ($value instanceof Query) {
|
||||||
|
$this->where[] = $columns . ' IN (' . $value->build() . ')';
|
||||||
|
} else {
|
||||||
|
$this->where[] = $columns . ' IN (' . $this->makeClosureFunction($value) . ')';
|
||||||
}
|
}
|
||||||
if (count($value) < 1) {
|
|
||||||
$value = [-1];
|
|
||||||
}
|
|
||||||
$this->where[] = $columns . ' IN (' . implode(',', $value) . ')';
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -558,6 +826,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $columns
|
* @param string $columns
|
||||||
* @param array $value
|
* @param array $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNotIn(string $columns, array $value): static
|
public function whereNotIn(string $columns, array $value): static
|
||||||
@@ -574,6 +843,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $column
|
* @param string $column
|
||||||
* @param int|float $start
|
* @param int|float $start
|
||||||
* @param int|float $end
|
* @param int|float $end
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereBetween(string $column, int|float $start, int|float $end): static
|
public function whereBetween(string $column, int|float $start, int|float $end): static
|
||||||
@@ -594,6 +864,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $column
|
* @param string $column
|
||||||
* @param int|float $start
|
* @param int|float $start
|
||||||
* @param int|float $end
|
* @param int|float $end
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereNotBetween(string $column, int|float $start, int|float $end): static
|
public function whereNotBetween(string $column, int|float $start, int|float $end): static
|
||||||
@@ -612,6 +883,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function pushParam(mixed $value): static
|
public function pushParam(mixed $value): static
|
||||||
@@ -623,10 +895,15 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|string $column
|
* @param array|string $column
|
||||||
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function where(array|string $column): static
|
public function where(array|string $column, mixed $value = NULL): static
|
||||||
{
|
{
|
||||||
|
if (func_num_args() === 2) {
|
||||||
|
return $this->addArray([$column => $value]);
|
||||||
|
}
|
||||||
if (is_string($column)) {
|
if (is_string($column)) {
|
||||||
return $this->whereRaw($column);
|
return $this->whereRaw($column);
|
||||||
} else {
|
} else {
|
||||||
@@ -639,6 +916,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $column
|
* @param string $column
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereMath(string $column, string $opera, mixed $value): static
|
public function whereMath(string $column, string $opera, mixed $value): static
|
||||||
@@ -651,6 +929,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Closure $closure
|
* @param Closure $closure
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function whereClosure(Closure $closure): static
|
public function whereClosure(Closure $closure): static
|
||||||
@@ -662,6 +941,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Closure|array $closure
|
* @param Closure|array $closure
|
||||||
|
*
|
||||||
* @return string
|
* @return string
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
@@ -708,6 +988,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $offset
|
* @param int $offset
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function offset(int $offset): static
|
public function offset(int $offset): static
|
||||||
@@ -736,12 +1017,13 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $array
|
* @param array $array
|
||||||
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
private function addArray(array $array): static
|
private function addArray(array $array): static
|
||||||
{
|
{
|
||||||
foreach ($array as $key => $value) {
|
foreach ($array as $key => $value) {
|
||||||
if ($value === null) {
|
if ($value === NULL) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$this->where[] = is_numeric($key) ? $value : $this->sprintf($key, $value);
|
$this->where[] = is_numeric($key) ? $value : $this->sprintf($key, $value);
|
||||||
@@ -754,6 +1036,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
* @param string $column
|
* @param string $column
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $opera
|
* @param string $opera
|
||||||
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function sprintf(string $column, mixed $value, string $opera = '='): string
|
private function sprintf(string $column, mixed $value, string $opera = '='): string
|
||||||
@@ -766,6 +1049,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
|
|||||||
/**
|
/**
|
||||||
* @param string $querySql
|
* @param string $querySql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
|
*
|
||||||
* @return Command
|
* @return Command
|
||||||
*/
|
*/
|
||||||
public function buildCommand(string $querySql, array $params = []): Command
|
public function buildCommand(string $querySql, array $params = []): Command
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
use Database\Query;
|
||||||
|
|
||||||
|
class Users extends \Database\Model
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public function hasD()
|
||||||
|
{
|
||||||
|
return $this->hasOne(static::class, 'id', 'id')->with([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Users::query()
|
||||||
|
->select(['*', (new Query(Users::class))
|
||||||
|
->where(['id' => 2])])
|
||||||
|
->from(function (Query $query) {
|
||||||
|
$query->from(Users::class)
|
||||||
|
->where(['id' => 1])
|
||||||
|
->groupBy('name DESC');
|
||||||
|
})->toSql();
|
||||||
Reference in New Issue
Block a user