Compare commits
67 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 731af328d7 | |||
| 5756573d8d | |||
| eb75e69d60 | |||
| 6745036672 | |||
| 3e75bdc089 | |||
| 70f3714b15 | |||
| d7f982b44f | |||
| 368a102409 | |||
| 1f42c353b9 | |||
| 50f6deeae7 | |||
| 68dbaba012 | |||
| cb83878684 | |||
| 1b4c7ea957 | |||
| a58b5217a8 | |||
| f4084b0b06 | |||
| 2f4e6b23e0 | |||
| c13d4101b9 | |||
| 07a40f4449 | |||
| 229c0fa523 | |||
| 8c3d3b2ce0 | |||
| 8b164c7611 | |||
| 8e9047de8a | |||
| ec8f0849ee | |||
| 3038c332c0 | |||
| 98e8abfb7c | |||
| d3bb5e851f | |||
| d60799d5a4 | |||
| 0c32559716 | |||
| ea4f7ba11a | |||
| a167169207 | |||
| b5f347b07a | |||
| a113d5f64b | |||
| c3dbaa8828 | |||
| b0dea25640 | |||
| 6dbc18c7d9 | |||
| f22a58e121 | |||
| d45725603d | |||
| f49d7cfa4b | |||
| e5a723cdb2 | |||
| d56b28a4aa | |||
| b3d1f64241 | |||
| 6b78d130fb | |||
| ee44cfbca9 | |||
| 3d588f3f33 | |||
| d903bba60f | |||
| 2f3be8cabc | |||
| fcfc2213c2 | |||
| f76755407c | |||
| 2f64375ca2 | |||
| 606cf7a722 | |||
| 7400b27cb9 | |||
| 50f2db7a2d | |||
| a538c39837 | |||
| 8c98ce8c7f | |||
| f8718fa4de | |||
| ffae51bccf | |||
| 714df3dda4 | |||
| f3a7789184 | |||
| e186ebd54c | |||
| 4d7c9fdd17 | |||
| 2ea8e8276b | |||
| d2bdb4355f | |||
| f7e88e6c18 | |||
| 67b961ce6e | |||
| 81d0e09c65 | |||
| 022f3936c4 | |||
| cf468b8a24 |
+3
-4
@@ -237,7 +237,6 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function count(): int
|
public function count(): int
|
||||||
{
|
{
|
||||||
$this->select = ['COUNT(*)'];
|
|
||||||
$data = $this->execute($this->builder->count())->one();
|
$data = $this->execute($this->builder->count())->one();
|
||||||
if ($data && is_array($data)) {
|
if ($data && is_array($data)) {
|
||||||
return (int)array_shift($data);
|
return (int)array_shift($data);
|
||||||
@@ -270,7 +269,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
[$sql, $params] = $this->builder->insert($data, true);
|
[$sql, $params] = $this->builder->insert($data, true);
|
||||||
|
|
||||||
|
|
||||||
return $this->execute($sql, $params)->exec(null, true);
|
return $this->execute($sql, $params)->exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -296,10 +295,10 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $getSql
|
* @param bool $getSql
|
||||||
* @return string|bool
|
* @return int|bool|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function delete(bool $getSql = false): string|bool
|
public function delete(bool $getSql = false): int|bool|string|null
|
||||||
{
|
{
|
||||||
$sql = $this->builder->delete();
|
$sql = $this->builder->delete();
|
||||||
if ($getSql === false) {
|
if ($getSql === false) {
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ abstract class AbstractCollection extends Component implements \IteratorAggregat
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (!($this->_item[$offset] instanceof ModelInterface)) {
|
if (!($this->_item[$offset] instanceof ModelInterface)) {
|
||||||
return $this->model->setAttributes($this->_item[$offset]);
|
return $this->model->populates($this->_item[$offset]);
|
||||||
}
|
}
|
||||||
return $this->_item[$offset];
|
return $this->_item[$offset];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ class CollectionIterator extends \ArrayIterator
|
|||||||
*/
|
*/
|
||||||
protected function newModel($current): ModelInterface
|
protected function newModel($current): ModelInterface
|
||||||
{
|
{
|
||||||
return $this->model->setAttributes($current);
|
return $this->model->populates($current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+49
-32
@@ -13,12 +13,10 @@ defined('SAVE_FAIL') or define('SAVE_FAIL', 3227);
|
|||||||
defined('FIND_OR_CREATE_MESSAGE') or define('FIND_OR_CREATE_MESSAGE', 'Create a new model, but the data cannot be empty.');
|
defined('FIND_OR_CREATE_MESSAGE') or define('FIND_OR_CREATE_MESSAGE', 'Create a new model, but the data cannot be empty.');
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use ArrayAccess;
|
use ArrayAccess;
|
||||||
use Closure;
|
use Closure;
|
||||||
use Database\ActiveQuery;
|
use Database\ActiveQuery;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\HasCount;
|
|
||||||
use Database\HasMany;
|
use Database\HasMany;
|
||||||
use Database\HasOne;
|
use Database\HasOne;
|
||||||
use Database\ModelInterface;
|
use Database\ModelInterface;
|
||||||
@@ -98,12 +96,6 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
protected string $connection = 'db';
|
protected string $connection = 'db';
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected array $rules = [];
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
@@ -120,16 +112,26 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @return array
|
||||||
* @param mixed $value
|
|
||||||
*/
|
*/
|
||||||
private function _setter(string $name, mixed $value): void
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
* @param mixed $value
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
private function _setter(string $name, mixed $value): mixed
|
||||||
{
|
{
|
||||||
$method = di(Setter::class)->getSetter(static::class, $name);
|
$method = di(Setter::class)->getSetter(static::class, $name);
|
||||||
if (!empty($method)) {
|
if (!empty($method)) {
|
||||||
$value = $this->{$method}($value);
|
$value = $this->{$method}($value);
|
||||||
}
|
}
|
||||||
$this->_attributes[$name] = $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -453,13 +455,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (!$if_condition_is_null) {
|
if (!$if_condition_is_null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return static::query()->delete();
|
return (bool)static::query()->delete();
|
||||||
}
|
}
|
||||||
$model = static::query()->ifNotWhere($if_condition_is_null)->where($condition);
|
$model = static::query()->ifNotWhere($if_condition_is_null)->where($condition);
|
||||||
if (!empty($attributes)) {
|
if (!empty($attributes)) {
|
||||||
$model->bindParams($attributes);
|
$model->bindParams($attributes);
|
||||||
}
|
}
|
||||||
return $model->delete();
|
return (bool)$model->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -487,7 +489,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function setAttribute($name, $value): mixed
|
public function setAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
return $this->_attributes[$name] = $value;
|
return $this->_attributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -497,7 +499,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function setOldAttribute($name, $value): mixed
|
public function setOldAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
return $this->_oldAttributes[$name] = $value;
|
return $this->_oldAttributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -510,7 +512,9 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($param)) {
|
if (empty($param)) {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
$this->_attributes = array_merge($this->_attributes, $param);
|
foreach ($param as $key => $attribute) {
|
||||||
|
$this->setAttribute($key, $attribute);
|
||||||
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -523,10 +527,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($param) || !is_array($param)) {
|
if (empty($param) || !is_array($param)) {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
foreach ($param as $key => $val) {
|
foreach ($param as $key => $attribute) {
|
||||||
$this->setOldAttribute($key, $val);
|
$this->setOldAttribute($key, $attribute);
|
||||||
}
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -539,10 +543,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
{
|
{
|
||||||
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
||||||
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
||||||
if (!($lastId = (int)$dbConnection->save(true, $this))) {
|
|
||||||
throw new Exception('保存失败.');
|
$lastId = $dbConnection->save(true);
|
||||||
}
|
|
||||||
$lastId = $this->setPrimary($lastId, $param);
|
$lastId = $this->setPrimary((int)$lastId, $param);
|
||||||
|
|
||||||
$this->refresh()->afterSave($attributes, $param);
|
$this->refresh()->afterSave($attributes, $param);
|
||||||
|
|
||||||
@@ -571,7 +575,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (!isset($param[$primary]) || empty($param[$primary])) {
|
if (!isset($param[$primary]) || empty($param[$primary])) {
|
||||||
$this->setAttribute($primary, (int)$lastId);
|
$this->setAttribute($primary, (int)$lastId);
|
||||||
}
|
}
|
||||||
return $this->setAttributes($param);
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -608,10 +612,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function save($data = NULL): static|bool
|
public function save($data = NULL): static|bool
|
||||||
{
|
{
|
||||||
if (!is_null($data)) {
|
if (!is_null($data)) {
|
||||||
$this->_attributes = merge($this->_attributes, $data);
|
$this->_attributes = merge($this->_attributes, $data);
|
||||||
}
|
}
|
||||||
if (!$this->validator($this->rules) || !$this->beforeSave($this)) {
|
if (!$this->validator($this->rules()) || !$this->beforeSave($this)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
[$change, $condition, $fields] = $this->separation();
|
[$change, $condition, $fields] = $this->separation();
|
||||||
@@ -622,6 +626,19 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function populates($value): static
|
||||||
|
{
|
||||||
|
$this->_attributes = $value;
|
||||||
|
$this->_oldAttributes = $value;
|
||||||
|
$this->setIsCreate(FALSE);
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|null $rule
|
* @param array|null $rule
|
||||||
* @return bool
|
* @return bool
|
||||||
@@ -632,7 +649,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($rule)) return true;
|
if (empty($rule)) return true;
|
||||||
$validate = $this->resolve($rule);
|
$validate = $this->resolve($rule);
|
||||||
if (!$validate->validation()) {
|
if (!$validate->validation()) {
|
||||||
return $this->addError($validate->getError(), 'mysql');
|
return $this->addError('$validate->getError()', 'mysql');
|
||||||
} else {
|
} else {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
@@ -805,8 +822,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
throw new Exception('You need add static method `tableName` and return table name.');
|
throw new Exception('You need add static method `tableName` and return table name.');
|
||||||
}
|
}
|
||||||
$table = trim($this->table, '{{%}}');
|
$table = trim($this->table, '{{%}}');
|
||||||
if (!empty($tablePrefix) && !str_starts_with($this->table, $tablePrefix)) {
|
if (!empty($tablePrefix) && !str_starts_with($table, $tablePrefix)) {
|
||||||
$table = $tablePrefix . $this->table;
|
$table = $tablePrefix . $table;
|
||||||
}
|
}
|
||||||
return '`' . $connection->database . '`.' . $table;
|
return '`' . $connection->database . '`.' . $table;
|
||||||
}
|
}
|
||||||
@@ -853,7 +870,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (method_exists($this, 'set' . ucfirst($name))) {
|
if (method_exists($this, 'set' . ucfirst($name))) {
|
||||||
$this->{'set' . ucfirst($name)}($value);
|
$this->{'set' . ucfirst($name)}($value);
|
||||||
} else {
|
} else {
|
||||||
$this->_setter($name, $value);
|
$this->_attributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+5
-25
@@ -60,7 +60,7 @@ class Command extends Component
|
|||||||
*/
|
*/
|
||||||
public function save(bool $isInsert = TRUE, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
public function save(bool $isInsert = TRUE, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
return $this->execute(static::EXECUTE, $isInsert, $hasAutoIncrement);
|
return $this->execute(static::EXECUTE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -111,17 +111,15 @@ class Command extends Component
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $type
|
* @param $type
|
||||||
* @param null $isInsert
|
|
||||||
* @param bool|null $hasAutoIncrement
|
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function execute($type, $isInsert = null, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
private function execute($type): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$time = microtime(true);
|
$time = microtime(true);
|
||||||
if ($type === static::EXECUTE) {
|
if ($type === static::EXECUTE) {
|
||||||
$result = $this->insert_or_change($isInsert, $hasAutoIncrement);
|
$result = $this->db->getConnect($this->sql)->execute($this->sql,$this->params);
|
||||||
} else {
|
} else {
|
||||||
$result = $this->search($type);
|
$result = $this->search($type);
|
||||||
}
|
}
|
||||||
@@ -158,22 +156,6 @@ class Command extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $isInsert
|
|
||||||
* @param $hasAutoIncrement
|
|
||||||
* @return bool|int
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function insert_or_change($isInsert, $hasAutoIncrement): bool|int
|
|
||||||
{
|
|
||||||
$pdo = $this->db->getConnect($this->sql);
|
|
||||||
$result = $pdo->execute($this->sql, $isInsert, $this->params);
|
|
||||||
if ($hasAutoIncrement && $result == 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -184,14 +166,12 @@ class Command extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param null $scope
|
|
||||||
* @param bool $insert
|
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function exec($scope = null, bool $insert = false): int|bool|array|string|null
|
public function exec(): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
return $this->execute(static::EXECUTE, $insert, $scope);
|
return $this->execute(static::EXECUTE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -20,9 +20,8 @@ class HashCondition extends Condition
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
foreach ($this->value as $key => $value) {
|
foreach ($this->value as $key => $value) {
|
||||||
if ($value === null) {
|
if (is_null($value)) continue;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$array[] = sprintf("%s = '%s'", $key, addslashes($value));
|
$array[] = sprintf("%s = '%s'", $key, addslashes($value));
|
||||||
}
|
}
|
||||||
return implode(' AND ', $array);
|
return implode(' AND ', $array);
|
||||||
|
|||||||
+12
-1
@@ -108,6 +108,17 @@ class Connection extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $config
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function configure($config): static
|
||||||
|
{
|
||||||
|
Kiri::configure($this, $config);
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -141,7 +152,7 @@ class Connection extends Component
|
|||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
* @throws NotFindClassException
|
* @throws NotFindClassException
|
||||||
* @throws \Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function getSchema(): Schema
|
public function getSchema(): Schema
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,13 +6,13 @@ namespace Database;
|
|||||||
|
|
||||||
use Annotation\Inject;
|
use Annotation\Inject;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Server\Events\OnWorkerStart;
|
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Abstracts\Providers;
|
use Kiri\Abstracts\Providers;
|
||||||
use Kiri\Application;
|
use Kiri\Application;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Server\Events\OnWorkerStart;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DatabasesProviders
|
* Class DatabasesProviders
|
||||||
@@ -53,11 +53,9 @@ class DatabasesProviders extends Providers
|
|||||||
*/
|
*/
|
||||||
public function get($name): Connection
|
public function get($name): Connection
|
||||||
{
|
{
|
||||||
$application = Kiri::app();
|
$config = $this->_settings($this->getConfig($name));
|
||||||
if (!$application->has('databases.' . $name)) {
|
|
||||||
$application->set('databases.' . $name, $this->_settings($this->getConfig($name)));
|
return Kiri::getDi()->get(Connection::class)->configure($config);
|
||||||
}
|
|
||||||
return $application->get('databases.' . $name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -71,11 +69,10 @@ class DatabasesProviders extends Providers
|
|||||||
if (empty($databases)) {
|
if (empty($databases)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$application = Kiri::app();
|
$connection = Kiri::getDi()->get(Connection::class);
|
||||||
foreach ($databases as $name => $database) {
|
foreach ($databases as $database) {
|
||||||
/** @var Connection $connection */
|
/** @var Connection $connection */
|
||||||
$application->set('databases.' . $name, $this->_settings($database));
|
$connection->configure($database)->fill();
|
||||||
$application->get('databases.' . $name)->fill();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -334,7 +334,7 @@ class Model extends Base\Model
|
|||||||
*/
|
*/
|
||||||
public function hasOne(string $modelName, $foreignKey, $localKey): HasOne|ActiveQuery
|
public function hasOne(string $modelName, $foreignKey, $localKey): HasOne|ActiveQuery
|
||||||
{
|
{
|
||||||
if (($value = $this->getAttribute($localKey)) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -353,7 +353,7 @@ class Model extends Base\Model
|
|||||||
*/
|
*/
|
||||||
public function hasCount($modelName, $foreignKey, $localKey): ActiveQuery|HasCount
|
public function hasCount($modelName, $foreignKey, $localKey): ActiveQuery|HasCount
|
||||||
{
|
{
|
||||||
if (($value = $this->getAttribute($localKey)) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -372,7 +372,7 @@ class Model extends Base\Model
|
|||||||
*/
|
*/
|
||||||
public function hasMany($modelName, $foreignKey, $localKey): ActiveQuery|HasMany
|
public function hasMany($modelName, $foreignKey, $localKey): ActiveQuery|HasMany
|
||||||
{
|
{
|
||||||
if (($value = $this->getAttribute($localKey)) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -390,7 +390,7 @@ class Model extends Base\Model
|
|||||||
*/
|
*/
|
||||||
public function hasIn($modelName, $foreignKey, $localKey): ActiveQuery|HasMany
|
public function hasIn($modelName, $foreignKey, $localKey): ActiveQuery|HasMany
|
||||||
{
|
{
|
||||||
if (($value = $this->getAttribute($localKey)) === null) {
|
if (($value = $this->{$localKey}) === null) {
|
||||||
throw new Exception("Need join table primary key.");
|
throw new Exception("Need join table primary key.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,10 +32,11 @@ interface ModelInterface
|
|||||||
public static function find(string|int $param): mixed;
|
public static function find(string|int $param): mixed;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @param array $data
|
||||||
*/
|
* @return static
|
||||||
public static function className(): string;
|
*/
|
||||||
|
public static function populate(array $data): static;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -316,7 +316,7 @@ class Columns extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $column
|
* @param array $column
|
||||||
* @param $table
|
* @param $table
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
|||||||
+222
-224
@@ -3,8 +3,8 @@
|
|||||||
namespace Database\Mysql;
|
namespace Database\Mysql;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Context;
|
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
|
use Kiri\Context;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Kiri\Pool\StopHeartbeatCheck;
|
use Kiri\Pool\StopHeartbeatCheck;
|
||||||
use PDOStatement;
|
use PDOStatement;
|
||||||
@@ -16,122 +16,122 @@ use Swoole\Timer;
|
|||||||
class PDO implements StopHeartbeatCheck
|
class PDO implements StopHeartbeatCheck
|
||||||
{
|
{
|
||||||
|
|
||||||
const DB_ERROR_MESSAGE = 'The system is busy, please try again later.';
|
const DB_ERROR_MESSAGE = 'The system is busy, please try again later.';
|
||||||
|
|
||||||
|
|
||||||
private ?\PDO $pdo = null;
|
private ?\PDO $pdo = null;
|
||||||
|
|
||||||
|
|
||||||
private int $_transaction = 0;
|
private int $_transaction = 0;
|
||||||
|
|
||||||
|
|
||||||
private int $_timer = -1;
|
private int $_timer = -1;
|
||||||
|
|
||||||
private int $_last = 0;
|
private int $_last = 0;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $dbname
|
* @param string $dbname
|
||||||
* @param string $cds
|
* @param string $cds
|
||||||
* @param string $username
|
* @param string $username
|
||||||
* @param string $password
|
* @param string $password
|
||||||
* @param string $chatset
|
* @param string $chatset
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function __construct(public string $dbname, public string $cds,
|
public function __construct(public string $dbname, public string $cds,
|
||||||
public string $username, public string $password, public string $chatset = 'utf8mb4')
|
public string $username, public string $password, public string $chatset = 'utf8mb4')
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->heartbeat_check();
|
$this->heartbeat_check();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function inTransaction(): bool
|
public function inTransaction(): bool
|
||||||
{
|
{
|
||||||
return $this->_transaction > 0;
|
return $this->_transaction > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function heartbeat_check(): void
|
public function heartbeat_check(): void
|
||||||
{
|
{
|
||||||
if (env('state', 'start') == 'exit') {
|
if (env('state', 'start') == 'exit') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($this->_timer === -1 && Context::inCoroutine()) {
|
if ($this->_timer === -1 && Context::inCoroutine()) {
|
||||||
$this->_timer = Timer::tick(1000, function () {
|
$this->_timer = Timer::tick(1000, function () {
|
||||||
try {
|
try {
|
||||||
if (env('state', 'start') == 'exit') {
|
if (env('state', 'start') == 'exit') {
|
||||||
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
||||||
$this->stopHeartbeatCheck();
|
$this->stopHeartbeatCheck();
|
||||||
}
|
}
|
||||||
if (time() - $this->_last > 10 * 60) {
|
if (time() - $this->_last > 10 * 60) {
|
||||||
$this->stopHeartbeatCheck();
|
$this->stopHeartbeatCheck();
|
||||||
$this->pdo = null;
|
$this->pdo = null;
|
||||||
}
|
}
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
error($throwable);
|
error($throwable);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function stopHeartbeatCheck(): void
|
public function stopHeartbeatCheck(): void
|
||||||
{
|
{
|
||||||
if ($this->_timer > -1) {
|
if ($this->_timer > -1) {
|
||||||
Timer::clear($this->_timer);
|
Timer::clear($this->_timer);
|
||||||
}
|
}
|
||||||
$this->_timer = -1;
|
$this->_timer = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function beginTransaction()
|
public function beginTransaction()
|
||||||
{
|
{
|
||||||
if ($this->_transaction == 0) {
|
if ($this->_transaction == 0) {
|
||||||
$this->_pdo()->beginTransaction();
|
$this->_pdo()->beginTransaction();
|
||||||
}
|
}
|
||||||
$this->_transaction++;
|
$this->_transaction++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function commit()
|
public function commit()
|
||||||
{
|
{
|
||||||
if ($this->_transaction == 0) {
|
if ($this->_transaction == 0) {
|
||||||
$this->_pdo()->commit();
|
$this->_pdo()->commit();
|
||||||
}
|
}
|
||||||
$this->_transaction--;
|
$this->_transaction--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function rollback()
|
public function rollback()
|
||||||
{
|
{
|
||||||
if ($this->_transaction == 0) {
|
if ($this->_transaction == 0) {
|
||||||
$this->_pdo()->rollBack();
|
$this->_pdo()->rollBack();
|
||||||
}
|
}
|
||||||
$this->_transaction--;
|
$this->_transaction--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -140,14 +140,14 @@ class PDO implements StopHeartbeatCheck
|
|||||||
* @return bool|array|null
|
* @return bool|array|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function fetchAll(string $sql, array $params = []): bool|null|array
|
public function fetchAll(string $sql, array $params = []): bool|null|array
|
||||||
{
|
{
|
||||||
$pdo = $this->queryPrev($sql, $params);
|
$pdo = $this->queryPrev($sql, $params);
|
||||||
|
|
||||||
$result = $pdo->fetchAll(\PDO::FETCH_ASSOC);
|
$result = $pdo->fetchAll(\PDO::FETCH_ASSOC);
|
||||||
$pdo->closeCursor();
|
$pdo->closeCursor();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -156,146 +156,144 @@ class PDO implements StopHeartbeatCheck
|
|||||||
* @return bool|array|null
|
* @return bool|array|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function fetch(string $sql, array $params = []): bool|null|array
|
public function fetch(string $sql, array $params = []): bool|null|array
|
||||||
{
|
{
|
||||||
$pdo = $this->queryPrev($sql, $params);
|
$pdo = $this->queryPrev($sql, $params);
|
||||||
|
|
||||||
$result = $pdo->fetch(\PDO::FETCH_ASSOC);
|
$result = $pdo->fetch(\PDO::FETCH_ASSOC);
|
||||||
$pdo->closeCursor();
|
$pdo->closeCursor();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return bool|array|null
|
* @return bool|array|null
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function fetchColumn(string $sql, array $params = []): bool|null|array
|
public function fetchColumn(string $sql, array $params = []): bool|null|array
|
||||||
{
|
{
|
||||||
$pdo = $this->queryPrev($sql, $params);
|
$pdo = $this->queryPrev($sql, $params);
|
||||||
|
|
||||||
$result = $pdo->fetchColumn(\PDO::FETCH_ASSOC);
|
$result = $pdo->fetchColumn(\PDO::FETCH_ASSOC);
|
||||||
$pdo->closeCursor();
|
$pdo->closeCursor();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return int
|
* @return int
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function count(string $sql, array $params = []): int
|
public function count(string $sql, array $params = []): int
|
||||||
{
|
{
|
||||||
$pdo = $this->queryPrev($sql, $params);
|
$pdo = $this->queryPrev($sql, $params);
|
||||||
|
|
||||||
$result = $pdo->rowCount();
|
$result = $pdo->rowCount();
|
||||||
$pdo->closeCursor();
|
$pdo->closeCursor();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return PDOStatement
|
* @return PDOStatement
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function queryPrev(string $sql, array $params = []): PDOStatement
|
private function queryPrev(string $sql, array $params = []): PDOStatement
|
||||||
{
|
{
|
||||||
$this->_last = time();
|
$this->_last = time();
|
||||||
try {
|
try {
|
||||||
if (($statement = $this->_pdo()->query($sql)) === false) {
|
if (($statement = $this->_pdo()->query($sql)) === false) {
|
||||||
throw new Exception($this->_pdo()->errorInfo()[1]);
|
throw new Exception($this->_pdo()->errorInfo()[1]);
|
||||||
}
|
}
|
||||||
return $this->bindValue($statement, $params);
|
return $this->bindValue($statement, $params);
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\PDOException | \Throwable $throwable) {
|
||||||
|
if (str_contains($throwable->getMessage(), 'MySQL server has gone away')) {
|
||||||
|
$this->pdo = null;
|
||||||
|
|
||||||
if (str_contains($throwable->getMessage(), 'MySQL server has gone away')) {
|
return $this->queryPrev($sql, $params);
|
||||||
$this->pdo = null;
|
}
|
||||||
|
throw new Exception($throwable->getMessage());
|
||||||
return $this->queryPrev($sql, $params);
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($throwable->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param PDOStatement $statement
|
* @param PDOStatement $statement
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return PDOStatement
|
* @return PDOStatement
|
||||||
*/
|
*/
|
||||||
private function bindValue(PDOStatement $statement, array $params = []): PDOStatement
|
private function bindValue(PDOStatement $statement, array $params = []): PDOStatement
|
||||||
{
|
{
|
||||||
if (empty($params)) return $statement;
|
if (empty($params)) return $statement;
|
||||||
foreach ($params as $key => $param) {
|
foreach ($params as $key => $param) {
|
||||||
$statement->bindValue($key, $param);
|
$statement->bindValue($key, $param);
|
||||||
}
|
}
|
||||||
return $statement;
|
return $statement;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param $isInsert
|
* @param array $params
|
||||||
* @param array $params
|
* @return int
|
||||||
* @return int
|
* @throws Exception
|
||||||
* @throws Exception
|
*/
|
||||||
*/
|
public function execute(string $sql, array $params = []): int
|
||||||
public function execute(string $sql, $isInsert, array $params = []): int
|
{
|
||||||
{
|
$this->_last = time();
|
||||||
$this->_last = time();
|
$pdo = $this->_pdo();
|
||||||
if (!(($prepare = $this->_pdo()->prepare($sql)) instanceof PDOStatement)) {
|
if (!(($prepare = $pdo->prepare($sql)) instanceof PDOStatement)) {
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
if ($prepare->execute($params) === false) {
|
if ($prepare->execute($params) === false) {
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
$result = 1;
|
$result = (int)$pdo->lastInsertId();
|
||||||
if ($isInsert) {
|
$prepare->closeCursor();
|
||||||
$result = (int)$this->_pdo()->lastInsertId();
|
if ($result == 0) {
|
||||||
}
|
return true;
|
||||||
$prepare->closeCursor();
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return \PDO
|
* @return \PDO
|
||||||
*/
|
*/
|
||||||
public function _pdo(): \PDO
|
public function _pdo(): \PDO
|
||||||
{
|
{
|
||||||
if ($this->_timer === -1) {
|
if ($this->_timer === -1) {
|
||||||
$this->heartbeat_check();
|
$this->heartbeat_check();
|
||||||
}
|
}
|
||||||
if (!($this->pdo instanceof \PDO)) {
|
if (!($this->pdo instanceof \PDO)) {
|
||||||
$this->pdo = $this->newClient();
|
$this->pdo = $this->newClient();
|
||||||
}
|
}
|
||||||
return $this->pdo;
|
return $this->pdo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return \PDO
|
* @return \PDO
|
||||||
*/
|
*/
|
||||||
private function newClient(): \PDO
|
private function newClient(): \PDO
|
||||||
{
|
{
|
||||||
$link = new \PDO('mysql:dbname=' . $this->dbname . ';host=' . $this->cds, $this->username, $this->password, [
|
$link = new \PDO('mysql:dbname=' . $this->dbname . ';host=' . $this->cds, $this->username, $this->password, [
|
||||||
\PDO::ATTR_EMULATE_PREPARES => false,
|
\PDO::ATTR_EMULATE_PREPARES => false,
|
||||||
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
||||||
\PDO::ATTR_TIMEOUT => 60,
|
\PDO::ATTR_TIMEOUT => 60,
|
||||||
\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
|
\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
|
||||||
\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->chatset
|
\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->chatset
|
||||||
]);
|
]);
|
||||||
$link->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
|
$link->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
|
||||||
$link->setAttribute(\PDO::ATTR_STRINGIFY_FETCHES, false);
|
$link->setAttribute(\PDO::ATTR_STRINGIFY_FETCHES, false);
|
||||||
$link->setAttribute(\PDO::ATTR_ORACLE_NULLS, \PDO::NULL_EMPTY_STRING);
|
$link->setAttribute(\PDO::ATTR_ORACLE_NULLS, \PDO::NULL_EMPTY_STRING);
|
||||||
return $link;
|
return $link;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-5
@@ -240,7 +240,7 @@ class SqlBuilder extends Component
|
|||||||
if (empty($this->query->from) && !empty($this->query->modelClass)) {
|
if (empty($this->query->from) && !empty($this->query->modelClass)) {
|
||||||
$this->query->from($this->query->getTable());
|
$this->query->from($this->query->getTable());
|
||||||
}
|
}
|
||||||
return $this->_prefix();
|
return $this->_prefix(false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -256,14 +256,15 @@ class SqlBuilder extends Component
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $hasOrder
|
* @param bool $hasOrder
|
||||||
|
* @param bool $isCount
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function _prefix(bool $hasOrder = false): string
|
private function _prefix(bool $hasOrder = false, bool $isCount = false): string
|
||||||
{
|
{
|
||||||
$select = '';
|
$select = '';
|
||||||
if (!empty($this->query->from)) {
|
if (!empty($this->query->from)) {
|
||||||
$select = $this->_selectPrefix();
|
$select = $this->_selectPrefix($isCount);
|
||||||
}
|
}
|
||||||
$select = $this->_wherePrefix($select);
|
$select = $this->_wherePrefix($select);
|
||||||
if (!empty($this->query->attributes) && is_array($this->query->attributes)) {
|
if (!empty($this->query->attributes) && is_array($this->query->attributes)) {
|
||||||
@@ -302,12 +303,13 @@ class SqlBuilder extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param bool $isCount
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function _selectPrefix(): string
|
private function _selectPrefix(bool $isCount): string
|
||||||
{
|
{
|
||||||
$select = $this->builderSelect($this->query->select) . ' FROM ' . $this->tableName();
|
$select = $this->builderSelect($this->query->select, $isCount) . ' FROM ' . $this->tableName();
|
||||||
if (!empty($this->query->alias)) {
|
if (!empty($this->query->alias)) {
|
||||||
$select .= $this->builderAlias($this->query->alias);
|
$select .= $this->builderAlias($this->query->alias);
|
||||||
}
|
}
|
||||||
|
|||||||
+10
-2
@@ -61,10 +61,14 @@ trait Builder
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param null $select
|
* @param null $select
|
||||||
|
* @param bool $isCount
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
#[Pure] private function builderSelect($select = NULL): string
|
#[Pure] private function builderSelect($select = NULL, bool $isCount = false): string
|
||||||
{
|
{
|
||||||
|
if ($isCount) {
|
||||||
|
return "SELECT COUNT(*)";
|
||||||
|
}
|
||||||
if (empty($select)) {
|
if (empty($select)) {
|
||||||
return "SELECT *";
|
return "SELECT *";
|
||||||
}
|
}
|
||||||
@@ -129,6 +133,8 @@ trait Builder
|
|||||||
if (empty($where)) return '';
|
if (empty($where)) return '';
|
||||||
if (is_string($where)) return $where;
|
if (is_string($where)) return $where;
|
||||||
foreach ($where as $key => $value) {
|
foreach ($where as $key => $value) {
|
||||||
|
if (is_null($value)) continue;
|
||||||
|
|
||||||
$_value = $this->resolveCondition($key, $value, $_tmp);
|
$_value = $this->resolveCondition($key, $value, $_tmp);
|
||||||
|
|
||||||
if (empty($_value)) continue;
|
if (empty($_value)) continue;
|
||||||
@@ -188,7 +194,7 @@ trait Builder
|
|||||||
$class = $defaultConfig['class'];
|
$class = $defaultConfig['class'];
|
||||||
unset($defaultConfig['class']);
|
unset($defaultConfig['class']);
|
||||||
|
|
||||||
$builder = Kiri::getDi()->get($class, [], $defaultConfig);
|
$builder = Kiri::getDi()->make($class, [], $defaultConfig);
|
||||||
$builder->setValue($condition[2]);
|
$builder->setValue($condition[2]);
|
||||||
$builder->setColumn($condition[1]);
|
$builder->setColumn($condition[1]);
|
||||||
} else {
|
} else {
|
||||||
@@ -210,6 +216,8 @@ trait Builder
|
|||||||
{
|
{
|
||||||
$_array = [];
|
$_array = [];
|
||||||
foreach ($condition as $key => $value) {
|
foreach ($condition as $key => $value) {
|
||||||
|
if (is_null($value)) continue;
|
||||||
|
|
||||||
$value = is_numeric($value) ? $value : '\'' . $value . '\'';
|
$value = is_numeric($value) ? $value : '\'' . $value . '\'';
|
||||||
if (!is_numeric($key)) {
|
if (!is_numeric($key)) {
|
||||||
$_array[] = sprintf('%s = %s', $key, $value);
|
$_array[] = sprintf('%s = %s', $key, $value);
|
||||||
|
|||||||
@@ -522,7 +522,7 @@ trait QueryTrait
|
|||||||
$conditionArray = $this->sprintf($conditionArray, $value, $opera);
|
$conditionArray = $this->sprintf($conditionArray, $value, $opera);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->where = ['(' . implode(' AND ', $this->where) . ') OR (' . $conditionArray . ')'];
|
$this->where = ['((' . implode(' AND ', $this->where) . ') OR (' . $conditionArray . '))'];
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -923,6 +923,7 @@ trait QueryTrait
|
|||||||
private function addArray(array $array): static
|
private function addArray(array $array): static
|
||||||
{
|
{
|
||||||
foreach ($array as $key => $value) {
|
foreach ($array as $key => $value) {
|
||||||
|
if (is_null($value)) continue;
|
||||||
if (is_numeric($key)) {
|
if (is_numeric($key)) {
|
||||||
[$column, $opera, $value] = $this->opera(...$value);
|
[$column, $opera, $value] = $this->opera(...$value);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user