-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathMomentLocale.php
executable file
·227 lines (194 loc) · 5.04 KB
/
MomentLocale.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
<?php
namespace Moment;
/**
* MomentLocale
* @package Moment
* @author Tino Ehrich ([email protected])
*/
class MomentLocale
{
/**
* @var Moment
*/
private static $moment;
/**
* @var string
*/
private static $locale = 'en_GB';
/**
* @var boolean
*/
private static $findSimilar = false;
/**
* @var array
*/
private static $localeContent = array();
/**
* @param Moment $moment
*/
public static function setMoment(Moment $moment)
{
self::$moment = $moment;
}
/**
* @param string $locale
* @param bool $findSimilar
*
* @return void
* @throws MomentException
*/
public static function setLocale($locale, $findSimilar = false)
{
self::$locale = $locale;
self::$findSimilar = $findSimilar;
self::loadLocaleContent();
}
/**
* @return void
* @throws MomentException
*/
public static function loadLocaleContent()
{
$pathFile = self::findLocaleFile();
if (!$pathFile)
{
throw new MomentException('Locale does not exist: ' . $pathFile);
}
/** @noinspection PhpIncludeInspection */
self::$localeContent = require $pathFile;
}
/**
* @return array
*/
public static function getLocaleContent()
{
return self::$localeContent;
}
/**
* @param array $keys
*
* @return array|string|\Closure
* @throws MomentException
*/
public static function getLocaleString(array $keys)
{
$string = self::$localeContent;
foreach ($keys as $key)
{
if (isset($string[$key]) === false)
{
if ($key == 'monthsNominative' && isset($string['months']))
{
$string = $string['months'];
continue;
}
throw new MomentException('Locale string does not exist for key: ' . join(' > ', $keys));
}
$string = $string[$key];
}
return $string;
}
/**
* @param array $localeKeys
* @param array $formatArgs
*
* @return string
* @throws MomentException
*/
public static function renderLocaleString(array $localeKeys, array $formatArgs = array())
{
// get locale handler
$localeString = self::getLocaleString($localeKeys);
// handle callback
if ($localeString instanceof \Closure)
{
$localeString = call_user_func_array($localeString, $formatArgs);
}
return vsprintf($localeString, $formatArgs);
}
/**
* @param string $format
*
* @return string
*/
public static function prepareSpecialLocaleTags($format)
{
$placeholders = array(
// months
'(?<!\\\)F' => 'n__0001',
'(?<!\\\)M' => 'n__0002',
'(?<!\\\)f' => 'n__0005',
// weekdays
'(?<!\\\)l' => 'N__0003',
'(?<!\\\)D' => 'N__0004',
);
foreach ($placeholders as $regexp => $tag)
{
$format = preg_replace('/' . $regexp . '/u', $tag, $format);
}
return $format;
}
/**
* @param string $format
*
* @return string
* @throws MomentException
*/
public static function renderSpecialLocaleTags($format)
{
$placeholders = array(
// months
'\d{1,2}__0001' => 'months',
'\d{1,2}__0002' => 'monthsShort',
'\d{1,2}__0005' => 'monthsNominative',
// weekdays
'\d__0003' => 'weekdays',
'\d__0004' => 'weekdaysShort',
);
foreach ($placeholders as $regexp => $tag)
{
preg_match_all('/(' . $regexp . ')/', $format, $match);
if (isset($match[1]))
{
foreach ($match[1] as $date)
{
list($localeIndex, $type) = explode('__', $date);
$localeString = self::renderLocaleString(array($tag, --$localeIndex));
$format = preg_replace('/' . $date . '/u', $localeString, $format);
}
}
}
return $format;
}
/**
* @return null|string
*/
private static function findLocaleFile()
{
$basePathFile = __DIR__ . '/Locales/' . self::$locale;
$pathFile = $basePathFile . '.php';
if (file_exists($pathFile) === false)
{
$pathFile = null;
if (self::$findSimilar && $similarLocales = self::fetchSimilarLocales($basePathFile))
{
$pathFile = $similarLocales[0];
}
}
return $pathFile;
}
/**
* @param string $path
*
* @return null|array
*/
private static function fetchSimilarLocales($path)
{
$locales = glob($path . '*.php');
if ($locales && !empty($locales))
{
return $locales;
}
return null;
}
}