-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDateFormatTrait.php
495 lines (451 loc) · 16.2 KB
/
DateFormatTrait.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.2.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\I18n;
use Cake\Chronos\DifferenceFormatterInterface;
use Closure;
use DateTime;
use DateTimeZone;
use IntlDateFormatter;
use RuntimeException;
/**
* Trait for date formatting methods shared by both Time & Date.
*
* This trait expects that the implementing class define static::$_toStringFormat.
*/
trait DateFormatTrait
{
/**
* The default locale to be used for displaying formatted date strings.
*
* Use static::setDefaultLocale() and static::getDefaultLocale() instead.
*
* @var string|null
*/
protected static $defaultLocale;
/**
* Whether lenient parsing is enabled for IntlDateFormatter.
*
* Defaults to true which is the default for IntlDateFormatter.
*
* @var bool
*/
protected static $lenientParsing = true;
/**
* In-memory cache of date formatters
*
* @var \IntlDateFormatter[]
*/
protected static $_formatters = [];
/**
* Gets the default locale.
*
* @return string|null The default locale string to be used or null.
*/
public static function getDefaultLocale(): ?string
{
return static::$defaultLocale;
}
/**
* Sets the default locale.
*
* Set to null to use IntlDateFormatter default.
*
* @param string|null $locale The default locale string to be used.
* @return void
*/
public static function setDefaultLocale(?string $locale = null): void
{
static::$defaultLocale = $locale;
}
/**
* Gets whether locale format parsing is set to lenient.
*
* @return bool
*/
public static function lenientParsingEnabled(): bool
{
return static::$lenientParsing;
}
/**
* Enables lenient parsing for locale formats.
*
* @return void
*/
public static function enableLenientParsing(): void
{
static::$lenientParsing = true;
}
/**
* Enables lenient parsing for locale formats.
*
* @return void
*/
public static function disableLenientParsing(): void
{
static::$lenientParsing = false;
}
/**
* Returns a nicely formatted date string for this object.
*
* The format to be used is stored in the static property `Time::niceFormat`.
*
* @param string|\DateTimeZone|null $timezone Timezone string or DateTimeZone object
* in which the date will be displayed. The timezone stored for this object will not
* be changed.
* @param string|null $locale The locale name in which the date should be displayed (e.g. pt-BR)
* @return string Formatted date string
*/
public function nice($timezone = null, $locale = null): string
{
return (string)$this->i18nFormat(static::$niceFormat, $timezone, $locale);
}
/**
* Returns a formatted string for this time object using the preferred format and
* language for the specified locale.
*
* It is possible to specify the desired format for the string to be displayed.
* You can either pass `IntlDateFormatter` constants as the first argument of this
* function, or pass a full ICU date formatting string as specified in the following
* resource: http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details.
*
* Additional to `IntlDateFormatter` constants and date formatting string you can use
* Time::UNIX_TIMESTAMP_FORMAT to get a unix timestamp
*
* ### Examples
*
* ```
* $time = new Time('2014-04-20 22:10');
* $time->i18nFormat(); // outputs '4/20/14, 10:10 PM' for the en-US locale
* $time->i18nFormat(\IntlDateFormatter::FULL); // Use the full date and time format
* $time->i18nFormat([\IntlDateFormatter::FULL, \IntlDateFormatter::SHORT]); // Use full date but short time format
* $time->i18nFormat('yyyy-MM-dd HH:mm:ss'); // outputs '2014-04-20 22:10'
* $time->i18nFormat(Time::UNIX_TIMESTAMP_FORMAT); // outputs '1398031800'
* ```
*
* You can control the default format used through `Time::setToStringFormat()`.
*
* You can read about the available IntlDateFormatter constants at
* https://secure.php.net/manual/en/class.intldateformatter.php
*
* If you need to display the date in a different timezone than the one being used for
* this Time object without altering its internal state, you can pass a timezone
* string or object as the second parameter.
*
* Finally, should you need to use a different locale for displaying this time object,
* pass a locale string as the third parameter to this function.
*
* ### Examples
*
* ```
* $time = new Time('2014-04-20 22:10');
* $time->i18nFormat(null, null, 'de-DE');
* $time->i18nFormat(\IntlDateFormatter::FULL, 'Europe/Berlin', 'de-DE');
* ```
*
* You can control the default locale used through `Time::setDefaultLocale()`.
* If empty, the default will be taken from the `intl.default_locale` ini config.
*
* @param string|int|int[]|null $format Format string.
* @param string|\DateTimeZone|null $timezone Timezone string or DateTimeZone object
* in which the date will be displayed. The timezone stored for this object will not
* be changed.
* @param string|null $locale The locale name in which the date should be displayed (e.g. pt-BR)
* @return string|int Formatted and translated date string
*/
public function i18nFormat($format = null, $timezone = null, $locale = null)
{
if ($format === Time::UNIX_TIMESTAMP_FORMAT) {
return $this->getTimestamp();
}
$time = $this;
if ($timezone) {
// Handle the immutable and mutable object cases.
$time = clone $this;
$time = $time->timezone($timezone);
}
$format = $format ?? static::$_toStringFormat;
$locale = $locale ?: static::$defaultLocale;
return $this->_formatObject($time, $format, $locale);
}
/**
* Returns a translated and localized date string.
* Implements what IntlDateFormatter::formatObject() is in PHP 5.5+
*
* @param \DateTime|\DateTimeImmutable $date Date.
* @param string|int|int[] $format Format.
* @param string|null $locale The locale name in which the date should be displayed.
* @return string
*/
protected function _formatObject($date, $format, ?string $locale): string
{
$pattern = '';
if (is_array($format)) {
[$dateFormat, $timeFormat] = $format;
} elseif (is_int($format)) {
$dateFormat = $timeFormat = $format;
} else {
$dateFormat = $timeFormat = IntlDateFormatter::FULL;
$pattern = $format;
}
if ($locale === null) {
$locale = I18n::getLocale();
}
if (
preg_match(
'/@calendar=(japanese|buddhist|chinese|persian|indian|islamic|hebrew|coptic|ethiopic)/',
$locale
)
) {
$calendar = IntlDateFormatter::TRADITIONAL;
} else {
$calendar = IntlDateFormatter::GREGORIAN;
}
$timezone = $date->getTimezone()->getName();
$key = "{$locale}.{$dateFormat}.{$timeFormat}.{$timezone}.{$calendar}.{$pattern}";
if (!isset(static::$_formatters[$key])) {
if ($timezone === '+00:00' || $timezone === 'Z') {
$timezone = 'UTC';
} elseif ($timezone[0] === '+' || $timezone[0] === '-') {
$timezone = 'GMT' . $timezone;
}
$formatter = datefmt_create(
$locale,
$dateFormat,
$timeFormat,
$timezone,
$calendar,
$pattern
);
if ($formatter === false) {
throw new RuntimeException(
'Your version of icu does not support creating a date formatter for ' .
"`$key`. You should try to upgrade libicu and the intl extension."
);
}
static::$_formatters[$key] = $formatter;
}
return static::$_formatters[$key]->format($date->format('U'));
}
/**
* @inheritDoc
*/
public function __toString(): string
{
return (string)$this->i18nFormat();
}
/**
* Resets the format used to the default when converting an instance of this type to
* a string
*
* @return void
*/
public static function resetToStringFormat(): void
{
static::setToStringFormat([IntlDateFormatter::SHORT, IntlDateFormatter::SHORT]);
}
/**
* Sets the default format used when type converting instances of this type to string
*
* The format should be either the formatting constants from IntlDateFormatter as
* described in (https://secure.php.net/manual/en/class.intldateformatter.php) or a pattern
* as specified in (http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details)
*
* It is possible to provide an array of 2 constants. In this case, the first position
* will be used for formatting the date part of the object and the second position
* will be used to format the time part.
*
* @param string|int|int[] $format Format.
* @return void
*/
public static function setToStringFormat($format): void
{
static::$_toStringFormat = $format;
}
/**
* @inheritDoc
*/
public static function setJsonEncodeFormat($format): void
{
static::$_jsonEncodeFormat = $format;
}
/**
* Returns a new Time object after parsing the provided time string based on
* the passed or configured date time format. This method is locale dependent,
* Any string that is passed to this function will be interpreted as a locale
* dependent string.
*
* When no $format is provided, the `toString` format will be used.
*
* Unlike DateTime, the time zone of the returned instance is always converted
* to `$tz` (default time zone if null) even if the `$time` string specified a
* time zone. This is a limitation of IntlDateFormatter.
*
* If it was impossible to parse the provided time, null will be returned.
*
* Example:
*
* ```
* $time = Time::parseDateTime('10/13/2013 12:54am');
* $time = Time::parseDateTime('13 Oct, 2013 13:54', 'dd MMM, y H:mm');
* $time = Time::parseDateTime('10/10/2015', [IntlDateFormatter::SHORT, IntlDateFormatter::NONE]);
* ```
*
* @param string $time The time string to parse.
* @param string|int|int[]|null $format Any format accepted by IntlDateFormatter.
* @param \DateTimeZone|string|null $tz The timezone for the instance
* @return static|null
*/
public static function parseDateTime(string $time, $format = null, $tz = null)
{
$format = $format ?? static::$_toStringFormat;
$pattern = '';
if (is_array($format)) {
[$dateFormat, $timeFormat] = $format;
} elseif (is_int($format)) {
$dateFormat = $timeFormat = $format;
} else {
$dateFormat = $timeFormat = IntlDateFormatter::FULL;
$pattern = $format;
}
$locale = static::$defaultLocale ?? I18n::getLocale();
$formatter = datefmt_create(
$locale,
$dateFormat,
$timeFormat,
$tz,
null,
$pattern
);
$formatter->setLenient(static::$lenientParsing);
$time = $formatter->parse($time);
if ($time !== false) {
$dateTime = new DateTime('@' . $time);
if (!($tz instanceof DateTimeZone)) {
$tz = new DateTimeZone($tz ?? date_default_timezone_get());
}
$dateTime->setTimezone($tz);
return new static($dateTime);
}
return null;
}
/**
* Returns a new Time object after parsing the provided $date string based on
* the passed or configured date time format. This method is locale dependent,
* Any string that is passed to this function will be interpreted as a locale
* dependent string.
*
* When no $format is provided, the `wordFormat` format will be used.
*
* If it was impossible to parse the provided time, null will be returned.
*
* Example:
*
* ```
* $time = Time::parseDate('10/13/2013');
* $time = Time::parseDate('13 Oct, 2013', 'dd MMM, y');
* $time = Time::parseDate('13 Oct, 2013', IntlDateFormatter::SHORT);
* ```
*
* @param string $date The date string to parse.
* @param string|int|array|null $format Any format accepted by IntlDateFormatter.
* @return static|null
*/
public static function parseDate(string $date, $format = null)
{
if (is_int($format)) {
$format = [$format, IntlDateFormatter::NONE];
}
$format = $format ?: static::$wordFormat;
return static::parseDateTime($date, $format);
}
/**
* Returns a new Time object after parsing the provided $time string based on
* the passed or configured date time format. This method is locale dependent,
* Any string that is passed to this function will be interpreted as a locale
* dependent string.
*
* When no $format is provided, the IntlDateFormatter::SHORT format will be used.
*
* If it was impossible to parse the provided time, null will be returned.
*
* Example:
*
* ```
* $time = Time::parseTime('11:23pm');
* ```
*
* @param string $time The time string to parse.
* @param string|int|null $format Any format accepted by IntlDateFormatter.
* @return static|null
*/
public static function parseTime(string $time, $format = null)
{
if (is_int($format)) {
$format = [IntlDateFormatter::NONE, $format];
}
$format = $format ?: [IntlDateFormatter::NONE, IntlDateFormatter::SHORT];
return static::parseDateTime($time, $format);
}
/**
* Returns a string that should be serialized when converting this object to JSON
*
* @return string|int
*/
public function jsonSerialize()
{
if (static::$_jsonEncodeFormat instanceof Closure) {
return call_user_func(static::$_jsonEncodeFormat, $this);
}
return $this->i18nFormat(static::$_jsonEncodeFormat);
}
/**
* Get the difference formatter instance.
*
* @return \Cake\Chronos\DifferenceFormatterInterface
*/
public static function getDiffFormatter(): DifferenceFormatterInterface
{
// Use the static property defined in chronos.
if (static::$diffFormatter === null) {
static::$diffFormatter = new RelativeTimeFormatter();
}
return static::$diffFormatter;
}
/**
* Set the difference formatter instance.
*
* @param \Cake\Chronos\DifferenceFormatterInterface $formatter The formatter instance when setting.
* @return void
*/
public static function setDiffFormatter(DifferenceFormatterInterface $formatter): void
{
static::$diffFormatter = $formatter;
}
/**
* Returns the data that should be displayed when debugging this object
*
* @return array
*/
public function __debugInfo(): array
{
/** @psalm-suppress PossiblyNullReference */
return [
'time' => $this->format('Y-m-d H:i:s.uP'),
'timezone' => $this->getTimezone()->getName(),
'fixedNowTime' => static::hasTestNow() ? static::getTestNow()->format('Y-m-d\TH:i:s.uP') : false,
];
}
}