forked from noumo/easyii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCategoryModel.php
314 lines (278 loc) · 9.32 KB
/
CategoryModel.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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<?php
namespace yii\easyii\components;
use Yii;
use yii\easyii\behaviors\CacheFlush;
use yii\easyii\behaviors\ImageFile;
use yii\easyii\behaviors\SeoBehavior;
use creocoder\nestedsets\NestedSetsBehavior;
use yii\easyii\behaviors\SortableModel;
use yii\easyii\behaviors\SlugBehavior;
use yii\easyii\behaviors\Taggable;
use yii\easyii\models\SeoText;
use yii\web\NotFoundHttpException;
/**
* Base CategoryModel. Shared by categories
* @package yii\easyii\components
* @inheritdoc
*/
class CategoryModel extends \yii\easyii\components\ActiveRecord
{
const STATUS_OFF = 0;
const STATUS_ON = 1;
static $FLAT = [];
static $TREE = [];
static $RELATIONS = ['seo'];
public $parent;
public $children = [];
public function rules()
{
return [
['title', 'required'],
['title', 'trim'],
[['title', 'slug'], 'string', 'max' => 128],
['description', 'string', 'max' => 1024],
['image_file', 'image'],
['slug', 'match', 'pattern' => static::$SLUG_PATTERN, 'message' => Yii::t('easyii', 'Slug can contain only 0-9, a-z and "-" characters (max: 128).')],
['slug', 'default', 'value' => null],
['tagNames', 'safe'],
['status', 'integer'],
['status', 'default', 'value' => self::STATUS_ON]
];
}
public function attributeLabels()
{
return [
'title' => Yii::t('easyii', 'Title'),
'description' => Yii::t('easyii', 'Description'),
'image_file' => Yii::t('easyii', 'Image'),
'slug' => Yii::t('easyii', 'Slug'),
'tagNames' => Yii::t('easyii', 'Tags'),
];
}
public function behaviors()
{
$moduleSettings = Yii::$app->getModule('admin')->activeModules[Module::getModuleName(static::className())]->settings;
$behaviors = [
'cacheflush' => [
'class' => CacheFlush::className(),
'key' => [static::tableName().'_tree', static::tableName().'_flat']
],
'seoBehavior' => SeoBehavior::className(),
'taggabble' => Taggable::className(),
'sluggable' => [
'class' => SlugBehavior::className(),
'immutable' => !empty($moduleSettings['categorySlugImmutable']) ? $moduleSettings['categorySlugImmutable'] : false
],
'nestedSets' => [
'class' => NestedSetsBehavior::className(),
'treeAttribute' => 'tree'
],
];
if(isset($moduleSettings['categoryThumb']) && $moduleSettings['categoryThumb']){
$behaviors['imageFileBehavior'] = ImageFile::className();
}
return $behaviors;
}
/**
* @return ActiveQueryNS
*/
public static function find()
{
return new ActiveQueryNS(get_called_class());
}
/**
* Get cached tree structure of category objects
* @return array
*/
public static function tree()
{
$cache = Yii::$app->cache;
$key = static::tableName().'_tree';
if(empty(static::$TREE[$key])) {
$tree = $cache->get($key);
if (!$tree) {
$tree = static::generateTree();
$cache->set($key, $tree, 3600);
}
if(count($tree)) {
foreach ($tree as $cat) {
static::$TREE[$key][] = self::buildCategoryModel($cat);
}
} else {
static::$TREE[$key] = [];
}
}
return static::$TREE[$key];
}
/**
* Get cached flat array of category objects
* @return array
*/
public static function cats()
{
$cache = Yii::$app->cache;
$key = static::tableName().'_flat';
if(empty(static::$FLAT[$key])) {
$flat = $cache->get($key);
if (!$flat) {
$flat = static::generateFlat();
$cache->set($key, $flat, 3600);
}
if(count($flat)) {
foreach ($flat as $cat) {
static::$FLAT[$key][] = self::buildCategoryModel($cat);
}
} else {
static::$FLAT[$key] = [];
}
}
return static::$FLAT[$key];
}
private static function buildCategoryModel($data)
{
$model = new static([
'id' => $data->id,
'parent' => $data->parent,
'depth' => $data->depth,
]);
$model->load((array)$data, '');
if(in_array('seo', static::$RELATIONS)) {
$model->populateRelation('seo', new SeoText($data->seo));
}
if(in_array('tags', static::$RELATIONS)) {
$model->setTagNames($data->tags);
}
$model->afterFind();
if(!empty($data->children) && is_array($data->children)){
if(is_object($data->children[0])) {
$model->children = [];
foreach($data->children as $child) {
$model->children[] = self::buildCategoryModel($child);
}
} else {
$model->children = $data->children;
}
}
return $model;
}
/**
* @param $id_slug
* @return CategoryModel
* @throws NotFoundHttpException
*/
public static function get($id_slug)
{
foreach(static::cats() as $cat){
if($cat->id == $id_slug || $cat->slug == $id_slug){
return $cat;
}
}
throw new NotFoundHttpException(Yii::t('easyii', 'Category not found'));
}
/**
* Generates tree from categories
* @return array
*/
public static function generateTree()
{
$collection = static::find()->with(static::$RELATIONS)->sort()->asArray()->all();
$trees = array();
$l = 0;
if (count($collection) > 0) {
// Node Stack. Used to help building the hierarchy
$stack = array();
foreach ($collection as $node) {
$item = $node;
$item['parent'] = '';
$item['children'] = [];
// Number of stack items
$l = count($stack);
// Check if we're dealing with different levels
while($l > 0 && $stack[$l - 1]->depth >= $item['depth']) {
array_pop($stack);
$l--;
}
// Stack is empty (we are inspecting the root)
if ($l == 0) {
// Assigning the root node
$i = count($trees);
$trees[$i] = (object)$item;
$stack[] = & $trees[$i];
} else {
// Add node to parent
$item['parent'] = $stack[$l - 1]->id;
$i = count($stack[$l - 1]->children);
$stack[$l - 1]->children[$i] = (object)$item;
$stack[] = & $stack[$l - 1]->children[$i];
}
}
}
return $trees;
}
/**
* Generates flat array of categories
* @return array
*/
public static function generateFlat()
{
$collection = static::find()->with(static::$RELATIONS)->sort()->asArray()->all();
$flat = [];
if (count($collection) > 0) {
$depth = 0;
$lastId = 0;
foreach ($collection as $node) {
$node = (object)$node;
$id = $node->id;
$node->parent = '';
if($node->depth > $depth){
$node->parent = $flat[$lastId]->id;
$depth = $node->depth;
} elseif($node->depth == 0){
$depth = 0;
} else {
if ($node->depth == $depth) {
$node->parent = $flat[$lastId]->parent;
} else {
foreach($flat as $temp){
if($temp->depth == $node->depth){
$node->parent = $temp->parent;
$depth = $temp->depth;
break;
}
}
}
}
$lastId = $id;
unset($node->lft, $node->rgt);
$flat[$id] = $node;
}
}
foreach($flat as &$node){
$node->children = [];
foreach($flat as $temp){
if($temp->parent == $node->id){
$node->children[] = $temp->id;
}
}
if(!empty($node->tags) && is_array($node->tags) && count($node->tags)){
$tags = [];
foreach($node->tags as $tag){
$tags[] = $tag['name'];
}
$node->tags = $tags;
}
}
return $flat;
}
public function create($parent_id = null)
{
if ($parent_id && ($parentCategory = static::findOne($parent_id))) {
$this->order_num = $parentCategory->order_num;
$this->appendTo($parentCategory);
} else {
$this->attachBehavior('sortable', SortableModel::className());
$this->makeRoot();
}
return $this->hasErrors() ? false : true;
}
}