-
Notifications
You must be signed in to change notification settings - Fork 8
/
EmbeddedDocument.php
143 lines (128 loc) · 3.72 KB
/
EmbeddedDocument.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
namespace consultnn\embedded;
use yii\base\Model;
use yii\mongodb\ActiveRecord;
use yii\base\UnknownPropertyException;
use yii\validators\DefaultValueValidator;
/**
* Class EmbeddedDocument
* @property string $formName
* @property ActiveRecord $primaryModel
* @package consultnn\embedded
*/
class EmbeddedDocument extends Model
{
/**
* @var string
*/
private $_formName;
/**
* @var ActiveRecord
*/
private $_primaryModel;
/**
* @var string
*/
private $_source;
/**
* @inheritdoc
*/
#[\ReturnTypeWillChange]
public function formName()
{
if (!empty($this->_formName)) {
return $this->_formName;
} else {
return parent::formName();
}
}
/**
* @param $formName
*/
#[\ReturnTypeWillChange]
public function setFormName($formName)
{
if (!empty($formName)) {
$this->_formName = $formName;
}
}
/**
* set link to primary model
* @param ActiveRecord $model
*/
#[\ReturnTypeWillChange]
public function setPrimaryModel(ActiveRecord $model)
{
$this->_primaryModel = $model;
}
/**
* get link to primary model
* @return ActiveRecord
* @throws UnknownPropertyException
*/
#[\ReturnTypeWillChange]
public function getPrimaryModel()
{
if (!isset($this->_primaryModel)) {
throw new UnknownPropertyException('primary model is not set');
}
return $this->_primaryModel;
}
/**
* set link to primary model attribute
* @param $value
*/
#[\ReturnTypeWillChange]
public function setSource($value)
{
$this->_source = $value;
}
/**
* Save embedded model as attribute on primary model
* @throws UnknownPropertyException
*/
#[\ReturnTypeWillChange]
public function save()
{
if (!isset($this->_source) || !$this->primaryModel->hasAttribute($this->_source)) {
throw new UnknownPropertyException('source attribute is not set or not exists');
}
$this->primaryModel->save(false, [$this->_source]);
}
#[\ReturnTypeWillChange]
public function setScenario($scenario)
{
if (array_key_exists($scenario, $this->scenarios())) {
parent::setScenario($scenario);
}
}
/**
* Checks if embedded model is empty.
* Doesn't take into account validator's "when" and "isEmpty" parameters.
*
* Проверяет объект на пустоту.
* Пустым считается объект все атрибуты которого пусты (empty($value)) или равны значениям по-умолчанию. Не учитывает параметры "when" и "isEmpty" валидаторов "по-умолчанию".
* @return bool
*/
#[\ReturnTypeWillChange]
public function isEmpty()
{
$notEmptyAttributes = [];
foreach ($this->attributes() as $attribute) {
if (!empty($this->$attribute)) {
$notEmptyAttributes[$attribute] = $attribute;
}
}
foreach ($this->getActiveValidators() as $validator) {
if (($validator instanceof DefaultValueValidator) && ($checkAttributes = array_intersect($validator->attributes, $notEmptyAttributes))) {
/** @var \yii\validators\DefaultValueValidator $validator */
foreach ($checkAttributes as $attribute) {
if ($this->$attribute == $validator->value) {
unset($notEmptyAttributes[$attribute]);
}
}
}
}
return empty($notEmptyAttributes);
}
}