Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
3087a48c43 | |||
3aed13e6a0 | |||
43f545516d | |||
4d64143dbc |
@ -1,14 +1,125 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace ProVM\Common\Alias;
|
namespace ProVM\Common\Alias;
|
||||||
|
|
||||||
|
use \Model as BaseModel;
|
||||||
|
use ProVM\Common\Alias\Model as ModelInterface;
|
||||||
use ProVM\Common\Factory\Model as ModelFactory;
|
use ProVM\Common\Factory\Model as ModelFactory;
|
||||||
|
|
||||||
interface Model {
|
abstract class Model extends BaseModel implements ModelInterface {
|
||||||
public function getTable(): string;
|
const SELF_KEY = 'self_key';
|
||||||
public function setFactory(ModelFactory $factory): Model;
|
const PARENT_KEY = 'parent_key';
|
||||||
public function parentOf(string $child_model_class, array $relation_definitions): ?array;
|
const CHILD_KEY = 'child_key';
|
||||||
public function childOf(string $parent_model_class, array $relation_definitions): ?Model;
|
const SIBLING_KEY = 'sibling_key';
|
||||||
public function siblingOf(string $sibling_model_class, string $connecting_table, array $relation_definitions): ?array;
|
const SELF_CONNECT_KEY = 'self_connect_key';
|
||||||
|
const SIBLING_CONNECT_KEY = 'sibling_connect_key';
|
||||||
|
|
||||||
public function toArray(): array;
|
public function getTable(): string {
|
||||||
|
return static::$_table;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected $factory;
|
||||||
|
public function setFactory(ModelFactory $factory): ModelInterface {
|
||||||
|
$this->factory = $factory;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkDefinitions(array $definitions, array $required, array $default) {
|
||||||
|
foreach ($default as $key => $value) {
|
||||||
|
if (!isset($definitions[$key])) {
|
||||||
|
$definitions[$key] = $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach ($required as $definition) {
|
||||||
|
if (!isset($definitions[$definition])) {
|
||||||
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
|
||||||
|
throw new \InvalidArgumentException($definition . ' is required for ' . $trace[1]['function'] . ' in ' . get_called_class());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $definitions;
|
||||||
|
}
|
||||||
|
public function parentOf(string $child_model_class, array $relation_definitions): ?array {
|
||||||
|
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
||||||
|
Model::SELF_KEY,
|
||||||
|
Model::CHILD_KEY
|
||||||
|
], [
|
||||||
|
Model::SELF_KEY => 'id'
|
||||||
|
]);
|
||||||
|
return $this->factory
|
||||||
|
->find($child_model_class)
|
||||||
|
->where([
|
||||||
|
[
|
||||||
|
$relation_definitions[Model::CHILD_KEY],
|
||||||
|
$this->{$relation_definitions[Model::SELF_KEY]}
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->many();
|
||||||
|
}
|
||||||
|
public function childOf(string $parent_model_class, array $relation_definitions): ?ModelInterface {
|
||||||
|
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
||||||
|
Model::SELF_KEY,
|
||||||
|
Model::PARENT_KEY
|
||||||
|
], [
|
||||||
|
Model::PARENT_KEY => 'id'
|
||||||
|
]);
|
||||||
|
$parent_table = (new $parent_model_class())->getTable();
|
||||||
|
return $this->factory
|
||||||
|
->find($parent_model_class)
|
||||||
|
->where([
|
||||||
|
[
|
||||||
|
$relation_definitions[Model::PARENT_KEY],
|
||||||
|
$this->{$relation_definitions[Model::SELF_KEY]}
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->one();
|
||||||
|
}
|
||||||
|
public function siblingOf(string $sibling_model_class, string $connecting_table, array $relation_definitions): ?array {
|
||||||
|
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
||||||
|
Model::SELF_KEY,
|
||||||
|
Model::SIBLING_KEY,
|
||||||
|
Model::SELF_CONNECT_KEY,
|
||||||
|
Model::SIBLING_CONNECT_KEY
|
||||||
|
], [
|
||||||
|
Model::SELF_KEY => 'id',
|
||||||
|
Model::SIBLING_KEY => 'id'
|
||||||
|
]);
|
||||||
|
$sibling_table = (new $sibling_model_class())->getTable();
|
||||||
|
return $this->find($sibling_model_class)
|
||||||
|
->select([
|
||||||
|
[
|
||||||
|
$sibling_table,
|
||||||
|
'*'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$connecting_table,
|
||||||
|
'*'
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->join([
|
||||||
|
[
|
||||||
|
$connecting_table,
|
||||||
|
implode('.', [
|
||||||
|
$connecting_table,
|
||||||
|
$relation_definitions[Model::SIBLING_CONNECT_KEY]
|
||||||
|
]),
|
||||||
|
implode('.', [
|
||||||
|
$sibling_table,
|
||||||
|
$relation_definitions[Model::SIBLING_KEY]
|
||||||
|
])
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->where([
|
||||||
|
[
|
||||||
|
implode('.', [
|
||||||
|
$connecting_table,
|
||||||
|
$relation_definitions[Model::SELF_CONNECT_KEY]
|
||||||
|
]),
|
||||||
|
$this->{$relation_definitions[Model::SELF_KEY]}
|
||||||
|
]
|
||||||
|
])
|
||||||
|
->many();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toArray(): array {
|
||||||
|
return $this->asArray();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,125 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace ProVM\Common\Define;
|
namespace ProVM\Common\Define;
|
||||||
|
|
||||||
use \Model as BaseModel;
|
|
||||||
use ProVM\Common\Alias\Model as ModelInterface;
|
|
||||||
use ProVM\Common\Factory\Model as ModelFactory;
|
use ProVM\Common\Factory\Model as ModelFactory;
|
||||||
|
|
||||||
abstract class Model extends BaseModel implements ModelInterface {
|
interface Model {
|
||||||
const SELF_KEY = 'self_key';
|
public function getTable(): string;
|
||||||
const PARENT_KEY = 'parent_key';
|
public function setFactory(ModelFactory $factory): Model;
|
||||||
const CHILD_KEY = 'child_key';
|
public function parentOf(string $child_model_class, array $relation_definitions): ?array;
|
||||||
const SIBLING_KEY = 'sibling_key';
|
public function childOf(string $parent_model_class, array $relation_definitions): ?Model;
|
||||||
const SELF_CONNECT_KEY = 'self_connect_key';
|
public function siblingOf(string $sibling_model_class, string $connecting_table, array $relation_definitions): ?array;
|
||||||
const SIBLING_CONNECT_KEY = 'sibling_connect_key';
|
|
||||||
|
|
||||||
public function getTable(): string {
|
public function toArray(): array;
|
||||||
return static::$_table;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected $factory;
|
|
||||||
public function setFactory(ModelFactory $factory): ModelInterface {
|
|
||||||
$this->factory = $factory;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function checkDefinitions(array $definitions, array $required, array $default) {
|
|
||||||
foreach ($default as $key => $value) {
|
|
||||||
if (!isset($definitions[$key])) {
|
|
||||||
$definitions[$key] = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
foreach ($required as $definition) {
|
|
||||||
if (!isset($definitions[$definition])) {
|
|
||||||
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
|
|
||||||
throw new \InvalidArgumentException($definition . ' is required for ' . $trace[1]['function'] . ' in ' . get_called_class());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $definitions;
|
|
||||||
}
|
|
||||||
public function parentOf(string $child_model_class, array $relation_definitions): ?array {
|
|
||||||
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
|
||||||
Model::SELF_KEY,
|
|
||||||
Model::CHILD_KEY
|
|
||||||
], [
|
|
||||||
Model::SELF_KEY => 'id'
|
|
||||||
]);
|
|
||||||
return $this->factory
|
|
||||||
->find($child_model_class)
|
|
||||||
->where([
|
|
||||||
[
|
|
||||||
$relation_definitions[Model::CHILD_KEY],
|
|
||||||
$this->{$relation_definitions[Model::SELF_KEY]}
|
|
||||||
]
|
|
||||||
])
|
|
||||||
->many();
|
|
||||||
}
|
|
||||||
public function childOf(string $parent_model_class, array $relation_definitions): ?ModelInterface {
|
|
||||||
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
|
||||||
Model::SELF_KEY,
|
|
||||||
Model::PARENT_KEY
|
|
||||||
], [
|
|
||||||
Model::PARENT_KEY => 'id'
|
|
||||||
]);
|
|
||||||
$parent_table = (new $parent_model_class())->getTable();
|
|
||||||
return $this->factory
|
|
||||||
->find($parent_model_class)
|
|
||||||
->where([
|
|
||||||
[
|
|
||||||
$relation_definitions[Model::PARENT_KEY],
|
|
||||||
$this->{$relation_definitions[Model::SELF_KEY]}
|
|
||||||
]
|
|
||||||
])
|
|
||||||
->one();
|
|
||||||
}
|
|
||||||
public function siblingOf(string $sibling_model_class, string $connecting_table, array $relation_definitions): ?array {
|
|
||||||
$relation_definitions = $this->checkDefinitions($relation_definitions, [
|
|
||||||
Model::SELF_KEY,
|
|
||||||
Model::SIBLING_KEY,
|
|
||||||
Model::SELF_CONNECT_KEY,
|
|
||||||
Model::SIBLING_CONNECT_KEY
|
|
||||||
], [
|
|
||||||
Model::SELF_KEY => 'id',
|
|
||||||
Model::SIBLING_KEY => 'id'
|
|
||||||
]);
|
|
||||||
$sibling_table = (new $sibling_model_class())->getTable();
|
|
||||||
return $this->find($sibling_model_class)
|
|
||||||
->select([
|
|
||||||
[
|
|
||||||
$sibling_table,
|
|
||||||
'*'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
$connecting_table,
|
|
||||||
'*'
|
|
||||||
]
|
|
||||||
])
|
|
||||||
->join([
|
|
||||||
[
|
|
||||||
$connecting_table,
|
|
||||||
implode('.', [
|
|
||||||
$connecting_table,
|
|
||||||
$relation_definitions[Model::SIBLING_CONNECT_KEY]
|
|
||||||
]),
|
|
||||||
implode('.', [
|
|
||||||
$sibling_table,
|
|
||||||
$relation_definitions[Model::SIBLING_KEY]
|
|
||||||
])
|
|
||||||
]
|
|
||||||
])
|
|
||||||
->where([
|
|
||||||
[
|
|
||||||
implode('.', [
|
|
||||||
$connecting_table,
|
|
||||||
$relation_definitions[Model::SELF_CONNECT_KEY]
|
|
||||||
]),
|
|
||||||
$this->{$relation_definitions[Model::SELF_KEY]}
|
|
||||||
]
|
|
||||||
])
|
|
||||||
->many();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function toArray(): array {
|
|
||||||
return $this->asArray();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,9 @@ class Model {
|
|||||||
return $model;
|
return $model;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return BaseModel::factory($model_class)->create($data);
|
$model = BaseModel::factory($model_class)->create($data);
|
||||||
|
$model->setFactory($this);
|
||||||
|
return $model;
|
||||||
}
|
}
|
||||||
protected $class;
|
protected $class;
|
||||||
public function find(string $model_class): Model {
|
public function find(string $model_class): Model {
|
||||||
|
Reference in New Issue
Block a user