SeoCategory.php
5.72 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
<?php
namespace frontend\components;
use artbox\core\models\Alias;
use artbox\core\models\interfaces\AliasInterface;
use yii\base\Object;
class SeoCategory extends Object implements AliasInterface
{
const SINGLE_CATEGORY = 'single';
const ONE_OPTION = 'one_option';
const TWO_OPTIONS = 'two_options';
const MANY = 'many';
const TITLE_TEMPLATE = ' купити в Україні: Київ, Харків, Одесса - ціна, фото, відгуки | інтернет-магазин ACDC';
const DESC_TEMPLATE = 'Купити {inner text} в інтернет-магазині ACDC | Тільки оригінал > Доступні ціни > Покупка в кредит > Швидка доставка по Україні';
/**
* @var \common\models\catalog\Categor0y
*/
public $category;
/**
* @var array
*/
public $options;
/**
* @var integer
*/
public $languageId;
/**
* @var string
*/
protected $mode;
/**
* @var string
*/
protected $title = '';
/**
* @var string
*/
protected $description = '';
/**
* @var string
*/
protected $h1 = '';
/**
* @var string
*/
protected $robots = '';
/**
* @var string
*/
protected $text = '';
/**
* @var Alias
*/
public $categoryAlias;
/**
* @var array
*/
protected $templates = [];
protected function countOptions()
{
return count($this->options);
}
/**
* @inheritdoc
*/
public function init()
{
$this->selectMode();
$this->generateData();
$this->generateRobots();
}
protected function selectMode()
{
if (empty($this->options)) {
$this->mode = self::SINGLE_CATEGORY;
} elseif ($this->countOptions() === 1) {
$this->mode = self::ONE_OPTION;
} elseif ($this->countOptions() === 2) {
$this->mode = self::TWO_OPTIONS;
} else {
$this->mode = self::MANY;
}
}
private function selectH1()
{
// if (!empty($this->categoryAlias->h1)) {
// $this->h1 = $this->categoryAlias->h1;
// } else {
$this->h1 = $this->category->lang->title;
// }
}
protected function generateData()
{
$this->selectH1();
$this->selectTitle();
$this->selectDescription();
}
protected function selectTitle()
{
switch ($this->mode) {
case self::SINGLE_CATEGORY:
$this->title = $this->h1 . self::TITLE_TEMPLATE;
break;
case self::ONE_OPTION:
$this->title = $this->h1 . ' ' . $this->options[0]->title . self::TITLE_TEMPLATE;
break;
case self::TWO_OPTIONS:
$this->title = $this->h1 . ' ' . $this->options[0]->title
. ' ' . $this->options[1]->title
. self::TITLE_TEMPLATE;
break;
default:
$this->title = $this->h1 . self::TITLE_TEMPLATE;
}
}
protected function selectDescription()
{
switch ($this->mode) {
case self::SINGLE_CATEGORY:
$this->description = str_replace('{inner text}',$this->h1,self::DESC_TEMPLATE);
break;
case self::ONE_OPTION:
$this->description =
str_replace(
'{inner text}',
$this->h1 . ' ' . $this->options[0]->title,
self::DESC_TEMPLATE
);
break;
case self::TWO_OPTIONS:
$this->description =
str_replace(
'{inner text}',
$this->h1
. ' ' . $this->options[0]->title
. ' ' . $this->options[1]->title,
self::DESC_TEMPLATE
);
break;
default:
$this->description = str_replace('{inner text}',$this->h1,self::DESC_TEMPLATE);
}
}
protected function generateRobots()
{
switch ($this->mode) {
case self::SINGLE_CATEGORY:
$this->robots = 'index, follow';
case self::ONE_OPTION :
if (!empty($this->template) && !$this->template->isBasic) {
$this->robots = $this->template->robots;
} else {
$this->robots = 'index, follow';
}
break;
case self::TWO_OPTIONS:
if (!empty($this->template) && !$this->template->isBasic) {
$this->robots = $this->template->robots;
} else {
$this->robots = 'index, follow';
}
break;
case self::MANY:
$this->robots = 'noindex, nofollow';
break;
}
}
public function getFields(): string
{
return '';
}
public function getSeoText(): string
{
return $this->text ?? '';
}
public function getId()
{
return 0;
}
public function getTitle(): string
{
return $this->title ?? '';
}
public function getDesc(): string
{
return $this->description ?? '';
}
public function getH1(): string
{
return mb_strtoupper(mb_substr($this->h1, 0, 1)).mb_strtolower(mb_substr($this->h1, 1)) ?? '';
}
public function getText(): string
{
return $this->text ?? '';
}
public function getRobots(): string
{
return $this->robots ?? '';
}
}