This repository was archived by the owner on Sep 11, 2022. It is now read-only.
forked from na3r/yii-behavior-sluggable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSluggableBehavior.php
More file actions
303 lines (272 loc) · 7.52 KB
/
Copy pathSluggableBehavior.php
File metadata and controls
303 lines (272 loc) · 7.52 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
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
<?php
/**
* Sluggable Behavior for Yii Framework.
*
* @author Florian Fackler <florian.fackler@mintao.com>
* @link http://mintao.com/
* @copyright Copyright © 2009 Mintao GmbH & Co. KG
* @license WTFPL
* @version $Id: SluggableBehavior.php 530 2011-04-30 23:31:12Z florian.fackler $
* @package components
*/
include_once __DIR__ . '/Doctrine_Inflector.php';
/**
* SluggableBehavior
*
* @uses CActiveRecordBehavior
* @package
* @version $id$
* @copyright 2011 mintao GmbH & Co. KG
* @author Florian Fackler <florian.fackler@mintao.com>
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt}
*/
class SluggableBehavior extends CActiveRecordBehavior
{
/**
* @var array Column name(s) to build a slug
*/
private $columns = array();
/**
* Wether the slug should be unique or not.
* If set to true, a number is added
*
* @var bool
*/
private $unique = true;
/**
* @param boolean $unique
*/
public function setUnique($unique)
{
$this->unique = !!$unique;
}
/**
* @return boolean
*/
public function getUnique()
{
return $this->unique;
}
/**
* Update the slug every time the row is updated?
*
* @var bool $update
*/
private $update = true;
/**
* @param boolean $update
*/
public function setUpdate($update)
{
$this->update = !!$update;
}
/**
* @return boolean
*/
public function getUpdate()
{
return $this->update;
}
/**
* Name of table column to store the slug in
*
* @var string $slugColumn
*/
private $slugColumn = 'slug';
/**
* @param string $slugColumn
*/
public function setSlugColumn($slugColumn)
{
$this->slugColumn = (string)$slugColumn;
}
/**
* @return string
*/
public function getSlugColumn()
{
return $this->slugColumn;
}
/**
* If Doctrine Inflector is turned on, all special chars are
* replaced by standard a-z 0-9 chars.
* If you turn this iss only whitespaces will be
* replaced by dashes.
*
* @var bool
*/
private $useInflector = true;
/**
* @param boolean $useInflector
*/
public function setUseInflector($useInflector)
{
$this->useInflector = !!$useInflector;
}
/**
* @return boolean
*/
public function getUseInflector()
{
return $this->useInflector;
}
/**
* Transform the slug to lower case
*
* @var boolean
* @access public
*/
private $toLower = false;
/**
* @param boolean $toLower
*/
public function setToLower($toLower)
{
$this->toLower = !!$toLower;
}
/**
* @return boolean
*/
public function getToLower()
{
return $this->toLower;
}
/**
* Default columns to build slug if none given
*
* @var array Columns
*/
protected $_defaultColumnsToCheck = array('name', 'title');
/**
* @param array $columns
*/
public function setColumns(array $columns)
{
$this->columns = $columns;
}
/**
* @return array
*/
public function getColumns()
{
return $this->columns;
}
/**
* beforeSave
*
* @param CModelEvent $event
*
* @throws CException
* @access public
*/
public function beforeSave($event)
{
// Slug already created and no updated needed
if (true !== $this->update && !empty($this->getOwner()->{$this->slugColumn})) {
Yii::trace(
'Slug found - no update needed.',
__CLASS__ . '::' . __FUNCTION__
);
return parent::beforeSave($event);
}
$availableColumns = array_keys(
$this->getOwner()->tableSchema->columns
);
// Try to guess the right columns
if (0 === count($this->columns)) {
$this->columns = array_intersect(
$this->_defaultColumnsToCheck,
$availableColumns
);
} else {
// Unknown columns on board?
if(!$this->owner->isNewRecord) {
foreach ($this->columns as $col) {
if (!in_array($col, $availableColumns)) {
if (false !== strpos($col, '.')) {
Yii::trace(
'Dependencies to related models found',
__CLASS__
);
list($model, $attribute) = explode('.', $col);
$externalColumns = array_keys(
$this->getOwner()->$model->tableSchema->columns
);
if (!in_array($attribute, $externalColumns)) {
throw new CException(
"Model $model does not haz $attribute"
);
}
} else {
throw new CException(
'Unable to build slug, column ' . $col . ' not found.'
);
}
}
}
}
}
// No columns to build a slug?
if (0 === count($this->columns)) {
throw new CException(
'You must define "columns" to your sluggable behavior.'
);
}
// Fetch values
$values = array();
foreach ($this->columns as $col) {
if (false === strpos($col, '.')) {
$values[] = $this->getOwner()->$col;
} else {
list($model, $attribute) = explode('.', $col);
$values[] = $this->getOwner()->$model->$attribute;
}
}
// First version of slug
if (true === $this->useInflector) {
$slug = $checkslug = Doctrine_Inflector::urlize(
implode('-', $values)
);
} else {
$slug = $checkslug = $this->simpleSlug(
implode('-', $values)
);
}
// Check if slug has to be unique
if (false === $this->unique
||
(!$this->getOwner()->getIsNewRecord()
&& $slug === $this->getOwner()->{$this->slugColumn})
) {
Yii::trace('Non unique slug or slug already set', __CLASS__);
$this->getOwner()->{$this->slugColumn} = $slug;
} else {
$counter = 0;
while ($this->getOwner()->resetScope()
->exists($this->slugColumn.'=:sluggable', array(':sluggable' => $checkslug))
) {
Yii::trace("$checkslug found, iterating", __CLASS__);
$checkslug = sprintf('%s-%d', $slug, ++$counter);
}
$this->getOwner()->{$this->slugColumn} = $counter > 0 ? $checkslug : $slug;
}
return parent::beforeSave($event);
}
/**
* Create a simple slug by just replacing white spaces
*
* @param string $str
*
* @access protected
* @return string
*/
private function simpleSlug($str)
{
$slug = preg_replace('@[\s!:;_\?=\\\+\*/%&#]+@', '-', $str);
if (true === $this->toLower) {
$slug = mb_strtolower($slug, \Yii::app()->charset);
}
$slug = trim($slug, '-');
return $slug;
}
}