Blame view

frontend/widgets/Seo.php 12.6 KB
4253cbec   root   first commit
1
2
3
4
  <?php
  namespace frontend\widgets;
  
  use common\models\SeoDynamic;
4d5dbae3   Administrator   big commti
5
  use Yii;
4253cbec   root   first commit
6
  use common\modules\product\models\Brand;
4d5dbae3   Administrator   big commti
7
  use common\modules\rubrication\models\TaxGroup;
4253cbec   root   first commit
8
9
  use common\modules\rubrication\models\TaxOption;
  use yii\base\Widget;
4d5dbae3   Administrator   big commti
10
  use yii\helpers\ArrayHelper;
4253cbec   root   first commit
11
  use yii\helpers\Html;
4d5dbae3   Administrator   big commti
12
13
  use yii\helpers\Url;
  use yii\web\HttpException;
4253cbec   root   first commit
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  
  class Seo extends Widget
  {
      private $url;
      public $row;
      public $own_attr;
      public $fields;
      public $category_name;
      public $description;
      public $title;
      public $meta;
      public $seo_text;
      public $h1;
      public $key;
      public $name;
      public $project_name;
9612cf03   Administrator   big commti
30
      public static $optionsList;
4253cbec   root   first commit
31
32
33
34
35
36
37
38
39
40
41
42
43
44
      protected static $check_url;
      protected static $check_url_bool;
  
  
      const SEO_TEXT = 'seo_text';
      const DESCRIPTION = 'description';
      const META = 'meta';
      const H1 = 'h1';
      const TITLE = 'title';
  
      public function init()
      {
          $this->url = \Yii::$app->request->url;
          $this->project_name = \Yii::$app->name;
9612cf03   Administrator   big commti
45
46
47
48
          if(empty(self::$optionsList)){
              self::$optionsList = ArrayHelper::getColumn(TaxGroup::find()->where(['is_filter' => 'TRUE'])->all(),'alias');
          }
  
4253cbec   root   first commit
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
          parent::init();
  
      }
  
  
      public function run()
      {
  
          $seoData = $this->getViewData();
          foreach ($seoData as $key => $value) {
              $this->$key = $value;
          }
   
  
          switch ($this->row) {
              case self::SEO_TEXT:
  
  
                  $filter = \Yii::$app->request->get('filters', []);
                  $sort = \Yii::$app->request->get('sort', []);
                  $paginate = \Yii::$app->request->get('page', []);
  
                  if(empty($filter) && empty($sort) && empty($paginate) ){
  
                      return $this->selectSeoData(self::SEO_TEXT);
  
                  } else {
  
                      $widgetData = static::findSeoByUrl($this->url);
  
                      $result = '';
  
                      if ($widgetData instanceof \common\models\Seo) {
  
                          $result = $widgetData->{self::SEO_TEXT};
  
                      } else {
  
                          $widgetData = $this->findSeoByDynamic();
  
                          if ($widgetData instanceof SeoDynamic) {
  
                              $result = $widgetData->{self::SEO_TEXT};
  
                          }
  
                      }
  
                      return $this->replaceData($result);
                  }
  
  
                  break;
              case self::H1:
  
                  $filter = \Yii::$app->request->get('filters', []);
  
d16d91c3   Administrator   big commti
106
                  $default = $this->selectSeoData(self::H1);
4253cbec   root   first commit
107
  
d16d91c3   Administrator   big commti
108
109
                  if ($default != $this->{self::H1}) {
                      return $default;
4253cbec   root   first commit
110
  
4253cbec   root   first commit
111
  
d16d91c3   Administrator   big commti
112
                  } else if($this->checkFilter($filter)){
21c91e43   Administrator   big commti
113
114
                      $array = $this->arrayBuilder($filter);
                      return $this->getNameString($array);
d16d91c3   Administrator   big commti
115
116
117
                  }
                  else {
                      return $default;
4253cbec   root   first commit
118
119
120
121
122
123
124
                  }
                      break;
              case self::TITLE:
  
                  $filter = \Yii::$app->request->get('filters', []);
  
  
4253cbec   root   first commit
125
  
e337d04a   Administrator   liniya first commit
126
  
b905419d   Administrator   big commti
127
                  $title = $this->selectSeoData(self::TITLE);
4d5dbae3   Administrator   big commti
128
129
  
  
ddf2d8f9   Administrator   big commti
130
                  if(!empty($filter) &&  isset($this->fields['meta-title']) && $title == $this->fields['meta-title'] || !empty($filter) && empty($title)) {
b905419d   Administrator   big commti
131
                      $array = $this->arrayBuilder($filter);
4d5dbae3   Administrator   big commti
132
133
134
135
136
  
                      $title_string = $this->getTitleString($array);
  
                      if($title_string){
                          return $title_string;
4253cbec   root   first commit
137
138
                      }
  
4d5dbae3   Administrator   big commti
139
                  }
4253cbec   root   first commit
140
  
4d5dbae3   Administrator   big commti
141
                  if (!empty($title)) {
4253cbec   root   first commit
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
                      return $title;
                  } else  {
                      return $this->project_name;
                  }
  
                  break;
              case self::DESCRIPTION:
                  $description = $this->selectSeoData(self::DESCRIPTION);
  
                  if (!empty($description)) {
  
                      $this->getView()->registerMetaTag([
                          'name' => 'description',
                          'content' => $description
                      ]);
  
b905419d   Administrator   big commti
158
159
160
                  } else {
  
                      $filter = \Yii::$app->request->get('filters', []);
ddf2d8f9   Administrator   big commti
161
  
b905419d   Administrator   big commti
162
163
                      if(!empty($filter)){
                          $array = $this->arrayBuilder($filter);
ddf2d8f9   Administrator   big commti
164
165
166
167
                          $this->getView()->registerMetaTag([
                              'name' => 'description',
                              'content' => $this->getDescriptionString($array)
                          ]);
b905419d   Administrator   big commti
168
169
                      }
  
4253cbec   root   first commit
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
                  }
  
                  break;
              case self::META:
  
                  $meta = $this->selectSeoData(self::META);
  
                  $filter = \Yii::$app->request->get('filters', []);
                  $sort = \Yii::$app->request->get('sort', []);
                  $paginate = \Yii::$app->request->get('page', []);
  
  
  
                  if (!empty($meta)) {
  
                      $this->getView()->registerMetaTag([
                          'name' => 'robots',
                          'content' => $meta
                      ]);
  
                  } else if(!empty($filter['special'])){
  
                      $this->getView()->registerMetaTag([
                          'name' => 'robots',
                          'content' => 'noindex,follow'
                      ]);
  
                  } else if (
                      isset($filter['brands']) && count($filter['brands']) > 1
9612cf03   Administrator   big commti
199
                      || isset($filter)  && $this->checkFilter($filter)
4253cbec   root   first commit
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  
                  ) {
                      $this->getView()->registerMetaTag([
                          'name' => 'robots',
                          'content' => 'noindex,nofollow'
                      ]);
  
                  } else if (
                      isset($filter['brands']) && count($filter['brands']) <= 1 && isset($filter) && count($filter, COUNT_RECURSIVE) >= 4
                      || isset($filter) && count($filter, COUNT_RECURSIVE) > 4
                      || !empty($sort) ||  !empty($paginate) || isset($filter['prices'])
                  ) {
                      $this->getView()->registerMetaTag([
                          'name' => 'robots',
b905419d   Administrator   big commti
214
                          'content' => 'noindex,nofollow'
4253cbec   root   first commit
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
                      ]);
                  } else {
  
                      $this->getView()->registerMetaTag([
                          'name' => 'robots',
                          'content' => 'index,follow'
                      ]);
                  }
  
  
  
  
                  break;
          }
  
  
      }
  
      protected function replaceData($str)
      {
  
          if (!empty($this->fields)) {
              foreach ($this->fields as $field_name => $field_value) {
                  $str = str_replace('{' . $field_name . '}', $field_value, $str);
              }
          }
          $str = str_replace('{project_name}', $this->project_name, $str);
          return $str;
      }
  
      protected static function findSeoByUrl($url)
      {
          if(empty(self::$check_url_bool)){
              self::$check_url = \common\models\Seo::findOne(['url' => $url]);
              self::$check_url_bool = true;
          }
          return self::$check_url;
      }
  
      protected function findSeoByDynamic()
      {
  
          if(!empty($this->key)){
  
              $query = SeoDynamic::find()->joinWith('seoCategory')->where(['controller' => \Yii::$app->controller->id, 'action' => \Yii::$app->controller->action->id, 'key' => $this->key]);
          } else {
  
  
              $query = SeoDynamic::find()->joinWith('seoCategory')->where(['controller' => \Yii::$app->controller->id, 'action' => \Yii::$app->controller->action->id]);
          }
  
          return $query->one();
      }
  
  
4d5dbae3   Administrator   big commti
270
271
272
273
274
      protected function findSeoByDynamicForFilters(){
          return SeoDynamic::find()->joinWith('seoCategory')->where(['param' =>'filters'])->one();
      }
  
  
4253cbec   root   first commit
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
      protected function getViewData()
      {
          $params = $this->getView()->params;
          if (isset($params['seo'])) {
              return $params['seo'];
          } else {
              return [];
          }
      }
  
      protected function selectSeoData($param)
      {
          $result = '';
  
          $widgetData = static::findSeoByUrl($this->url);
  
          if ($widgetData instanceof \common\models\Seo) {
  
              $result = $widgetData->$param;
  
          } else if (!empty($this->$param)) {
  
              $result = $this->$param;
906f0fd5   Administrator   big commti
298
  
4253cbec   root   first commit
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
          } else {
  
              $widgetData = $this->findSeoByDynamic();
  
              if ($widgetData instanceof SeoDynamic) {
  
                  $result = $widgetData->$param;
  
              }
  
          }
  
          return $this->replaceData($result);
  
      }
  
      public function getTitleString($array){
b71e91c1   Administrator   big commti
316
          // "{Название раздела: Название блока фильтра | Фильтр 1 | Название блока фильтра: Фильтр 2 | Название блока фильтра: Фильтр 3} - купить в Киеве, Украине - интернет магазин Лінія Світла";
b905419d   Administrator   big commti
317
318
319
320
          $row = '';
          foreach($array as $name => $field){
  
              if($name == 'category' ){
59f37b60   Administrator   big commti
321
                  $row = $field.' | '.$row;
b905419d   Administrator   big commti
322
              } else {
59f37b60   Administrator   big commti
323
                  $row .= $field['name'] .' '.$field['value'].' | '  ;
b905419d   Administrator   big commti
324
325
326
327
328
              }
  
  
  
          }
d16d91c3   Administrator   big commti
329
          $row = substr($row, 0,-2 );
b905419d   Administrator   big commti
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
          $row .= " - купить в Киеве, Украине - интернет магазин Лінія Світла";
          return $row;
  //        $template = SeoDynamic::find()->select('title')->where(['param' =>'filters'])->one();
  //        if($template instanceof SeoDynamic){
  //            foreach ($array as $field_name => $field_value) {
  //                $template->title = str_replace('{' . $field_name . '}', mb_strtolower($field_value), $template->title);
  //            }
  //            $template =  preg_replace('/\{.[^\}]*\}\s/','',$template->title);
  //            return $template;
  //        }
  //
  //        return false;
  
      }
  
  
      public function getDescriptionString($array){
b71e91c1   Administrator   big commti
347
          // "Лучшие цены на {Название раздела | Название блока фильтра: Фильтр 1 | Название блока фильтра: Фильтр 2 | Название блока фильтра: Фильтр 3}. Лінія Світла";
b905419d   Administrator   big commti
348
349
          $row = 'Лучшие цены на ';
          foreach($array as $name => $field){
4d5dbae3   Administrator   big commti
350
  
b905419d   Administrator   big commti
351
              if($name == 'category' ){
59f37b60   Administrator   big commti
352
                  $row = $field.' | '.$row;
b905419d   Administrator   big commti
353
              } else {
59f37b60   Administrator   big commti
354
                  $row .= $field['name'] .' '.$field['value'].' | '  ;
4d5dbae3   Administrator   big commti
355
              }
b905419d   Administrator   big commti
356
357
358
  
  
  
4253cbec   root   first commit
359
          }
d16d91c3   Administrator   big commti
360
          $row = substr($row, 0,-2 );
b905419d   Administrator   big commti
361
362
          $row .= ". Лінія Світла";
          return $row;
b905419d   Administrator   big commti
363
364
365
366
  
      }
  
  
21c91e43   Administrator   big commti
367
368
369
370
371
372
373
374
375
376
377
378
379
380
      public function getNameString($array){
          // "Лучшие цены на {Название раздела | Название блока фильтра: Фильтр 1 | Название блока фильтра: Фильтр 2 | Название блока фильтра: Фильтр 3}. Лінія Світла";
          $row = '';
          foreach($array as $name => $field){
  
              if($name == 'category' ){
                  $row = $field.' | '.$row;
              } else {
                  $row .= $field['name'] .' '.$field['value'].' | '  ;
              }
  
  
  
          }
d16d91c3   Administrator   big commti
381
          $row = substr($row, 0,-2 );
21c91e43   Administrator   big commti
382
383
384
385
          return $row;
  
      }
  
b905419d   Administrator   big commti
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
      public function arrayBuilder($filter)
      {
  
              $array = [
                  'category' => $this->category_name
              ];
  
  
              if (isset($filter['brands']) && count($filter['brands']) == 1) {
                  $model = Brand::find()->where(['alias' => $filter['brands'][0]])->one();
                  if (!$model instanceof Brand) {
  
                      \Yii::$app->response->redirect(['/site/error'], 404);
                  } else {
                      $array['brand']['name'] = 'Бренд';
                      $array['brand']['value'] = $model->name;
                  }
  
              }
  
  
              $optionsList = ArrayHelper::map(TaxGroup::find()->where(['is_filter' => 'TRUE'])->all(), 'alias', 'name');
  
  
              foreach ($optionsList as $optionList => $name) {
  
  
                  if (isset($filter[$optionList]) && count($filter[$optionList]) == 1) {
  
                      $model = TaxOption::find()->where(['alias' => $filter[$optionList]])->one();
                      if (!$model instanceof TaxOption) {
  
                          \Yii::$app->response->redirect(['site/error'], 404);
                      } else {
                          $array[$optionList]['value'] = $model->value;
                          $array[$optionList]['name'] = $name;
                      }
  
  
                  }
  
  
              }
4d5dbae3   Administrator   big commti
429
  
b905419d   Administrator   big commti
430
          return $array;
4253cbec   root   first commit
431
432
433
  
      }
  
9612cf03   Administrator   big commti
434
435
436
      protected function checkFilter($filter){
          foreach(self::$optionsList as $optionList){
  
d16d91c3   Administrator   big commti
437
              if(isset($filter[$optionList]) && count($filter[$optionList])  == 1){
9612cf03   Administrator   big commti
438
439
440
441
442
443
444
                  return true;
              }
  
          }
          return false;
      }
  
4253cbec   root   first commit
445
446
  
  }