Compare commits

...

21 Commits

Author SHA1 Message Date
as2252258 94857ecb46 eee 2025-02-17 16:29:10 +08:00
as2252258 0f0a3349fb eee 2025-02-17 16:26:32 +08:00
as2252258 7fb9c3ea05 eee 2025-01-18 20:28:24 +08:00
as2252258 11a939e8a1 eee 2024-12-31 15:52:20 +08:00
as2252258 1666af9906 eee 2024-12-29 21:34:12 +08:00
as2252258 78f7faba55 eee 2024-12-29 21:10:58 +08:00
as2252258 b3f50fc6e4 eee 2024-12-23 10:03:35 +08:00
as2252258 7b4604ce98 eee 2024-12-20 18:20:54 +08:00
as2252258 654cc483b3 eee 2024-12-18 11:42:09 +08:00
as2252258 c6b88256e3 eee 2024-12-18 11:31:15 +08:00
as2252258 5b4a6b9caa eee 2024-12-13 15:14:13 +08:00
as2252258 42af2e8bf9 eee 2024-12-13 15:03:09 +08:00
as2252258 db92238e9e eee 2024-12-13 14:45:03 +08:00
as2252258 530104ceb6 eee 2024-12-13 14:44:20 +08:00
as2252258 7ea245fc89 eee 2024-12-13 14:44:00 +08:00
as2252258 0cc1d3d9f7 eee 2024-12-13 14:35:53 +08:00
as2252258 c444de4815 eee 2024-12-13 14:35:04 +08:00
as2252258 263f99c8c3 eee 2024-12-13 14:34:06 +08:00
as2252258 450870ea19 eee 2024-12-13 14:08:04 +08:00
as2252258 b3e3e95081 eee 2024-12-13 14:04:58 +08:00
as2252258 f084c171ff ea 2024-12-12 12:10:19 +08:00
5 changed files with 440 additions and 281 deletions
+234 -212
View File
@@ -22,250 +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;
} }
/** /**
* @param string $column * @param string $column
* @param int|float $amount * @param int|float $amount
* @return bool *
*/ * @return bool
public function increment(string $column, int|float $amount = 1): bool */
{ public function increment(string $column, int|float $amount = 1): bool
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount]))->exec(); {
} return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount]))->exec();
}
/** /**
* @param array $attributes * @param array $attributes
* @return bool *
*/ * @return bool
public function increments(array $attributes): bool */
{ public function increments(array $attributes): bool
return (bool)$this->buildCommand($this->builder->mathematics($attributes))->exec(); {
} return (bool)$this->buildCommand($this->builder->mathematics($attributes))->exec();
}
/** /**
* @param string $column * @param string $column
* @param int|float $amount * @param int|float $amount
* @return bool *
*/ * @return bool
public function decrement(string $column, int|float $amount = 1): bool */
{ public function decrement(string $column, int|float $amount = 1): bool
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount], '-'))->exec(); {
} return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount], '-'))->exec();
}
/** /**
* @param array $attributes * @param array $attributes
* @return bool *
*/ * @return bool
public function decrements(array $attributes): bool */
{ public function decrements(array $attributes): bool
return (bool)$this->buildCommand($this->builder->mathematics($attributes, '-'))->exec(); {
} return (bool)$this->buildCommand($this->builder->mathematics($attributes, '-'))->exec();
}
/** /**
* @throws * @throws
*/ */
public function flush(): bool public function flush(): bool
{ {
return (bool)$this->buildCommand($this->builder->truncate())->exec(); return (bool)$this->buildCommand($this->builder->truncate())->exec();
} }
/** /**
* @param int $size * @param int $size
* @param Closure $closure * @param Closure $closure
* @return void *
*/ * @return void
public function chunk(int $size, Closure $closure): void */
{ public function chunk(int $size, Closure $closure): void
if ($this->offset === -1) $this->offset = 0; {
$data = $this->offset($this->offset)->limit($size)->get(); if ($this->offset === -1) $this->offset = 0;
if (!$data || $data->isEmpty()) { $data = $this->offset($this->offset)->limit($size)->get();
return; if (!$data || $data->isEmpty()) {
} return;
if (Context::inCoroutine()) { }
Coroutine::create(fn () => $closure($data)); if (Context::inCoroutine()) {
} else { Coroutine::create(fn() => $closure($data));
call_user_func($closure, $data); } else {
} call_user_func($closure, $data);
$this->offset += $size; }
$this->chunk($size, $closure); $this->offset += $size;
} $this->chunk($size, $closure);
}
/** /**
* @param string $field * @param string $field
* @param string|null $setKey * @param string|null $setKey
* *
* @return array|null * @return array|null
*/ */
public function column(string $field, ?string $setKey = null): ?array public function column(string $field, ?string $setKey = NULL): ?array
{ {
return $this->get()->column($field, $setKey); return $this->get()->column($field, $setKey);
} }
/** /**
* @param mixed $value * @param mixed $value
* @return $this *
*/ * @return $this
public function withMock(mixed $value): static */
{ public function withMock(mixed $value): static
$this->_mock = $value; {
return $this; $this->_mock = $value;
} return $this;
}
/** /**
* @return mixed * @return mixed
*/ */
public function mock(): mixed public function mock(): mixed
{ {
return $this->_mock; return $this->_mock;
} }
/** /**
* @param array $data * @param array $data
* @return ModelInterface|array *
* @throws * @return ModelInterface|array
*/ * @throws
public function populate(array $data): ModelInterface|array */
{ public function populate(array $data): ModelInterface|array
$model = $this->modelClass->populates($data); {
$model = $this->modelClass->populates($data);
return $this->asArray ? $model->toArray() : $model; return $this->asArray ? $model->toArray() : $model;
} }
/** /**
* @return int * @return string
* @throws */
*/ public function toSql(): string
public function count(): int {
{ return $this->builder->get();
return $this->buildCommand($this->builder->count())->rowCount(); }
}
/** /**
* @param array $data * @return int
* @return bool * @throws
* @throws */
*/ public function count(): int
public function update(array $data): bool {
{ return $this->buildCommand($this->builder->count())->rowCount();
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 $data
* @param array $params *
* @return int|bool * @return bool
*/ * @throws
public function execute(string $sql, array $params = []): int|bool */
{ public function update(array $data): bool
return $this->buildCommand($sql, $params)->exec(); {
} 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();
}
/** /**
* @return bool * @param string $filed
*/ *
public function delete(): bool * @return mixed
{ * @throws
return $this->buildCommand($this->builder->delete())->delete(); */
} 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();
}
} }
+73 -28
View File
@@ -63,7 +63,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @var bool * @var bool
*/ */
protected bool $skipValidate = false; protected bool $skipValidate = FALSE;
/** /**
@@ -106,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
@@ -164,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
@@ -212,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;
} }
@@ -227,19 +229,20 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
if ($this->hasPrimary() && isset($this->_oldAttributes[$this->getPrimary()])) { if ($this->hasPrimary() && isset($this->_oldAttributes[$this->getPrimary()])) {
return (int)$this->_oldAttributes[$this->getPrimary()]; 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|null $param): ?static public static function findOne(int|string|array|null $param): ?static
{ {
if (empty($param)) { if (empty($param)) {
return null; return NULL;
} }
$query = new ActiveQuery($model = static::instance()); $query = new ActiveQuery($model = static::instance());
$query->from($model->getTable())->alias('t1'); $query->from($model->getTable())->alias('t1');
@@ -250,7 +253,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
} else { } else {
$query->whereRaw($param); $query->whereRaw($param);
} }
if (($data = $query->first()) === false) { if (($data = $query->first()) === FALSE) {
throw new Exception($model->getLastError()); throw new Exception($model->getLastError());
} else { } else {
return $data; return $data;
@@ -260,6 +263,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param int $param * @param int $param
*
* @return Model|null * @return Model|null
* @throws * @throws
*/ */
@@ -293,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
*/ */
@@ -304,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
*/ */
@@ -327,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;
} }
@@ -381,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
@@ -395,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
@@ -408,6 +416,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param array $param * @param array $param
*
* @return $this * @return $this
* @throws * @throws
*/ */
@@ -422,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
@@ -441,8 +451,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
{ {
$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)->exec(); $lastId = $this->getConnection()->createCommand($sql, $query->params)->exec();
if ($lastId === false) { if ($lastId === FALSE) {
return false; return FALSE;
} }
if (!$this->hasPrimary()) { if (!$this->hasPrimary()) {
return $this->refresh()->afterSave($this->_attributes, []); return $this->refresh()->afterSave($this->_attributes, []);
@@ -458,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
*/ */
@@ -465,11 +476,11 @@ 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)->exec()) { if (!$this->getConnection()->createCommand($generate, $query->params)->exec()) {
return FALSE; return FALSE;
@@ -531,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
@@ -544,6 +556,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param array $rule * @param array $rule
*
* @return bool * @return bool
* @throws * @throws
*/ */
@@ -563,6 +576,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param array $rule * @param array $rule
*
* @return Validator * @return Validator
* @throws * @throws
*/ */
@@ -583,6 +597,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param string $name * @param string $name
*
* @return null * @return null
* @throws * @throws
*/ */
@@ -604,12 +619,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @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;
} }
@@ -635,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
@@ -645,6 +662,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param self $model * @param self $model
*
* @return bool * @return bool
* @throws * @throws
*/ */
@@ -660,7 +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; $this->isNewExample = FALSE;
return $this; return $this;
} }
@@ -668,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;
} }
} }
@@ -686,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);
@@ -702,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)) {
@@ -718,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
@@ -742,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
@@ -752,6 +787,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param mixed $offset * @param mixed $offset
*
* @return bool * @return bool
* @throws * @throws
*/ */
@@ -762,6 +798,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param mixed $offset * @param mixed $offset
*
* @return mixed * @return mixed
* @throws * @throws
*/ */
@@ -773,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;
@@ -795,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
@@ -805,6 +847,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
/** /**
* @param array $data * @param array $data
*
* @return static * @return static
* @throws * @throws
*/ */
@@ -821,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)
@@ -831,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;
} }
} }
+3 -12
View File
@@ -1,4 +1,5 @@
<?php /** @noinspection ALL */ <?php
/** @noinspection ALL */
declare(strict_types=1); declare(strict_types=1);
@@ -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,16 +200,6 @@ 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
+115 -24
View File
@@ -28,19 +28,19 @@ use Kiri\Abstracts\Component;
abstract class QueryTrait extends Component implements ActiveQueryInterface, ISqlBuilder abstract class QueryTrait extends Component implements ActiveQueryInterface, ISqlBuilder
{ {
protected array $where = []; protected array $where = [];
protected array $select = ['*']; protected array $select = ['t1.*'];
protected array $join = []; protected array $join = [];
protected array $order = []; protected array $order = [];
protected int $offset = -1; protected int $offset = -1;
protected int $limit = -1; protected int $limit = -1;
protected string $group = ''; protected string $group = '';
protected string $from = ''; protected string $from = '';
protected 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;
protected array $params = []; protected array $params = [];
protected 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;
@@ -65,6 +65,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param array $where * @param array $where
*
* @return void * @return void
*/ */
public function setWhere(array $where): void public function setWhere(array $where): void
@@ -73,8 +74,49 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
} }
/**
* @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 * @param array $select
*
* @return void * @return void
*/ */
public function setSelect(array $select): void public function setSelect(array $select): void
@@ -85,6 +127,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param array $join * @param array $join
*
* @return void * @return void
*/ */
public function setJoin(array $join): void public function setJoin(array $join): void
@@ -95,6 +138,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param array $order * @param array $order
*
* @return void * @return void
*/ */
public function setOrder(array $order): void public function setOrder(array $order): void
@@ -105,6 +149,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param int $offset * @param int $offset
*
* @return void * @return void
*/ */
public function setOffset(int $offset): void public function setOffset(int $offset): void
@@ -115,6 +160,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param int $limit * @param int $limit
*
* @return void * @return void
*/ */
public function setLimit(int $limit): void public function setLimit(int $limit): void
@@ -125,6 +171,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param string $group * @param string $group
*
* @return void * @return void
*/ */
public function setGroup(string $group): void public function setGroup(string $group): void
@@ -135,6 +182,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param string $from * @param string $from
*
* @return void * @return void
*/ */
public function setFrom(string $from): void public function setFrom(string $from): void
@@ -145,6 +193,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param string $alias * @param string $alias
*
* @return void * @return void
*/ */
public function setAlias(string $alias): void public function setAlias(string $alias): void
@@ -154,6 +203,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param array $params * @param array $params
*
* @return void * @return void
*/ */
public function setParams(array $params): void public function setParams(array $params): void
@@ -255,6 +305,7 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @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
@@ -271,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
@@ -282,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
@@ -307,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
@@ -318,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
@@ -329,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
@@ -340,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
@@ -351,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
@@ -376,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;
} }
@@ -395,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])
@@ -425,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
@@ -437,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
@@ -456,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;
} }
@@ -474,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
*/ */
@@ -495,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
*/ */
@@ -516,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
*/ */
@@ -546,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
@@ -643,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);
@@ -666,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
@@ -679,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
@@ -692,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
@@ -705,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
@@ -717,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;
} }
@@ -747,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
@@ -763,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
@@ -783,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
@@ -801,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
@@ -813,9 +896,10 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
/** /**
* @param array|string $column * @param array|string $column
* @param mixed $value * @param mixed $value
*
* @return $this * @return $this
*/ */
public function where(array|string $column, mixed $value = null): static public function where(array|string $column, mixed $value = NULL): static
{ {
if (func_num_args() === 2) { if (func_num_args() === 2) {
return $this->addArray([$column => $value]); return $this->addArray([$column => $value]);
@@ -832,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
@@ -844,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
@@ -855,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
*/ */
@@ -901,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
@@ -929,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);
@@ -947,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
@@ -959,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
+15 -5
View File
@@ -1,13 +1,23 @@
<?php <?php
use Database\Query;
class Users extends \Database\Model class Users extends \Database\Model
{ {
public function hasD()
{
return $this->hasOne(static::class, 'id', 'id')->with([]);
}
}
public function hasD() Users::query()
{ ->select(['*', (new Query(Users::class))
return $this->hasOne(static::class, 'id', 'id')->with([]); ->where(['id' => 2])])
} ->from(function (Query $query) {
} $query->from(Users::class)
->where(['id' => 1])
->groupBy('name DESC');
})->toSql();