-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDate.php
More file actions
341 lines (314 loc) · 12.3 KB
/
Date.php
File metadata and controls
341 lines (314 loc) · 12.3 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
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
<?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\ChronosDate;
use Cake\Chronos\DifferenceFormatterInterface;
use Closure;
use IntlDateFormatter;
use InvalidArgumentException;
use JsonSerializable;
use Stringable;
/**
* Extends the Date class provided by Chronos.
*
* Adds handy methods and locale-aware formatting helpers.
*
* @phpstan-immutable
*/
class Date extends ChronosDate implements JsonSerializable, Stringable
{
use DateFormatTrait;
/**
* The format to use when formatting a time using `Cake\I18n\Date::i18nFormat()`
* and `__toString`.
*
* 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 (https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classSimpleDateFormat.html#details)
*
* @var string|int
* @see \Cake\I18n\Date::i18nFormat()
*/
protected static string|int $_toStringFormat = IntlDateFormatter::SHORT;
/**
* The format to use when converting this object to JSON.
*
* 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 (https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classSimpleDateFormat.html#details)
*
* @var \Closure|string|int
* @see \Cake\I18n\Date::i18nFormat()
*/
protected static Closure|string|int $_jsonEncodeFormat = 'yyyy-MM-dd';
/**
* The format to use when formatting a time using `Cake\I18n\Date::timeAgoInWords()`
* and the difference is more than `Cake\I18n\Date::$wordEnd`
*
* @var string|int
* @see \Cake\I18n\Date::parseDate()
*/
public static string|int $wordFormat = IntlDateFormatter::SHORT;
/**
* The format to use when formatting a time using `Cake\I18n\Date::nice()`
*
* 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 (https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classSimpleDateFormat.html#details)
*
* @var string|int
* @see \Cake\I18n\Date::nice()
*/
public static string|int $niceFormat = IntlDateFormatter::MEDIUM;
/**
* The format to use when formatting a time using `Date::timeAgoInWords()`
* and the difference is less than `Date::$wordEnd`
*
* @var array<string, string>
* @see \Cake\I18n\Date::timeAgoInWords()
*/
public static array $wordAccuracy = [
'year' => 'day',
'month' => 'day',
'week' => 'day',
'day' => 'day',
'hour' => 'day',
'minute' => 'day',
'second' => 'day',
];
/**
* The end of relative time telling
*
* @var string
* @see \Cake\I18n\Date::timeAgoInWords()
*/
public static string $wordEnd = '+1 month';
/**
* 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 (https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classSimpleDateFormat.html#details)
*
* @param string|int $format Format.
* @return void
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
*/
public static function setToStringFormat($format): void
{
static::$_toStringFormat = $format;
}
/**
* Sets the default format used when converting this object to JSON
*
* 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)
*
* Alternatively, the format can provide a callback. In this case, the callback
* can receive this object and return a formatted string.
*
* @see \Cake\I18n\Date::i18nFormat()
* @param \Closure|string|int $format Format.
* @return void
*/
public static function setJsonEncodeFormat(Closure|string|int $format): void
{
static::$_jsonEncodeFormat = $format;
}
/**
* Returns a new Date object after parsing the provided $date string based on
* the passed or configured 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 = Date::parseDate('10/13/2013');
* $time = Date::parseDate('13 Oct, 2013', 'dd MMM, y');
* $time = Date::parseDate('13 Oct, 2013', IntlDateFormatter::SHORT);
* ```
*
* @param string $date The date string to parse.
* @param string|int|null $format Any format accepted by IntlDateFormatter.
* @return static|null
*/
public static function parseDate(string $date, string|int|null $format = null): ?static
{
$format ??= static::$wordFormat;
if (is_int($format)) {
$format = [$format, IntlDateFormatter::NONE];
}
return static::_parseDateTime($date, $format);
}
/**
* Get the difference formatter instance.
*
* @param \Cake\Chronos\DifferenceFormatterInterface|null $formatter Difference formatter
* @return \Cake\I18n\RelativeTimeFormatter
*/
public static function diffFormatter(?DifferenceFormatterInterface $formatter = null): RelativeTimeFormatter
{
if ($formatter) {
if (!$formatter instanceof RelativeTimeFormatter) {
throw new InvalidArgumentException('Formatter for I18n must extend RelativeTimeFormatter.');
}
return static::$diffFormatter = $formatter;
}
/** @var \Cake\I18n\RelativeTimeFormatter $formatter */
$formatter = static::$diffFormatter ??= new RelativeTimeFormatter();
return $formatter;
}
/**
* 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: https://unicode-org.github.io/icu/userguide/format_parse/datetime/#datetime-format-syntax.
*
* ### Examples
*
* ```
* $date = new Date('2014-04-20');
* $date->i18nFormat(); // outputs '4/20/14' for the en-US locale
* $date->i18nFormat(\IntlDateFormatter::FULL); // Use the full date format
* $date->i18nFormat('yyyy-MM-dd'); // outputs '2014-04-20'
* ```
*
* You can control the default format used through `Date::setToStringFormat()`.
*
* You can read about the available IntlDateFormatter constants at
* https://secure.php.net/manual/en/class.intldateformatter.php
*
* 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
*
* ```
* $date = new Date('2014-04-20');
* $time->i18nFormat(null, 'de-DE');
* $time->i18nFormat(\IntlDateFormatter::FULL, 'de-DE');
* ```
*
* You can control the default locale used through `Date::setDefaultLocale()`.
* If empty, the default will be taken from the `intl.default_locale` ini config.
*
* @param string|int|null $format Format string.
* @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(
string|int|null $format = null,
?string $locale = null,
): string|int {
if ($format === DateTime::UNIX_TIMESTAMP_FORMAT) {
throw new InvalidArgumentException('UNIT_TIMESTAMP_FORMAT is not supported for Date.');
}
$format ??= static::$_toStringFormat;
$format = is_int($format) ? [$format, IntlDateFormatter::NONE] : $format;
$locale = $locale ?: DateTime::getDefaultLocale();
return $this->_formatObject($this->native, $format, $locale);
}
/**
* Returns a nicely formatted date string for this object.
*
* The format to be used is stored in the static property `Date::$niceFormat`.
*
* @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(?string $locale = null): string
{
return (string)$this->i18nFormat(static::$niceFormat, $locale);
}
/**
* Returns either a relative or a formatted absolute date depending
* on the difference between the current date and this object.
*
* ### Options:
*
* - `from` => another Date object representing the "now" date
* - `format` => a fallback format if the relative time is longer than the duration specified by end
* - `accuracy` => Specifies how accurate the date should be described (array)
* - year => The format if years > 0 (default "day")
* - month => The format if months > 0 (default "day")
* - week => The format if weeks > 0 (default "day")
* - day => The format if weeks > 0 (default "day")
* - `end` => The end of relative date telling
* - `relativeString` => The printf compatible string when outputting relative date
* - `absoluteString` => The printf compatible string when outputting absolute date
* - `timezone` => The user timezone the timestamp should be formatted in.
*
* Relative dates look something like this:
*
* - 3 weeks, 4 days ago
* - 1 day ago
*
* Default date formatting is d/M/YY e.g: on 18/2/09. Formatting is done internally using
* `i18nFormat`, see the method for the valid formatting strings.
*
* The returned string includes 'ago' or 'on' and assumes you'll properly add a word
* like 'Posted ' before the function output.
*
* NOTE: If the difference is one week or more, the lowest level of accuracy is day.
*
* @param array<string, mixed> $options Array of options.
* @return string Relative time string.
*/
public function timeAgoInWords(array $options = []): string
{
return static::diffFormatter()->dateAgoInWords($this, $options);
}
/**
* Returns a string that should be serialized when converting this object to JSON
*
* @return string|int
*/
public function jsonSerialize(): mixed
{
if (static::$_jsonEncodeFormat instanceof Closure) {
return call_user_func(static::$_jsonEncodeFormat, $this);
}
return $this->i18nFormat(static::$_jsonEncodeFormat);
}
/**
* Returns a UNIX timestamp as an integer.
*
* @return int UNIX timestamp
*/
public function getTimestamp(): int
{
return (int)$this->toUnixString();
}
/**
* @inheritDoc
*/
public function __toString(): string
{
return (string)$this->i18nFormat();
}
}
// phpcs:disable
class_alias('Cake\I18n\Date', 'Cake\I18n\FrozenDate');
// phpcs:enable