Compare commits

...

47 Commits

Author SHA1 Message Date
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
as2252258 7ca732f153 eee 2024-11-18 16:39:59 +08:00
as2252258 f9771fed3f eee 2024-11-18 16:38:09 +08:00
as2252258 8d006568ef eee 2024-11-18 16:35:37 +08:00
as2252258 6304684683 eee 2024-11-06 21:41:43 +08:00
as2252258 528f43c7ac eee 2024-11-06 21:33:36 +08:00
as2252258 622176c3ff eee 2024-11-06 21:28:29 +08:00
as2252258 e343595e7d eee 2024-11-06 21:16:30 +08:00
as2252258 4f31065818 eee 2024-11-06 21:15:11 +08:00
as2252258 4fe1558a7e eee 2024-11-06 21:13:12 +08:00
as2252258 904ba8cc97 eee 2024-11-06 21:11:43 +08:00
as2252258 4e59053d5c eee 2024-11-06 21:06:01 +08:00
as2252258 59c9a2e944 eee 2024-11-06 21:03:11 +08:00
as2252258 f563126cd0 eee 2024-11-06 20:59:30 +08:00
as2252258 41166dd998 eee 2024-11-06 20:53:24 +08:00
as2252258 3d4327a92e eee 2024-11-06 20:52:17 +08:00
as2252258 28beb3678e eee 2024-11-06 20:36:59 +08:00
as2252258 32164f66ab eee 2024-10-24 10:53:00 +08:00
as2252258 3244f8cfac eee 2024-10-23 14:54:04 +08:00
as2252258 8027effa8c eee 2024-10-23 14:51:09 +08:00
as2252258 59375e567e eee 2024-10-23 14:36:55 +08:00
as2252258 eb39acb7e9 eee 2024-10-23 14:36:20 +08:00
as2252258 be3fc004d5 eee 2024-10-23 14:32:09 +08:00
as2252258 bbe0631f5b eee 2024-10-23 14:10:14 +08:00
as2252258 bf5d988ba4 eee 2024-10-11 11:55:32 +08:00
as2252258 4fc9b42540 eee 2024-10-09 16:01:22 +08:00
as2252258 e5453807f2 eee 2024-09-05 15:42:24 +08:00
as2252258 5a6f6da70a eee 2024-09-02 12:12:39 +08:00
as2252258 beb48f41d2 eee 2024-08-27 11:19:22 +08:00
as2252258 8d917b0f92 eee 2024-08-08 11:12:09 +08:00
as2252258 08fbc49091 eee 2024-08-08 10:52:48 +08:00
as2252258 08e49cfa65 eee 2024-07-10 16:18:27 +08:00
as2252258 d58850b158 eee 2024-07-08 12:06:41 +08:00
14 changed files with 2224 additions and 1829 deletions
+244 -180
View File
@@ -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();
}
} }
+829 -776
View File
File diff suppressed because it is too large Load Diff
+4 -11
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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);
} }
} }
+14 -14
View File
@@ -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
View File
@@ -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
View File
@@ -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);
} }
} }
+23 -33
View File
@@ -51,7 +51,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 +73,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 +109,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 +121,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 +143,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 +189,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+$/', $value)) {
$keys[] = $key . '=' . $key . ' ' . $value; $keys[] = $key . '=' . $key . ' ' . $value;
} else { } else {
$this->query->pushParam($value); $this->query->pushParam($value);
@@ -199,23 +199,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 +215,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 +267,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 +283,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 +295,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 +307,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 +317,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 +344,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
View File
@@ -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();
+1041 -777
View File
File diff suppressed because it is too large Load Diff
+23
View File
@@ -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();