ActionCRUD.php
5.13 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<?php
namespace thread\actions;
use Yii;
use Closure;
use yii\base\{
Action, Model
};
//
use thread\modules\sys\modules\logbook\models\Logbook;
use yii\helpers\Url;
/**
* Class ActionCRUD
*
* @package thred\base
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c) 2016, VipDesign
*/
class ActionCRUD extends Action
{
/**
* Base layout
*
* @var string
*/
public $layout = '@app/layouts/base';
/**
* Base view
*
* @var string
*/
public $view = '_form';
/**
* Working model class name
* Model should extends \yii\db\ActiveRecord
*
* @var string
*/
public $modelClass = null;
/**
* Working model class name
* Model should extends \yii\db\ActiveRecordLang
*
* @var string
*/
public $modelClassLang = null;
/**
* Redirect action
*
* @var string | array | \Closure
*/
public $redirect = 'update';
/**
* Scenario name for model validation
*
* @var string
*/
public $scenario = 'backend';
/**
* @var null
*/
public $afterRunCallback = null;
/**
* @var null
*/
public $beforeRunCallback = null;
/**
* Access checking
*
* @var bool
*/
public $checkAccess = false;
/**
* Model
*
* @var \yii\db\ActiveRecord
*/
protected $model = null;
/**
* Lang model
*
* @var \yii\db\ActiveRecord
*/
protected $modelLang = null;
/**
* @var bool
*/
public $useLog = true;
/**
* @var array
*/
public $logMessage = [
'message' => '',
'url' => '',
];
/**
* Find model by primary key
* If model not found - return null
*
* @param integer | array $model_id
* @param string $className
* @return null | Model
*/
public function findModel($model_id, $className = '')
{
$modelClass = empty($className) ? $this->model : new $className;
$keys = $modelClass::primaryKey();
$model = null;
if (count($keys) > 1) {
$values = explode(',', $model_id);
if (count($keys) === count($values)) {
$model = $modelClass::findOne(array_combine($keys, $values));
}
} elseif ($model_id !== null) {
$model = $modelClass::findOne($model_id);
}
return $model;
}
/**
* Find language model by primary key
* If model not found - return null
*
* @param integer $modelId
* @return Model
*/
protected function findModelLang($modelId)
{
$model = null;
if ($modelId) {
$model = $this->modelLang->find()->andWhere(['rid' => $modelId])->one();
}
if ($model === null) {
$model = $this->modelLang->loadDefaultValues();
}
return $model;
}
/**
* Get after save redirect
*
* @return mixed
*/
public function getRedirect()
{
$redirect = $this->redirect;
if (is_array($redirect)) {
$red = $redirect;
} elseif ($redirect instanceof \Closure) {
$red = $redirect();
} else {
$red = [$this->redirect, 'id' => $this->model->id];
}
return $red;
}
/**
* Returns created data model
* @return object ActiveRecord
*/
public function getModel()
{
return $this->model;
}
/**
* Action which is executed after action
*/
protected function afterRun()
{
if ($this->afterRunCallback instanceof Closure) {
$f = $this->afterRunCallback;
$f($this);
}
parent::afterRun();
}
/**
* @return bool
*/
protected function beforeRun()
{
if ($this->beforeRunCallback instanceof Closure) {
$f = $this->beforeRunCallback;
$f($this);
}
return parent::beforeRun();
}
/**
*
*/
public function sendToLog()
{
/**
* @var $loogbook \thread\modules\sys\modules\logbook\components\Logbook
*/
$loogbook = Yii::$app->loogbook;
//
$module = (Yii::$app->controller->module->module->id == "app-backend") ?
Yii::$app->controller->module->id : Yii::$app->controller->module->module->id . '/' . Yii::$app->controller->module->id;
$controller = Yii::$app->controller->id;
//
$category = $module . '/' . $controller;
//
$info = $this->getLogInfo();
$loogbook->send($info['message'], $info['url']??'', Logbook::TYPE_NOTICE, $category);
}
/**
* @return string
*/
public function getLogInfo()
{
$m = $this->logMessage;
if ($m instanceof \Closure) {
$message = $m();
} elseif (!empty($m['message'])) {
$message = $m;
} else {
$message['message'] = "Model ID:" . $this->getModel()->id;
$message['url'] = Url::toRoute(['/' . Yii::$app->controller->module->id . '/' . Yii::$app->controller->id . '/list']);
}
return $message;
}
}