Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 547bb85ba9 | |||
| 4ddcc87263 | |||
| 31a6862d62 | |||
| 6e1d1a300a | |||
| e260e43c17 | |||
| 76292522e4 | |||
| 7eb6151111 | |||
| 33db0bc463 | |||
| 014ccb5fb8 | |||
| ad537d1085 | |||
| 8be23dd4c7 | |||
| f75457b18a | |||
| 89b30b8bc8 | |||
| beb522a8bf | |||
| a883a65e3b | |||
| 34f8aaaca5 | |||
| 89bd7a8ee9 | |||
| bf0d2f7611 | |||
| 348b850c31 | |||
| fd830c6a9e | |||
| 6936b5cc8f | |||
| f50782c930 | |||
| 731af328d7 | |||
| 5756573d8d | |||
| eb75e69d60 | |||
| 6745036672 |
@@ -4,7 +4,10 @@ namespace PHPSTORM_META {
|
|||||||
|
|
||||||
// Reflect
|
// Reflect
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Psr\Container\ContainerInterface;
|
||||||
|
|
||||||
|
override(ContainerInterface::get(0), map('@'));
|
||||||
|
override(Container::make(0), map('@'));
|
||||||
override(Container::get(0), map('@'));
|
override(Container::get(0), map('@'));
|
||||||
override(Container::create(0), map('@'));
|
override(Container::create(0), map('@'));
|
||||||
// override(\Hyperf\Utils\Context::get(0), map('@'));
|
// override(\Hyperf\Utils\Context::get(0), map('@'));
|
||||||
|
|||||||
+38
-7
@@ -11,6 +11,7 @@ namespace Database;
|
|||||||
|
|
||||||
use Database\Traits\QueryTrait;
|
use Database\Traits\QueryTrait;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -63,8 +64,8 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function clear()
|
public function clear()
|
||||||
{
|
{
|
||||||
$this->db = null;
|
$this->db = NULL;
|
||||||
$this->useCache = false;
|
$this->useCache = FALSE;
|
||||||
$this->with = [];
|
$this->with = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,6 +80,36 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $size
|
||||||
|
* @param int $page
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
#[ArrayShape(['code' => "int", 'message' => "string", 'size' => "mixed", 'page' => "mixed", 'count' => "int", 'next' => "mixed", 'prev' => "mixed", 'param' => "array"])]
|
||||||
|
public function pagination(int $size = 20, int $page = 1): array
|
||||||
|
{
|
||||||
|
$page = max(1, $page);
|
||||||
|
$size = max(1, $size);
|
||||||
|
|
||||||
|
$offset = ($page - 1) * $size;
|
||||||
|
|
||||||
|
$count = $this->count();
|
||||||
|
$lists = $this->limit($offset, $size)->get()->toArray();
|
||||||
|
return [
|
||||||
|
'code' => 0,
|
||||||
|
'message' => 'ok',
|
||||||
|
'size' => $size,
|
||||||
|
'page' => $page,
|
||||||
|
'count' => $count,
|
||||||
|
'next' => max($page + 1, 1),
|
||||||
|
'prev' => max($page - 1, 1),
|
||||||
|
'param' => $lists,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $values
|
* @param array $values
|
||||||
* @return $this
|
* @return $this
|
||||||
@@ -198,7 +229,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
public function all(): Collection|array
|
public function all(): Collection|array
|
||||||
{
|
{
|
||||||
$data = $this->execute($this->builder->all())->all();
|
$data = $this->execute($this->builder->all())->all();
|
||||||
if (!empty($this->with)){
|
if (!empty($this->with)) {
|
||||||
$this->getWith($this->modelClass);
|
$this->getWith($this->modelClass);
|
||||||
}
|
}
|
||||||
$collect = new Collection($this, $data, $this->modelClass);
|
$collect = new Collection($this, $data, $this->modelClass);
|
||||||
@@ -266,7 +297,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function batchInsert(array $data): bool
|
public function batchInsert(array $data): bool
|
||||||
{
|
{
|
||||||
[$sql, $params] = $this->builder->insert($data, true);
|
[$sql, $params] = $this->builder->insert($data, TRUE);
|
||||||
|
|
||||||
|
|
||||||
return $this->execute($sql, $params)->exec();
|
return $this->execute($sql, $params)->exec();
|
||||||
@@ -280,7 +311,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function value($filed)
|
public function value($filed)
|
||||||
{
|
{
|
||||||
return $this->first()[$filed] ?? null;
|
return $this->first()[$filed] ?? NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -298,10 +329,10 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
* @return int|bool|string|null
|
* @return int|bool|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function delete(bool $getSql = false): int|bool|string|null
|
public function delete(bool $getSql = FALSE): int|bool|string|null
|
||||||
{
|
{
|
||||||
$sql = $this->builder->delete();
|
$sql = $this->builder->delete();
|
||||||
if ($getSql === false) {
|
if ($getSql === FALSE) {
|
||||||
return $this->execute($sql)->delete();
|
return $this->execute($sql)->delete();
|
||||||
}
|
}
|
||||||
return $sql;
|
return $sql;
|
||||||
|
|||||||
+47
-50
@@ -40,7 +40,7 @@ use validator\Validator;
|
|||||||
*
|
*
|
||||||
* @package Kiri\Abstracts
|
* @package Kiri\Abstracts
|
||||||
*
|
*
|
||||||
* @property bool $isCreate
|
* @property bool $isNowExample
|
||||||
* @property Application $container
|
* @property Application $container
|
||||||
* @property EventDispatch $eventDispatch
|
* @property EventDispatch $eventDispatch
|
||||||
* @property array $attributes
|
* @property array $attributes
|
||||||
@@ -102,15 +102,6 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
private array $_with = [];
|
private array $_with = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Application
|
|
||||||
*/
|
|
||||||
#[Pure] protected function getContainer(): Application
|
|
||||||
{
|
|
||||||
return Kiri::app();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
@@ -124,6 +115,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
private function _setter(string $name, mixed $value): mixed
|
private function _setter(string $name, mixed $value): mixed
|
||||||
{
|
{
|
||||||
@@ -139,7 +131,6 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $name
|
* @param string $name
|
||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws NotFindClassException
|
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
private function _getter(string $name, $value): mixed
|
private function _getter(string $name, $value): mixed
|
||||||
@@ -156,7 +147,6 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $name
|
* @param string $name
|
||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws NotFindClassException
|
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -176,6 +166,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return EventDispatch
|
* @return EventDispatch
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
protected function getEventDispatch(): EventDispatch
|
protected function getEventDispatch(): EventDispatch
|
||||||
{
|
{
|
||||||
@@ -221,7 +212,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$an = Kiri::app()->getAnnotation();
|
$an = Kiri::app()->getNote();
|
||||||
$an->injectProperty($this);
|
$an->injectProperty($this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,7 +229,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function getIsCreate(): bool
|
public function getIsNowExample(): bool
|
||||||
{
|
{
|
||||||
return $this->isNewExample === TRUE;
|
return $this->isNewExample === TRUE;
|
||||||
}
|
}
|
||||||
@@ -248,7 +239,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param bool $bool
|
* @param bool $bool
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setIsCreate(bool $bool = FALSE): static
|
public function setIsNowExample(bool $bool = FALSE): static
|
||||||
{
|
{
|
||||||
$this->isNewExample = $bool;
|
$this->isNewExample = $bool;
|
||||||
return $this;
|
return $this;
|
||||||
@@ -272,13 +263,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function hasPrimary(): bool
|
public function hasPrimary(): bool
|
||||||
{
|
{
|
||||||
if ($this->primary !== NULL) {
|
if ($this->primary !== NULL) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
$primary = $this->getColumns()->getPrimaryKeys();
|
$primary = $this->getColumns()->getPrimaryKeys();
|
||||||
if (!empty($primary)) {
|
if (!empty($primary)) {
|
||||||
return $this->primary = is_array($primary) ? current($primary) : $primary;
|
return $this->primary = is_array($primary) ? current($primary) : $primary;
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -287,7 +278,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function isAutoIncrement(): bool
|
public function isAutoIncrement(): bool
|
||||||
{
|
{
|
||||||
return $this->getAutoIncrement() !== null;
|
return $this->getAutoIncrement() !== NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -305,7 +296,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function getPrimary(): ?string
|
public function getPrimary(): ?string
|
||||||
{
|
{
|
||||||
if (!$this->hasPrimary()) {
|
if (!$this->hasPrimary()) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $this->primary;
|
return $this->primary;
|
||||||
}
|
}
|
||||||
@@ -317,7 +308,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function getPrimaryValue(): ?int
|
public function getPrimaryValue(): ?int
|
||||||
{
|
{
|
||||||
if (!$this->hasPrimary()) {
|
if (!$this->hasPrimary()) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $this->getAttribute($this->primary);
|
return $this->getAttribute($this->primary);
|
||||||
}
|
}
|
||||||
@@ -333,7 +324,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public static function findOne($param, $db = NULL): static|null
|
public static function findOne($param, $db = NULL): static|null
|
||||||
{
|
{
|
||||||
if (is_bool($param)) {
|
if (is_bool($param)) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (is_numeric($param)) {
|
if (is_numeric($param)) {
|
||||||
$param = static::getPrimaryCondition($param);
|
$param = static::getPrimaryCondition($param);
|
||||||
@@ -366,7 +357,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function max($field = null): ?ModelInterface
|
public static function max($field = NULL): ?ModelInterface
|
||||||
{
|
{
|
||||||
$columns = static::makeNewInstance()->getColumns();
|
$columns = static::makeNewInstance()->getColumns();
|
||||||
if (empty($field)) {
|
if (empty($field)) {
|
||||||
@@ -374,11 +365,11 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
}
|
}
|
||||||
$columns = $columns->get_fields();
|
$columns = $columns->get_fields();
|
||||||
if (!isset($columns[$field])) {
|
if (!isset($columns[$field])) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
$first = static::query()->max($field)->first();
|
$first = static::query()->max($field)->first();
|
||||||
if (empty($first)) {
|
if (empty($first)) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $first[$field];
|
return $first[$field];
|
||||||
}
|
}
|
||||||
@@ -403,6 +394,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return static
|
* @return static
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
private static function makeNewInstance(): static
|
private static function makeNewInstance(): static
|
||||||
{
|
{
|
||||||
@@ -449,11 +441,11 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @return bool
|
* @return bool
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
protected static function deleteByCondition($condition = NULL, array $attributes = [], bool $if_condition_is_null = false): bool
|
protected static function deleteByCondition($condition = NULL, array $attributes = [], bool $if_condition_is_null = FALSE): bool
|
||||||
{
|
{
|
||||||
if (empty($condition)) {
|
if (empty($condition)) {
|
||||||
if (!$if_condition_is_null) {
|
if (!$if_condition_is_null) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return (bool)static::query()->delete();
|
return (bool)static::query()->delete();
|
||||||
}
|
}
|
||||||
@@ -486,6 +478,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param $name
|
* @param $name
|
||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
public function setAttribute($name, $value): mixed
|
public function setAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
@@ -496,6 +489,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param $name
|
* @param $name
|
||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
public function setOldAttribute($name, $value): mixed
|
public function setOldAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
@@ -521,6 +515,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
/**
|
/**
|
||||||
* @param $param
|
* @param $param
|
||||||
* @return $this
|
* @return $this
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
public function setOldAttributes($param): static
|
public function setOldAttributes($param): static
|
||||||
{
|
{
|
||||||
@@ -544,7 +539,7 @@ 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);
|
||||||
|
|
||||||
$lastId = $dbConnection->save(true);
|
$lastId = $dbConnection->save(TRUE);
|
||||||
|
|
||||||
$lastId = $this->setPrimary((int)$lastId, $param);
|
$lastId = $this->setPrimary((int)$lastId, $param);
|
||||||
|
|
||||||
@@ -589,7 +584,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
private function updateInternal($fields, $condition, $param): bool|static
|
private function updateInternal($fields, $condition, $param): bool|static
|
||||||
{
|
{
|
||||||
if (empty($param)) {
|
if (empty($param)) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
if ($this->hasPrimary()) {
|
if ($this->hasPrimary()) {
|
||||||
$condition = [$this->getPrimary() => $this->getPrimaryValue()];
|
$condition = [$this->getPrimary() => $this->getPrimaryValue()];
|
||||||
@@ -599,10 +594,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
return $generate;
|
return $generate;
|
||||||
}
|
}
|
||||||
$command = $this->getConnection()->createCommand($generate[0], $generate[1]);
|
$command = $this->getConnection()->createCommand($generate[0], $generate[1]);
|
||||||
if ($command->save(false, $this)) {
|
if ($command->save(FALSE, $this)) {
|
||||||
return $this->refresh()->afterSave($fields, $param);
|
return $this->refresh()->afterSave($fields, $param);
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -616,14 +611,15 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$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();
|
||||||
if (!$this->isNewExample) {
|
if (!empty($this->_oldAttributes)) {
|
||||||
return $this->updateInternal($fields, $condition, $change);
|
return $this->updateInternal($fields, $condition, $change);
|
||||||
}
|
} else {
|
||||||
return $this->insert($change, $fields);
|
return $this->insert($change, $fields);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -634,7 +630,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
{
|
{
|
||||||
$this->_attributes = $value;
|
$this->_attributes = $value;
|
||||||
$this->_oldAttributes = $value;
|
$this->_oldAttributes = $value;
|
||||||
$this->setIsCreate(FALSE);
|
$this->setIsNowExample(FALSE);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -646,10 +642,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function validator(?array $rule): bool
|
public function validator(?array $rule): bool
|
||||||
{
|
{
|
||||||
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;
|
||||||
}
|
}
|
||||||
@@ -682,10 +678,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function getAttribute(string $name)
|
public function getAttribute(string $name)
|
||||||
{
|
{
|
||||||
if ($this->hasAnnotation($name)) {
|
if ($this->hasNote($name)) {
|
||||||
return $this->runAnnotation($name, $this->_attributes[$name]);
|
return $this->runNote($name, $this->_attributes[$name]);
|
||||||
}
|
}
|
||||||
return $this->_attributes[$name] ?? null;
|
return $this->_attributes[$name] ?? NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -695,7 +691,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
protected function runAnnotation(string $name, mixed $value, string $type = self::GET): mixed
|
protected function runNote(string $name, mixed $value, string $type = self::GET): mixed
|
||||||
{
|
{
|
||||||
return call_user_func($this->_annotations[$type][$name], $value);
|
return call_user_func($this->_annotations[$type][$name], $value);
|
||||||
}
|
}
|
||||||
@@ -710,7 +706,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$_tmp = [];
|
$_tmp = [];
|
||||||
$condition = [];
|
$condition = [];
|
||||||
foreach ($this->_attributes as $key => $val) {
|
foreach ($this->_attributes as $key => $val) {
|
||||||
$oldValue = $this->_oldAttributes[$key] ?? null;
|
$oldValue = $this->_oldAttributes[$key] ?? NULL;
|
||||||
if ($val === $oldValue) {
|
if ($val === $oldValue) {
|
||||||
$condition[$key] = $val;
|
$condition[$key] = $val;
|
||||||
} else {
|
} else {
|
||||||
@@ -781,6 +777,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Relation|null
|
* @return Relation|null
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
public function getRelation(): ?Relation
|
public function getRelation(): ?Relation
|
||||||
{
|
{
|
||||||
@@ -822,8 +819,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;
|
||||||
}
|
}
|
||||||
@@ -837,7 +834,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function afterSave($attributes, $changeAttributes): bool
|
public function afterSave($attributes, $changeAttributes): bool
|
||||||
{
|
{
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -847,7 +844,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function beforeSave($model): bool
|
public function beforeSave($model): bool
|
||||||
{
|
{
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -886,7 +883,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (method_exists($this, $method)) {
|
if (method_exists($this, $method)) {
|
||||||
return $this->{$method}();
|
return $this->{$method}();
|
||||||
}
|
}
|
||||||
$value = $this->_attributes[$name] ?? null;
|
$value = $this->_attributes[$name] ?? NULL;
|
||||||
|
|
||||||
return $this->_getter($name, $value);
|
return $this->_getter($name, $value);
|
||||||
}
|
}
|
||||||
@@ -922,7 +919,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function getAnnotation(string $type = self::GET): array
|
protected function getNote(string $type = self::GET): array
|
||||||
{
|
{
|
||||||
return $this->_annotations[$type] ?? [];
|
return $this->_annotations[$type] ?? [];
|
||||||
}
|
}
|
||||||
@@ -933,10 +930,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
protected function hasAnnotation($name, string $type = self::GET): bool
|
protected function hasNote($name, string $type = self::GET): bool
|
||||||
{
|
{
|
||||||
if (!isset($this->_annotations[$type])) {
|
if (!isset($this->_annotations[$type])) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return isset($this->_annotations[$type][$name]);
|
return isset($this->_annotations[$type][$name]);
|
||||||
}
|
}
|
||||||
@@ -1062,7 +1059,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$model = duplicate(static::class);
|
$model = duplicate(static::class);
|
||||||
$model->_attributes = $data;
|
$model->_attributes = $data;
|
||||||
$model->_oldAttributes = $data;
|
$model->_oldAttributes = $data;
|
||||||
$model->setIsCreate(false);
|
$model->setIsNowExample(FALSE);
|
||||||
return $model;
|
return $model;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,14 +5,13 @@ namespace Database\Condition;
|
|||||||
|
|
||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\BaseObject;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Str;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Condition
|
* Class Condition
|
||||||
* @package Database\Condition
|
* @package Database\Condition
|
||||||
*/
|
*/
|
||||||
abstract class Condition extends BaseObject
|
abstract class Condition extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
protected string $column = '';
|
protected string $column = '';
|
||||||
|
|||||||
+18
-15
@@ -11,7 +11,6 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use Database\Affair\BeginTransaction;
|
use Database\Affair\BeginTransaction;
|
||||||
use Database\Affair\Commit;
|
use Database\Affair\Commit;
|
||||||
use Database\Affair\Rollback;
|
use Database\Affair\Rollback;
|
||||||
@@ -23,6 +22,7 @@ use Kiri\Abstracts\Config;
|
|||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\NotFindClassException;
|
use Kiri\Exception\NotFindClassException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Note\Inject;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\Events\OnWorkerExit;
|
use Server\Events\OnWorkerExit;
|
||||||
use Server\Events\OnWorkerStop;
|
use Server\Events\OnWorkerStop;
|
||||||
@@ -43,7 +43,11 @@ class Connection extends Component
|
|||||||
|
|
||||||
public string $database = '';
|
public string $database = '';
|
||||||
|
|
||||||
public int $timeout = 1900;
|
public int $connect_timeout = 30;
|
||||||
|
|
||||||
|
public int $read_timeout = 10;
|
||||||
|
|
||||||
|
public array $pool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var bool
|
* @var bool
|
||||||
@@ -61,6 +65,7 @@ class Connection extends Component
|
|||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
public array $slaveConfig = [];
|
public array $slaveConfig = [];
|
||||||
|
public array $attributes = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -70,24 +75,18 @@ class Connection extends Component
|
|||||||
public Schema $_schema;
|
public Schema $_schema;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
|
||||||
*/
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* execute by __construct
|
* execute by __construct
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->eventProvider->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
|
$eventProvider = Kiri::getDi()->get(EventProvider::class);
|
||||||
$this->eventProvider->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
|
$eventProvider->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
|
||||||
$this->eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
$eventProvider->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
|
||||||
$this->eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
$eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
||||||
$this->eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
$eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
||||||
|
$eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
||||||
|
|
||||||
if (Db::transactionsActive()) {
|
if (Db::transactionsActive()) {
|
||||||
$this->beginTransaction();
|
$this->beginTransaction();
|
||||||
@@ -200,7 +199,11 @@ class Connection extends Component
|
|||||||
'cds' => $this->cds,
|
'cds' => $this->cds,
|
||||||
'username' => $this->username,
|
'username' => $this->username,
|
||||||
'password' => $this->password,
|
'password' => $this->password,
|
||||||
'database' => $this->database
|
'attributes' => $this->attributes,
|
||||||
|
'connect_timeout' => $this->connect_timeout,
|
||||||
|
'read_timeout' => $this->read_timeout,
|
||||||
|
'dbname' => $this->database,
|
||||||
|
'pool' => $this->pool
|
||||||
], true);
|
], true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Abstracts\Providers;
|
use Kiri\Abstracts\Providers;
|
||||||
@@ -24,13 +23,6 @@ class DatabasesProviders extends Providers
|
|||||||
private array $_pooLength = ['min' => 0, 'max' => 1];
|
private array $_pooLength = ['min' => 0, 'max' => 1];
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
|
||||||
*/
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Application $application
|
* @param Application $application
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -83,16 +75,18 @@ class DatabasesProviders extends Providers
|
|||||||
*/
|
*/
|
||||||
private function _settings($database): array
|
private function _settings($database): array
|
||||||
{
|
{
|
||||||
|
$clientPool = $database['pool'] ?? ['min' => 1, 'max' => 5, 'tick' => 60];
|
||||||
return [
|
return [
|
||||||
'class' => Connection::class,
|
|
||||||
'id' => $database['id'],
|
'id' => $database['id'],
|
||||||
'cds' => $database['cds'],
|
'cds' => $database['cds'],
|
||||||
'username' => $database['username'],
|
'username' => $database['username'],
|
||||||
'password' => $database['password'],
|
'password' => $database['password'],
|
||||||
'tablePrefix' => $database['tablePrefix'],
|
'tablePrefix' => $database['tablePrefix'],
|
||||||
'database' => $database['database'],
|
'database' => $database['database'],
|
||||||
'maxNumber' => $this->_pooLength['max'],
|
'connect_timeout' => $database['connect_timeout'] ?? 30,
|
||||||
'minNumber' => $this->_pooLength['min'],
|
'read_timeout' => $database['read_timeout'] ?? 10,
|
||||||
|
'pool' => $clientPool,
|
||||||
|
'attributes' => $database['attributes'] ?? [],
|
||||||
'charset' => $database['charset'] ?? 'utf8mb4',
|
'charset' => $database['charset'] ?? 'utf8mb4',
|
||||||
'slaveConfig' => $database['slaveConfig']
|
'slaveConfig' => $database['slaveConfig']
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ class Model extends Base\Model
|
|||||||
if (empty($select)) {
|
if (empty($select)) {
|
||||||
$select = duplicate(static::class);
|
$select = duplicate(static::class);
|
||||||
$select->attributes = $attributes;
|
$select->attributes = $attributes;
|
||||||
|
$select->setIsNowExample(true);
|
||||||
if (!$select->save()) {
|
if (!$select->save()) {
|
||||||
Db::rollback();
|
Db::rollback();
|
||||||
return $logger->addError($select->getLastError(), 'mysql');
|
return $logger->addError($select->getLastError(), 'mysql');
|
||||||
|
|||||||
+41
-16
@@ -3,8 +3,8 @@
|
|||||||
namespace Database\Mysql;
|
namespace Database\Mysql;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri\Abstracts\Config;
|
||||||
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;
|
||||||
@@ -29,18 +29,31 @@ class PDO implements StopHeartbeatCheck
|
|||||||
|
|
||||||
private int $_last = 0;
|
private int $_last = 0;
|
||||||
|
|
||||||
|
public string $dbname;
|
||||||
|
public string $cds;
|
||||||
|
public string $username;
|
||||||
|
public string $password;
|
||||||
|
public string $charset;
|
||||||
|
public int $connect_timeout;
|
||||||
|
public int $read_timeout;
|
||||||
|
|
||||||
|
|
||||||
|
public array $attributes = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $dbname
|
* @param array $config
|
||||||
* @param string $cds
|
|
||||||
* @param string $username
|
|
||||||
* @param string $password
|
|
||||||
* @param string $chatset
|
|
||||||
* @throws
|
|
||||||
*/
|
*/
|
||||||
public function __construct(public string $dbname, public string $cds,
|
public function __construct(array $config)
|
||||||
public string $username, public string $password, public string $chatset = 'utf8mb4')
|
|
||||||
{
|
{
|
||||||
|
$this->dbname = $config['dbname'];
|
||||||
|
$this->cds = $config['cds'];
|
||||||
|
$this->username = $config['username'];
|
||||||
|
$this->password = $config['password'];
|
||||||
|
$this->connect_timeout = $config['connect_timeout'] ?? 30;
|
||||||
|
$this->read_timeout = $config['read_timeout'] ?? 10;
|
||||||
|
$this->charset = $config['charset'] ?? 'utf8mb4';
|
||||||
|
$this->attributes = $config['attributes'] ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -67,22 +80,29 @@ class PDO implements StopHeartbeatCheck
|
|||||||
if (env('state', 'start') == 'exit') {
|
if (env('state', 'start') == 'exit') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($this->_timer === -1 && Context::inCoroutine()) {
|
if ($this->_timer === -1) {
|
||||||
$this->_timer = Timer::tick(1000, function () {
|
$this->_timer = Timer::tick(1000, fn() => $this->waite());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
private function waite(): void
|
||||||
|
{
|
||||||
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 > (int)Config::get('databases.pool.tick', 60)) {
|
||||||
$this->stopHeartbeatCheck();
|
$this->stopHeartbeatCheck();
|
||||||
$this->pdo = null;
|
$this->pdo = null;
|
||||||
}
|
}
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
error($throwable);
|
error($throwable);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -286,13 +306,18 @@ class PDO implements StopHeartbeatCheck
|
|||||||
$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 => $this->connect_timeout,
|
||||||
\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->charset
|
||||||
]);
|
]);
|
||||||
$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);
|
||||||
|
if (!empty($this->attributes) && is_array($this->attributes)) {
|
||||||
|
foreach ($this->attributes as $key => $attribute) {
|
||||||
|
$link->setAttribute($key, $attribute);
|
||||||
|
}
|
||||||
|
}
|
||||||
return $link;
|
return $link;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Attribute;
|
use Attribute;
|
||||||
@@ -11,9 +11,9 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Get
|
* Class Get
|
||||||
* @package Annotation\Model
|
* @package Note\Model
|
||||||
*/
|
*/
|
||||||
#[Attribute(Attribute::TARGET_METHOD)] class Get extends \Annotation\Attribute
|
#[Attribute(Attribute::TARGET_METHOD)] class Get extends \Note\Attribute
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Note\Attribute;
|
||||||
use Database\Base\Relate;
|
use Database\Base\Relate;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Relation
|
* Class Relation
|
||||||
* @package Annotation\Model
|
* @package Note\Model
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Relation extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Relation extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Note\Attribute;
|
||||||
use Database\Base\Setter;
|
use Database\Base\Setter;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
@@ -194,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 {
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user