-
Notifications
You must be signed in to change notification settings - Fork 9
/
germanix_url.php
400 lines (377 loc) · 8.75 KB
/
germanix_url.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php
/*
Plugin Name: Germanix URL
Plugin URI: http://toscho.de/2010/wordpress-plugin-germanix/
Description: Konvertiert URL-Slugs und Dateinamen nach US-ASCII.
Version: 1.1
Author: Thomas Scholz
Author URI: http://toscho.de
Created: 13.05.2010
License: GPL
* Germanix URL, Copyright (C) 2011 Thomas Scholz
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
Changelog
v 0.1
* Initial release
v 0.2
* Added sanitize_filename_filter() for uploaded files.
v 0.3
* Split into two plugins
v 0.4
* Fixed bug in title filter with dots.
v 0.5
* Trim leading and trailing minus (-).
v 0.6
* Fixed an issue with 'Invalid Taxonomy' in the backend.
Props: Sergey Biryukov · http://sergeybiryukov.ru/
v 0.7
* Added support for Turkish
v 0.8
* Fix for http://core.trac.wordpress.org/ticket/16642
v 1.0
* Support for escaped strings from Windows LiveWriter
* @todo I18n for transliterations
*/
if ( is_admin() || ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) )
{
remove_filter( 'sanitize_title', 'sanitize_title_with_dashes', 11 );
add_filter( 'sanitize_title',
array ( 'Germanizer', 'sanitize_title_filter' ), 10, 2 );
add_filter( 'sanitize_file_name',
array ( 'Germanizer', 'sanitize_filename_filter' ), 10, 1 );
add_filter( 'http_request_args',
array ( 'Germanizer', 'no_upgrade_check' ), 5, 2 );
}
class Germanizer
{
/**
* Fixes names of uploaded files.
* »häßliches bild.jpg« => haessliches-bild.jpg
*
* @param string $filename
* @return string
*/
static function sanitize_filename_filter( $filename )
{
// Windows LiveWriter sends escaped strings.
$filename = html_entity_decode( $filename, ENT_QUOTES, 'utf-8' );
$filename = self::translit( $filename );
$filename = self::lower_ascii( $filename );
$filename = self::remove_doubles( $filename );
return $filename;
}
/**
* Fixes URI slugs.
*
* If you don't have any latin characters in your title you may end up
* with an empty title. WordPress will use the post ID then.
*
* @param string $title
* @param string $raw_title
* @return string
*/
static function sanitize_title_filter( $title, $raw_title = NULL )
{
! is_null( $raw_title ) and $title = $raw_title;
$title = self::sanitize_filename_filter( $title );
$title = str_replace( '.', '-', $title );
// Avoid double minus. WordPress cannot resolve such URLs.
$title = preg_replace( '~--+~', '-', $title );
// For %postname%-%post_id% permalinks.
return rtrim( $title, '-' );
}
/**
* Reduces repeated meta characters (-=+.) to one.
*
* @uses apply_filters( 'germanix_remove_doubles_regex' )
* @param string $str Input string
* @return string
*/
static function remove_doubles( $str )
{
$regex = apply_filters(
'germanix_remove_doubles_regex'
, array (
'pattern' => '~([=+.-])\\1+~'
, 'replacement' => "\\1"
)
);
return preg_replace( $regex['pattern'], $regex['replacement'], $str );
}
/**
* Converts uppercase characters to lowercase and removes the rest.
*
* @uses apply_filters( 'germanix_lower_ascii_regex' )
* @param string $str Input string
* @return string
*/
static function lower_ascii( $str )
{
$str = strtolower( $str );
$regex = apply_filters(
'germanix_lower_ascii_regex'
, array (
'pattern' => '~([^a-z\d_.-])~'
, 'replacement' => ''
)
);
// Leave underscores, otherwise the taxonomy tag cloud in the
// backend won’t work anymore.
return preg_replace( $regex['pattern'], $regex['replacement'], $str );
}
/**
* Replaces non ASCII chars.
*
* wp-includes/formatting.php#L531 is unfortunately completely inappropriate.
* Modified version of Heiko Rabe’s code.
*
* @author Heiko Rabe http://code-styling.de
* @link http://www.code-styling.de/?p=574
* @param string $str
* @return string
*/
static function translit( $str )
{
$utf8 = array (
'Ä' => 'Ae'
, 'ä' => 'ae'
, 'Æ' => 'Ae'
, 'æ' => 'ae'
, 'À' => 'A'
, 'à' => 'a'
, 'Á' => 'A'
, 'á' => 'a'
, 'Â' => 'A'
, 'â' => 'a'
, 'Ã' => 'A'
, 'ã' => 'a'
, 'Å' => 'A'
, 'å' => 'a'
, 'ª' => 'a'
, 'ₐ' => 'a'
, 'ā' => 'a'
, 'Ć' => 'C'
, 'ć' => 'c'
, 'Ç' => 'C'
, 'ç' => 'c'
, 'Ð' => 'D'
, 'đ' => 'd'
, 'È' => 'E'
, 'è' => 'e'
, 'É' => 'E'
, 'é' => 'e'
, 'Ê' => 'E'
, 'ê' => 'e'
, 'Ë' => 'E'
, 'ë' => 'e'
, 'ₑ' => 'e'
, 'ƒ' => 'f'
, 'ğ' => 'g'
, 'Ğ' => 'G'
, 'Ì' => 'I'
, 'ì' => 'i'
, 'Í' => 'I'
, 'í' => 'i'
, 'Î' => 'I'
, 'î' => 'i'
, 'Ï' => 'Ii'
, 'ï' => 'ii'
, 'ī' => 'i'
, 'ı' => 'i'
, 'I' => 'I' // turkish, correct?
, 'Ñ' => 'N'
, 'ñ' => 'n'
, 'ⁿ' => 'n'
, 'Ò' => 'O'
, 'ò' => 'o'
, 'Ó' => 'O'
, 'ó' => 'o'
, 'Ô' => 'O'
, 'ô' => 'o'
, 'Õ' => 'O'
, 'õ' => 'o'
, 'Ø' => 'O'
, 'ø' => 'o'
, 'ₒ' => 'o'
, 'Ö' => 'Oe'
, 'ö' => 'oe'
, 'Œ' => 'Oe'
, 'œ' => 'oe'
, 'ß' => 'ss'
, 'Š' => 'S'
, 'š' => 's'
, 'ş' => 's'
, 'Ş' => 'S'
, '™' => 'TM'
, 'Ù' => 'U'
, 'ù' => 'u'
, 'Ú' => 'U'
, 'ú' => 'u'
, 'Û' => 'U'
, 'û' => 'u'
, 'Ü' => 'Ue'
, 'ü' => 'ue'
, 'Ý' => 'Y'
, 'ý' => 'y'
, 'ÿ' => 'y'
, 'Ž' => 'Z'
, 'ž' => 'z'
// misc
, '¢' => 'Cent'
, '€' => 'Euro'
, '‰' => 'promille'
, '№' => 'Nr'
, '$' => 'Dollar'
, '℃' => 'Grad Celsius'
, '°C' => 'Grad Celsius'
, '℉' => 'Grad Fahrenheit'
, '°F' => 'Grad Fahrenheit'
// Superscripts
, '⁰' => '0'
, '¹' => '1'
, '²' => '2'
, '³' => '3'
, '⁴' => '4'
, '⁵' => '5'
, '⁶' => '6'
, '⁷' => '7'
, '⁸' => '8'
, '⁹' => '9'
// Subscripts
, '₀' => '0'
, '₁' => '1'
, '₂' => '2'
, '₃' => '3'
, '₄' => '4'
, '₅' => '5'
, '₆' => '6'
, '₇' => '7'
, '₈' => '8'
, '₉' => '9'
// Operators, punctuation
, '±' => 'plusminus'
, '×' => 'x'
, '₊' => 'plus'
, '₌' => '='
, '⁼' => '='
, '⁻' => '-' // sup minus
, '₋' => '-' // sub minus
, '–' => '-' // ndash
, '—' => '-' // mdash
, '‑' => '-' // non breaking hyphen
, '․' => '.' // one dot leader
, '‥' => '..' // two dot leader
, '…' => '...' // ellipsis
, '‧' => '.' // hyphenation point
, ' ' => '-' // nobreak space
, ' ' => '-' // normal space
// Russian
, 'А' => 'A'
, 'Б' => 'B'
, 'В' => 'V'
, 'Г' => 'G'
, 'Д' => 'D'
, 'Е' => 'E'
, 'Ё' => 'YO'
, 'Ж' => 'ZH'
, 'З' => 'Z'
, 'И' => 'I'
, 'Й' => 'Y'
, 'К' => 'K'
, 'Л' => 'L'
, 'М' => 'M'
, 'Н' => 'N'
, 'О' => 'O'
, 'П' => 'P'
, 'Р' => 'R'
, 'С' => 'S'
, 'Т' => 'T'
, 'У' => 'U'
, 'Ф' => 'F'
, 'Х' => 'H'
, 'Ц' => 'TS'
, 'Ч' => 'CH'
, 'Ш' => 'SH'
, 'Щ' => 'SCH'
, 'Ъ' => ''
, 'Ы' => 'YI'
, 'Ь' => ''
, 'Э' => 'E'
, 'Ю' => 'YU'
, 'Я' => 'YA'
, 'а' => 'a'
, 'б' => 'b'
, 'в' => 'v'
, 'г' => 'g'
, 'д' => 'd'
, 'е' => 'e'
, 'ё' => 'yo'
, 'ж' => 'zh'
, 'з' => 'z'
, 'и' => 'i'
, 'й' => 'y'
, 'к' => 'k'
, 'л' => 'l'
, 'м' => 'm'
, 'н' => 'n'
, 'о' => 'o'
, 'п' => 'p'
, 'р' => 'r'
, 'с' => 's'
, 'т' => 't'
, 'у' => 'u'
, 'ф' => 'f'
, 'х' => 'h'
, 'ц' => 'ts'
, 'ч' => 'ch'
, 'ш' => 'sh'
, 'щ' => 'sch'
, 'ъ' => ''
, 'ы' => 'yi'
, 'ь' => ''
, 'э' => 'e'
, 'ю' => 'yu'
, 'я' => 'ya'
);
$utf8 = apply_filters( 'germanix_translit_list', $utf8 );
$str = strtr( $str, $utf8 );
return trim( $str, '-' );
}
/**
* Blocks update checks for this plugin.
*
* @author Mark Jaquith http://markjaquith.wordpress.com
* @link http://wp.me/p56-65
* @param array $r
* @param string $url
* @return array
*/
static function no_upgrade_check( $r, $url )
{
if ( 0 !== strpos(
$url
, 'http://api.wordpress.org/plugins/update-check'
)
)
{ // Not a plugin update request. Bail immediately.
return $r;
}
$plugins = unserialize( $r['body']['plugins'] );
$p_base = plugin_basename( __FILE__ );
unset (
$plugins->plugins[$p_base],
$plugins->active[array_search( $p_base, $plugins->active )]
);
$r['body']['plugins'] = serialize( $plugins );
return $r;
}
}