This commit is contained in:
2021-03-29 16:17:22 +08:00
parent 8bc0971f25
commit ce0ba186a7
5 changed files with 88 additions and 11 deletions
+5 -2
View File
@@ -10,9 +10,11 @@ declare(strict_types=1);
namespace Database\Base;
use Annotation\Aspect;
use Annotation\Event;
use Annotation\Inject;
use ArrayAccess;
use Database\InjectProperty;
use Database\SqlBuilder;
use Database\Traits\HasBase;
use HttpServer\Http\Context;
@@ -136,6 +138,7 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
/**
* @throws Exception
*/
#[Aspect(InjectProperty::class)]
public function init()
{
if (!Context::hasContext(Relation::class)) {
@@ -144,14 +147,13 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
} else {
$this->_relation = Context::getContext(Relation::class);
}
$this->createAnnotation();
}
/**
* @throws Exception
*/
private function createAnnotation()
public function createAnnotation()
{
$annotation = Snowflake::app()->getAttributes();
$methods = $annotation->getMethods(get_called_class());
@@ -160,6 +162,7 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
$attribute->execute([$this, $method]);
}
}
$annotation->injectProperty($this);
}
+45
View File
@@ -0,0 +1,45 @@
<?php
namespace Database;
use JetBrains\PhpStorm\Pure;
use Snowflake\IAspect;
/**
* Class InjectProperty
* @package Database
*/
class InjectProperty implements IAspect
{
private string $className = '';
private string $methodName = '';
/**
* InjectProperty constructor.
* @param array $handler
*/
public function __construct(public array $handler)
{
}
/**
* @return mixed
*/
public function invoke(): mixed
{
$data = call_user_func($this->handler, func_get_args());
$this->handler[0]->createAnnotation();
echo 'inject property.' . PHP_EOL;
return $data;
}
}