-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlugHelper.php
230 lines (217 loc) · 8.05 KB
/
SlugHelper.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
<?php
/**
* The MIT License (MIT)
*
* Copyright (c) 2014 CoderGarden
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
class SlugHelper {
/*
* Separator between words in slug.
* Dấu phân cách cho các từ trong slug.
*/
private $separator = "-";
/*
* Max length for slug in order to guarantee our slug' length
* is not over slug field's length in database.
* Giới hạn độ dài cho slug nhằm tránh vấn đề độ dài slug
* vượt quá độ dài quy định trong cơ sở dữ liệu.
*/
private $max_length = null;
/*
* Use cache for holding slug indexing.
* Sử dụng bộ nhớ đệm để quản lý số lượng các slug có tên giống nhau.
*/
private $use_cache = false;
private $cache_key = "SLUG_KEY";
/*
* The related model (table in DB) which holds slug fields.
*
* Model (bảng dữ liệu trong DB) có lưu trữ slug
*/
public $model = YOUR_TABLE_NAME;
/*
* The related id field of model.
*
* Tên của trường id (định danh cho các bản ghi) của model.
*/
public $id_field = "id";
/*
* The related slug field of model.
*
* Tên của trường slug (trường lưu trữ slug) của model.
*/
public $slug_field = "slug";
/*
* Id of existing model.
*
* Id của bản ghi đang lưu trữ slug.
*/
public $id = false;
/*
* Vietname with tone marks characters.
*
* Các từ tiếng Việt có dấu.
*/
private $vnmToneChars=array("à","á","ạ","ả","ã","â","ầ","ấ","ậ","ẩ","ẫ","ă","ằ","ắ","ặ","ẳ","ẵ",
"è","é","ẹ","ẻ","ẽ","ê","ề","ế","ệ","ể","ễ","ì","í","ị","ỉ","ĩ",
"ò","ó","ọ","ỏ","õ","ô","ồ","ố","ộ","ổ","ỗ","ơ","ờ","ớ","ợ","ở","ỡ",
"ù","ú","ụ","ủ","ũ","ư","ừ","ứ","ự","ử","ữ",
"ỳ","ý","ỵ","ỷ","ỹ",
"đ",
"À","Á","Ạ","Ả","Ã","Â","Ầ","Ấ","Ậ","Ẩ","Ẫ","Ă"
,"Ằ","Ắ","Ặ","Ẳ","Ẵ",
"È","É","Ẹ","Ẻ","Ẽ","Ê","Ề","Ế","Ệ","Ể","Ễ",
"Ì","Í","Ị","Ỉ","Ĩ",
"Ò","Ó","Ọ","Ỏ","Õ","Ô","Ồ","Ố","Ộ","Ổ","Ỗ","Ơ"
,"Ờ","Ớ","Ợ","Ở","Ỡ",
"Ù","Ú","Ụ","Ủ","Ũ","Ư","Ừ","Ứ","Ự","Ử","Ữ",
"Ỳ","Ý","Ỵ","Ỷ","Ỹ",
"Đ","ê","ù","à");
/*
* Vietname without tone marks characters.
*
* Các từ tiếng Việt không dấu.
*/
private $vnmNoTone=array("a","a","a","a","a","a","a","a","a","a","a","a","a","a","a","a","a",
"e","e","e","e","e","e","e","e","e","e","e",
"i","i","i","i","i",
"o","o","o","o","o","o","o","o","o","o","o","o"
,"o","o","o","o","o",
"u","u","u","u","u","u","u","u","u","u","u",
"y","y","y","y","y",
"d",
"A","A","A","A","A","A","A","A","A","A","A","A"
,"A","A","A","A","A",
"E","E","E","E","E","E","E","E","E","E","E",
"I","I","I","I","I",
"O","O","O","O","O","O","O","O","O","O","O","O"
,"O","O","O","O","O",
"U","U","U","U","U","U","U","U","U","U","U",
"Y","Y","Y","Y","Y",
"D","e","u","a");
public function __construct($separator = "_", $max_length = null, $use_cache = false, $cache_key = "SLUG_KEY") {
$this->separator = $separator;
$this->max_length = $max_length;
$this->use_cache = $use_cache;
$this->cache_key = $cache_key;
}
/**
* Except all Vietnamese tone marks by
* replacing the relative English words.
*
* Loại bỏ dấu cho tiếng Việt.
*
* (c) 2014 CoderGarden
*/
private function exceptVnmToneMarks($source) {
return str_replace($this->vnmToneChars, $this->vnmNoTone, $source);
}
/**
* Generate an unique Slug.
*
* Sinh một Slug duy nhất.
*
* (c) 2014 CoderGarden
*/
private function generateSlug($source) {
$slug = Str::slug($source, $this->separator);
if ($this->max_length) {
$slug = substr($slug, 0, $this->max_length);
}
/*
* Make slug unique.
* Tạo mã duy nhất cho Slug
*/
$counter = $this->getSlugCounter($slug);
if ($slug_counter > 0) {
$slug .= $this->separator . $slug_counter;
}
return $slug;
}
/**
* Get number of slug with the same name.
*
* Tìm số Slug có trùng tên.
*
* Note: This code is implemented with Laravel.
* You can change this for your specific environment.
*
* Chú ý: Đoạn mã này thực hiện với Laravel.
* Bạn có thể tự chỉnh sửa đoạn này cho phù hợp.
*
* (c) 2014 CoderGarden
*/
private function getSlugCounter ($slug) {
$slug_counter = 0;
if ($this->use_cache) {
/*
* Find counter of slug in the Cache
*
* Lấy ra số lượng slug cùng tên được lưu trữ trong bộ nhớ đệm (Cache)
*/
$slug_counter = Cache::tags($this->cache_key)->get($slug);
if ($slug_counter !== null) {
$slug_counter ++;
}
Cache::tags($this->cache_key)->put($slug, $slug_counter, $use_cache);
} else {
/*
* Find all records which contains current slug
*
* Lấy toàn bộ bản ghi có chưa slug đang cần tìm
*/
$list = DB::table($this->model)->where($this->slug_field, 'LIKE', $slug.'%')
->lists($this->slug_field, $this->id_field);
/*
* Find the maximum counter in list of records.
*
* Lấy ra mã gắn lớn nhất cho slug
*/
if (!empty($list) && in_array($slug, $list) &&
(!$this->id ||
!array_key_exists($this->id, $list) || $list[$this->id] !== $slug)) {
$len = strlen($slug . $this->separator);
foreach ($list as $slug_index) {
$slug_index = intval(substr($slug_index, $len));
if ($slug_index > $slug_counter) {
$slug_counter = $slug_index;
}
}
$slug_counter ++;
}
}
return $slug_counter;
}
/**
* Generate Slug for Vietnamese and English.
*
* Tạo Slug cho tiếng Việt và tiếng Anh.
*
* (c) 2014 CoderGarden
*/
public function sluggify($source) {
// except vietnamese tone marks
$source = $this->exceptVnmToneMarks($source);
// convert into slug
$slug = $this->generateSlug($source);
return $slug;
}
}