@@ -23,24 +23,24 @@ discard block |
||
23 | 23 | */ |
24 | 24 | class URLInfo_Parser |
25 | 25 | { |
26 | - /** |
|
27 | - * @var string |
|
28 | - */ |
|
26 | + /** |
|
27 | + * @var string |
|
28 | + */ |
|
29 | 29 | protected $url; |
30 | 30 | |
31 | - /** |
|
32 | - * @var bool |
|
33 | - */ |
|
31 | + /** |
|
32 | + * @var bool |
|
33 | + */ |
|
34 | 34 | protected $isValid = false; |
35 | 35 | |
36 | - /** |
|
37 | - * @var array |
|
38 | - */ |
|
36 | + /** |
|
37 | + * @var array |
|
38 | + */ |
|
39 | 39 | protected $info; |
40 | 40 | |
41 | - /** |
|
42 | - * @var array|NULL |
|
43 | - */ |
|
41 | + /** |
|
42 | + * @var array|NULL |
|
43 | + */ |
|
44 | 44 | protected $error; |
45 | 45 | |
46 | 46 | /** |
@@ -57,25 +57,25 @@ discard block |
||
57 | 57 | 'git' |
58 | 58 | ); |
59 | 59 | |
60 | - /** |
|
61 | - * Stores a list of all unicode characters in the URL |
|
62 | - * that have been filtered out before parsing it with |
|
63 | - * parse_url. |
|
64 | - * |
|
65 | - * @var string[]string |
|
66 | - */ |
|
60 | + /** |
|
61 | + * Stores a list of all unicode characters in the URL |
|
62 | + * that have been filtered out before parsing it with |
|
63 | + * parse_url. |
|
64 | + * |
|
65 | + * @var string[]string |
|
66 | + */ |
|
67 | 67 | protected $unicodeChars = array(); |
68 | 68 | |
69 | - /** |
|
70 | - * @var bool |
|
71 | - */ |
|
69 | + /** |
|
70 | + * @var bool |
|
71 | + */ |
|
72 | 72 | protected $encodeUTF = false; |
73 | 73 | |
74 | - /** |
|
75 | - * |
|
76 | - * @param string $url The target URL. |
|
77 | - * @param bool $encodeUTF Whether to URL encode any plain text unicode characters. |
|
78 | - */ |
|
74 | + /** |
|
75 | + * |
|
76 | + * @param string $url The target URL. |
|
77 | + * @param bool $encodeUTF Whether to URL encode any plain text unicode characters. |
|
78 | + */ |
|
79 | 79 | public function __construct(string $url, bool $encodeUTF) |
80 | 80 | { |
81 | 81 | $this->url = $url; |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | - /** |
|
92 | - * Retrieves the array as parsed by PHP's parse_url, |
|
93 | - * filtered and adjusted as necessary. |
|
94 | - * |
|
95 | - * @return array |
|
96 | - */ |
|
91 | + /** |
|
92 | + * Retrieves the array as parsed by PHP's parse_url, |
|
93 | + * filtered and adjusted as necessary. |
|
94 | + * |
|
95 | + * @return array |
|
96 | + */ |
|
97 | 97 | public function getInfo() : array |
98 | 98 | { |
99 | 99 | return $this->info; |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | - /** |
|
119 | - * Finds any non-url encoded unicode characters in |
|
120 | - * the URL, and encodes them before the URL is |
|
121 | - * passed to parse_url. |
|
122 | - */ |
|
118 | + /** |
|
119 | + * Finds any non-url encoded unicode characters in |
|
120 | + * the URL, and encodes them before the URL is |
|
121 | + * passed to parse_url. |
|
122 | + */ |
|
123 | 123 | protected function filterUnicodeChars() : void |
124 | 124 | { |
125 | 125 | $chars = ConvertHelper::string2array($this->url); |
@@ -238,11 +238,11 @@ discard block |
||
238 | 238 | return false; |
239 | 239 | } |
240 | 240 | |
241 | - /** |
|
242 | - * Goes through all information in the parse_url result |
|
243 | - * array, and attempts to fix any user errors in formatting |
|
244 | - * that can be recovered from, mostly regarding stray spaces. |
|
245 | - */ |
|
241 | + /** |
|
242 | + * Goes through all information in the parse_url result |
|
243 | + * array, and attempts to fix any user errors in formatting |
|
244 | + * that can be recovered from, mostly regarding stray spaces. |
|
245 | + */ |
|
246 | 246 | protected function filterParsed() : void |
247 | 247 | { |
248 | 248 | $this->info['params'] = array(); |
@@ -284,13 +284,13 @@ discard block |
||
284 | 284 | } |
285 | 285 | } |
286 | 286 | |
287 | - /** |
|
288 | - * Recursively goes through the array, and converts all previously |
|
289 | - * URL encoded characters with their unicode character counterparts. |
|
290 | - * |
|
291 | - * @param array $subject |
|
292 | - * @return array |
|
293 | - */ |
|
287 | + /** |
|
288 | + * Recursively goes through the array, and converts all previously |
|
289 | + * URL encoded characters with their unicode character counterparts. |
|
290 | + * |
|
291 | + * @param array $subject |
|
292 | + * @return array |
|
293 | + */ |
|
294 | 294 | protected function restoreUnicodeChars(array $subject) : array |
295 | 295 | { |
296 | 296 | $result = array(); |
@@ -314,13 +314,13 @@ discard block |
||
314 | 314 | return $result; |
315 | 315 | } |
316 | 316 | |
317 | - /** |
|
318 | - * Replaces all URL encoded unicode characters |
|
319 | - * in the string with the unicode character. |
|
320 | - * |
|
321 | - * @param string $string |
|
322 | - * @return string |
|
323 | - */ |
|
317 | + /** |
|
318 | + * Replaces all URL encoded unicode characters |
|
319 | + * in the string with the unicode character. |
|
320 | + * |
|
321 | + * @param string $string |
|
322 | + * @return string |
|
323 | + */ |
|
324 | 324 | protected function restoreUnicodeChar(string $string) : string |
325 | 325 | { |
326 | 326 | if(strstr($string, '%')) |
@@ -404,21 +404,21 @@ discard block |
||
404 | 404 | ); |
405 | 405 | } |
406 | 406 | |
407 | - /** |
|
408 | - * Checks whether the URL that was parsed is valid. |
|
409 | - * @return bool |
|
410 | - */ |
|
407 | + /** |
|
408 | + * Checks whether the URL that was parsed is valid. |
|
409 | + * @return bool |
|
410 | + */ |
|
411 | 411 | public function isValid() : bool |
412 | 412 | { |
413 | 413 | return $this->isValid; |
414 | 414 | } |
415 | 415 | |
416 | - /** |
|
417 | - * If the validation failed, retrieves the validation |
|
418 | - * error message. |
|
419 | - * |
|
420 | - * @return string |
|
421 | - */ |
|
416 | + /** |
|
417 | + * If the validation failed, retrieves the validation |
|
418 | + * error message. |
|
419 | + * |
|
420 | + * @return string |
|
421 | + */ |
|
422 | 422 | public function getErrorMessage() : string |
423 | 423 | { |
424 | 424 | if(isset($this->error)) { |
@@ -428,12 +428,12 @@ discard block |
||
428 | 428 | return ''; |
429 | 429 | } |
430 | 430 | |
431 | - /** |
|
432 | - * If the validation failed, retrieves the validation |
|
433 | - * error code. |
|
434 | - * |
|
435 | - * @return int |
|
436 | - */ |
|
431 | + /** |
|
432 | + * If the validation failed, retrieves the validation |
|
433 | + * error code. |
|
434 | + * |
|
435 | + * @return int |
|
436 | + */ |
|
437 | 437 | public function getErrorCode() : int |
438 | 438 | { |
439 | 439 | if(isset($this->error)) { |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | $this->parse(); |
85 | 85 | |
86 | - if(!$this->detectType()) { |
|
86 | + if (!$this->detectType()) { |
|
87 | 87 | $this->validate(); |
88 | 88 | } |
89 | 89 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | // if the URL contains any URL characters, and we |
111 | 111 | // do not want them URL encoded, restore them. |
112 | - if(!$this->encodeUTF && !empty($this->unicodeChars)) |
|
112 | + if (!$this->encodeUTF && !empty($this->unicodeChars)) |
|
113 | 113 | { |
114 | 114 | $this->info = $this->restoreUnicodeChars($this->info); |
115 | 115 | } |
@@ -126,13 +126,13 @@ discard block |
||
126 | 126 | |
127 | 127 | $keep = array(); |
128 | 128 | |
129 | - foreach($chars as $char) |
|
129 | + foreach ($chars as $char) |
|
130 | 130 | { |
131 | - if(preg_match('/\p{L}/usix', $char)) |
|
131 | + if (preg_match('/\p{L}/usix', $char)) |
|
132 | 132 | { |
133 | 133 | $encoded = rawurlencode($char); |
134 | 134 | |
135 | - if($encoded != $char) |
|
135 | + if ($encoded != $char) |
|
136 | 136 | { |
137 | 137 | $this->unicodeChars[$encoded] = $char; |
138 | 138 | $char = $encoded; |
@@ -154,11 +154,11 @@ discard block |
||
154 | 154 | 'ipAddress' |
155 | 155 | ); |
156 | 156 | |
157 | - foreach($types as $type) |
|
157 | + foreach ($types as $type) |
|
158 | 158 | { |
159 | 159 | $method = 'detectType_'.$type; |
160 | 160 | |
161 | - if($this->$method() === true) |
|
161 | + if ($this->$method() === true) |
|
162 | 162 | { |
163 | 163 | $this->isValid = true; |
164 | 164 | return true; |
@@ -176,11 +176,11 @@ discard block |
||
176 | 176 | 'hostIsPresent' |
177 | 177 | ); |
178 | 178 | |
179 | - foreach($validations as $validation) |
|
179 | + foreach ($validations as $validation) |
|
180 | 180 | { |
181 | 181 | $method = 'validate_'.$validation; |
182 | 182 | |
183 | - if($this->$method() !== true) { |
|
183 | + if ($this->$method() !== true) { |
|
184 | 184 | return; |
185 | 185 | } |
186 | 186 | } |
@@ -193,13 +193,13 @@ discard block |
||
193 | 193 | // every link needs a host. This case can happen for ex, if |
194 | 194 | // the link starts with a typo with only one slash, like: |
195 | 195 | // "http:/hostname" |
196 | - if(isset($this->info['host'])) { |
|
196 | + if (isset($this->info['host'])) { |
|
197 | 197 | return true; |
198 | 198 | } |
199 | 199 | |
200 | 200 | $this->setError( |
201 | 201 | URLInfo::ERROR_MISSING_HOST, |
202 | - t('Cannot determine the link\'s host name.') . ' ' . |
|
202 | + t('Cannot determine the link\'s host name.').' '. |
|
203 | 203 | t('This usually happens when there\'s a typo somewhere.') |
204 | 204 | ); |
205 | 205 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | |
209 | 209 | protected function validate_schemeIsSet() : bool |
210 | 210 | { |
211 | - if(isset($this->info['scheme'])) { |
|
211 | + if (isset($this->info['scheme'])) { |
|
212 | 212 | return true; |
213 | 213 | } |
214 | 214 | |
@@ -225,13 +225,13 @@ discard block |
||
225 | 225 | |
226 | 226 | protected function validate_schemeIsKnown() : bool |
227 | 227 | { |
228 | - if(in_array($this->info['scheme'], $this->knownSchemes)) { |
|
228 | + if (in_array($this->info['scheme'], $this->knownSchemes)) { |
|
229 | 229 | return true; |
230 | 230 | } |
231 | 231 | |
232 | 232 | $this->setError( |
233 | 233 | URLInfo::ERROR_INVALID_SCHEME, |
234 | - t('The scheme %1$s is not supported for links.', $this->info['scheme']) . ' ' . |
|
234 | + t('The scheme %1$s is not supported for links.', $this->info['scheme']).' '. |
|
235 | 235 | t('Valid schemes are: %1$s.', implode(', ', $this->knownSchemes)) |
236 | 236 | ); |
237 | 237 | |
@@ -248,36 +248,36 @@ discard block |
||
248 | 248 | $this->info['params'] = array(); |
249 | 249 | $this->info['type'] = URLInfo::TYPE_URL; |
250 | 250 | |
251 | - if(isset($this->info['scheme'])) |
|
251 | + if (isset($this->info['scheme'])) |
|
252 | 252 | { |
253 | 253 | $this->info['scheme'] = strtolower($this->info['scheme']); |
254 | 254 | } |
255 | 255 | else |
256 | 256 | { |
257 | 257 | $scheme = URLInfo_Schemes::detectScheme($this->url); |
258 | - if(!empty($scheme)) { |
|
259 | - $this->info['scheme'] = substr($scheme,0, strpos($scheme, ':')); |
|
258 | + if (!empty($scheme)) { |
|
259 | + $this->info['scheme'] = substr($scheme, 0, strpos($scheme, ':')); |
|
260 | 260 | } |
261 | 261 | } |
262 | 262 | |
263 | - if(isset($this->info['user'])) { |
|
263 | + if (isset($this->info['user'])) { |
|
264 | 264 | $this->info['user'] = urldecode($this->info['user']); |
265 | 265 | } |
266 | 266 | |
267 | - if(isset($this->info['pass'])) { |
|
267 | + if (isset($this->info['pass'])) { |
|
268 | 268 | $this->info['pass'] = urldecode($this->info['pass']); |
269 | 269 | } |
270 | 270 | |
271 | - if(isset($this->info['host'])) { |
|
271 | + if (isset($this->info['host'])) { |
|
272 | 272 | $this->info['host'] = strtolower($this->info['host']); |
273 | 273 | $this->info['host'] = str_replace(' ', '', $this->info['host']); |
274 | 274 | } |
275 | 275 | |
276 | - if(isset($this->info['path'])) { |
|
276 | + if (isset($this->info['path'])) { |
|
277 | 277 | $this->info['path'] = str_replace(' ', '', $this->info['path']); |
278 | 278 | } |
279 | 279 | |
280 | - if(isset($this->info['query']) && !empty($this->info['query'])) |
|
280 | + if (isset($this->info['query']) && !empty($this->info['query'])) |
|
281 | 281 | { |
282 | 282 | $this->info['params'] = ConvertHelper::parseQueryString($this->info['query']); |
283 | 283 | ksort($this->info['params']); |
@@ -295,9 +295,9 @@ discard block |
||
295 | 295 | { |
296 | 296 | $result = array(); |
297 | 297 | |
298 | - foreach($subject as $key => $val) |
|
298 | + foreach ($subject as $key => $val) |
|
299 | 299 | { |
300 | - if(is_array($val)) |
|
300 | + if (is_array($val)) |
|
301 | 301 | { |
302 | 302 | $val = $this->restoreUnicodeChars($val); |
303 | 303 | } |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | */ |
324 | 324 | protected function restoreUnicodeChar(string $string) : string |
325 | 325 | { |
326 | - if(strstr($string, '%')) |
|
326 | + if (strstr($string, '%')) |
|
327 | 327 | { |
328 | 328 | return str_replace(array_keys($this->unicodeChars), array_values($this->unicodeChars), $string); |
329 | 329 | } |
@@ -333,12 +333,12 @@ discard block |
||
333 | 333 | |
334 | 334 | protected function detectType_email() : bool |
335 | 335 | { |
336 | - if(isset($this->info['scheme']) && $this->info['scheme'] == 'mailto') { |
|
336 | + if (isset($this->info['scheme']) && $this->info['scheme'] == 'mailto') { |
|
337 | 337 | $this->info['type'] = URLInfo::TYPE_EMAIL; |
338 | 338 | return true; |
339 | 339 | } |
340 | 340 | |
341 | - if(isset($this->info['path']) && preg_match(RegexHelper::REGEX_EMAIL, $this->info['path'])) |
|
341 | + if (isset($this->info['path']) && preg_match(RegexHelper::REGEX_EMAIL, $this->info['path'])) |
|
342 | 342 | { |
343 | 343 | $this->info['scheme'] = 'mailto'; |
344 | 344 | $this->info['type'] = URLInfo::TYPE_EMAIL; |
@@ -350,13 +350,13 @@ discard block |
||
350 | 350 | |
351 | 351 | protected function detectType_ipAddress() : bool |
352 | 352 | { |
353 | - if($this->isPathOnly() && preg_match(RegexHelper::REGEX_IPV4, $this->info['path'])) { |
|
353 | + if ($this->isPathOnly() && preg_match(RegexHelper::REGEX_IPV4, $this->info['path'])) { |
|
354 | 354 | $this->info['host'] = $this->info['path']; |
355 | 355 | $this->info['scheme'] = 'https'; |
356 | 356 | unset($this->info['path']); |
357 | 357 | } |
358 | 358 | |
359 | - if($this->isHostOnly() && preg_match(RegexHelper::REGEX_IPV4, $this->info['host'])) { |
|
359 | + if ($this->isHostOnly() && preg_match(RegexHelper::REGEX_IPV4, $this->info['host'])) { |
|
360 | 360 | $this->info['ip'] = $this->info['host']; |
361 | 361 | return true; |
362 | 362 | } |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | |
377 | 377 | protected function detectType_fragmentLink() : bool |
378 | 378 | { |
379 | - if(isset($this->info['fragment']) && !isset($this->info['scheme'])) { |
|
379 | + if (isset($this->info['fragment']) && !isset($this->info['scheme'])) { |
|
380 | 380 | $this->info['type'] = URLInfo::TYPE_FRAGMENT; |
381 | 381 | return true; |
382 | 382 | } |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | |
387 | 387 | protected function detectType_phoneLink() : bool |
388 | 388 | { |
389 | - if(isset($this->info['scheme']) && $this->info['scheme'] == 'tel') { |
|
389 | + if (isset($this->info['scheme']) && $this->info['scheme'] == 'tel') { |
|
390 | 390 | $this->info['type'] = URLInfo::TYPE_PHONE; |
391 | 391 | return true; |
392 | 392 | } |
@@ -421,7 +421,7 @@ discard block |
||
421 | 421 | */ |
422 | 422 | public function getErrorMessage() : string |
423 | 423 | { |
424 | - if(isset($this->error)) { |
|
424 | + if (isset($this->error)) { |
|
425 | 425 | return $this->error['message']; |
426 | 426 | } |
427 | 427 | |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | */ |
437 | 437 | public function getErrorCode() : int |
438 | 438 | { |
439 | - if(isset($this->error)) { |
|
439 | + if (isset($this->error)) { |
|
440 | 440 | return $this->error['code']; |
441 | 441 | } |
442 | 442 |
@@ -251,8 +251,7 @@ discard block |
||
251 | 251 | if(isset($this->info['scheme'])) |
252 | 252 | { |
253 | 253 | $this->info['scheme'] = strtolower($this->info['scheme']); |
254 | - } |
|
255 | - else |
|
254 | + } else |
|
256 | 255 | { |
257 | 256 | $scheme = URLInfo_Schemes::detectScheme($this->url); |
258 | 257 | if(!empty($scheme)) { |
@@ -300,8 +299,7 @@ discard block |
||
300 | 299 | if(is_array($val)) |
301 | 300 | { |
302 | 301 | $val = $this->restoreUnicodeChars($val); |
303 | - } |
|
304 | - else |
|
302 | + } else |
|
305 | 303 | { |
306 | 304 | $val = $this->restoreUnicodeChar($val); |
307 | 305 | } |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | { |
73 | 73 | self::buildCache(); |
74 | 74 | |
75 | - foreach(self::$cache as $scheme => $length) { |
|
76 | - if(strtolower(substr($url, 0, $length)) === $scheme) { |
|
75 | + foreach (self::$cache as $scheme => $length) { |
|
76 | + if (strtolower(substr($url, 0, $length)) === $scheme) { |
|
77 | 77 | return $scheme; |
78 | 78 | } |
79 | 79 | } |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | */ |
89 | 89 | private static function buildCache() : void |
90 | 90 | { |
91 | - if(!empty(self::$cache)) { |
|
91 | + if (!empty(self::$cache)) { |
|
92 | 92 | return; |
93 | 93 | } |
94 | 94 | |
95 | - foreach(self::$schemes as $scheme) { |
|
95 | + foreach (self::$schemes as $scheme) { |
|
96 | 96 | self::$cache[$scheme] = strlen($scheme); |
97 | 97 | } |
98 | 98 | } |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | |
43 | 43 | const REGEX_MD5 = '/^[a-f0-9]{32}$/i'; |
44 | 44 | |
45 | - /** |
|
46 | - * @var string |
|
47 | - * @see https://en.wikipedia.org/wiki/Email_address#Local-part |
|
48 | - */ |
|
45 | + /** |
|
46 | + * @var string |
|
47 | + * @see https://en.wikipedia.org/wiki/Email_address#Local-part |
|
48 | + */ |
|
49 | 49 | const REGEX_EMAIL = '/[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/i'; |
50 | 50 | |
51 | 51 | const REGEX_PHONE = '/\A[+0-9][0-9 +\-()]+\z/m'; |
@@ -97,14 +97,14 @@ discard block |
||
97 | 97 | */ |
98 | 98 | const REGEX_IS_HTML = '%<{0,1}[a-z\/][\s\S]*>|<[a-z\/][\s\S]*>{0,1}%i'; |
99 | 99 | |
100 | - /** |
|
101 | - * Hexadecimal color codes. Allows the following formats: |
|
102 | - * |
|
103 | - * FFFFFF |
|
104 | - * FFF |
|
105 | - * |
|
106 | - * @var string |
|
107 | - */ |
|
100 | + /** |
|
101 | + * Hexadecimal color codes. Allows the following formats: |
|
102 | + * |
|
103 | + * FFFFFF |
|
104 | + * FFF |
|
105 | + * |
|
106 | + * @var string |
|
107 | + */ |
|
108 | 108 | const REGEX_HEX_COLOR_CODE = '/\A(?:[0-9a-fA-F]{6}|[0-9a-fA-F]{3})\z/iU'; |
109 | 109 | |
110 | 110 | /** |
@@ -33,14 +33,14 @@ |
||
33 | 33 | { |
34 | 34 | preg_match_all('%<([A-Z][A-Z0-9]*)\b[^>]*>(.*?)</\1>%si', $html, $result, PREG_PATTERN_ORDER); |
35 | 35 | |
36 | - if(empty($result[1])) { |
|
36 | + if (empty($result[1])) { |
|
37 | 37 | return '<p>'.$text.'</p>'; |
38 | 38 | } |
39 | 39 | |
40 | 40 | $tagName = array_pop($result[1]); |
41 | 41 | $pos = strrpos($html, '</'.$tagName.'>'); |
42 | 42 | |
43 | - if(in_array(strtolower($tagName), self::$newParaTags)) { |
|
43 | + if (in_array(strtolower($tagName), self::$newParaTags)) { |
|
44 | 44 | $replace = '</'.$tagName.'><p>'.$text.'</p>'; |
45 | 45 | } else { |
46 | 46 | $replace = $text.'</'.$tagName.'>'; |
@@ -25,10 +25,10 @@ |
||
25 | 25 | * |
26 | 26 | * @return string |
27 | 27 | */ |
28 | - function render() : string; |
|
28 | + function render() : string; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Renders the string and echos it. |
32 | 32 | */ |
33 | - function display() : void; |
|
33 | + function display() : void; |
|
34 | 34 | } |
@@ -23,18 +23,18 @@ |
||
23 | 23 | * @see Microtime::ERROR_FAILED_CREATING_DATE_OBJECT |
24 | 24 | * @see Microtime::ERROR_FAILED_CONVERTING_STRING |
25 | 25 | */ |
26 | - public function __construct($datetime='now', DateTimeZone $timeZone=null) |
|
26 | + public function __construct($datetime = 'now', DateTimeZone $timeZone = null) |
|
27 | 27 | { |
28 | - if($timeZone === null) |
|
28 | + if ($timeZone === null) |
|
29 | 29 | { |
30 | 30 | $timeZone = new DateTimeZone(date_default_timezone_get()); |
31 | 31 | } |
32 | 32 | |
33 | - if(empty($datetime) || $datetime === 'now') |
|
33 | + if (empty($datetime) || $datetime === 'now') |
|
34 | 34 | { |
35 | 35 | $dateObj = DateTime::createFromFormat('0.u00 U', microtime(), new DateTimeZone('America/Denver')); |
36 | 36 | |
37 | - if($dateObj === false) { |
|
37 | + if ($dateObj === false) { |
|
38 | 38 | throw new ConvertHelper_Exception( |
39 | 39 | 'Failed to create microseconds date.', |
40 | 40 | '', |
@@ -49,8 +49,7 @@ |
||
49 | 49 | try |
50 | 50 | { |
51 | 51 | parent::__construct($datetime, $timeZone); |
52 | - } |
|
53 | - catch (Exception $e) |
|
52 | + } catch (Exception $e) |
|
54 | 53 | { |
55 | 54 | throw new ConvertHelper_Exception( |
56 | 55 | 'Failed to create date from string.', |
@@ -41,14 +41,14 @@ discard block |
||
41 | 41 | const TOKEN_MONTHS = 'm'; |
42 | 42 | const TOKEN_YEARS = 'y'; |
43 | 43 | |
44 | - /** |
|
45 | - * @var DateInterval |
|
46 | - */ |
|
44 | + /** |
|
45 | + * @var DateInterval |
|
46 | + */ |
|
47 | 47 | protected $interval; |
48 | 48 | |
49 | - /** |
|
50 | - * @var int |
|
51 | - */ |
|
49 | + /** |
|
50 | + * @var int |
|
51 | + */ |
|
52 | 52 | protected $seconds; |
53 | 53 | |
54 | 54 | /** |
@@ -92,22 +92,22 @@ discard block |
||
92 | 92 | return new ConvertHelper_DateInterval($seconds); |
93 | 93 | } |
94 | 94 | |
95 | - /** |
|
96 | - * Creates the interval from an existing regular interval instance. |
|
97 | - * |
|
98 | - * @param DateInterval $interval |
|
99 | - * @return ConvertHelper_DateInterval |
|
100 | - */ |
|
95 | + /** |
|
96 | + * Creates the interval from an existing regular interval instance. |
|
97 | + * |
|
98 | + * @param DateInterval $interval |
|
99 | + * @return ConvertHelper_DateInterval |
|
100 | + */ |
|
101 | 101 | public static function fromInterval(DateInterval $interval) |
102 | 102 | { |
103 | 103 | return self::fromSeconds(ConvertHelper::interval2seconds($interval)); |
104 | 104 | } |
105 | 105 | |
106 | - /** |
|
107 | - * Retrieves the PHP native date interval. |
|
108 | - * |
|
109 | - * @return DateInterval |
|
110 | - */ |
|
106 | + /** |
|
107 | + * Retrieves the PHP native date interval. |
|
108 | + * |
|
109 | + * @return DateInterval |
|
110 | + */ |
|
111 | 111 | public function getInterval() : DateInterval |
112 | 112 | { |
113 | 113 | return $this->interval; |
@@ -143,31 +143,31 @@ discard block |
||
143 | 143 | return $this->getToken(self::TOKEN_YEARS); |
144 | 144 | } |
145 | 145 | |
146 | - /** |
|
147 | - * Retrieves a specific time token, e.g. "h" (for hours). |
|
148 | - * Using the constants to specifiy the tokens is recommended. |
|
149 | - * |
|
150 | - * @param string $token |
|
151 | - * @return int |
|
152 | - * |
|
153 | - * @see ConvertHelper_DateInterval::TOKEN_SECONDS |
|
154 | - * @see ConvertHelper_DateInterval::TOKEN_MINUTES |
|
155 | - * @see ConvertHelper_DateInterval::TOKEN_HOURS |
|
156 | - * @see ConvertHelper_DateInterval::TOKEN_DAYS |
|
157 | - * @see ConvertHelper_DateInterval::TOKEN_MONTHS |
|
158 | - * @see ConvertHelper_DateInterval::TOKEN_YEARS |
|
159 | - */ |
|
146 | + /** |
|
147 | + * Retrieves a specific time token, e.g. "h" (for hours). |
|
148 | + * Using the constants to specifiy the tokens is recommended. |
|
149 | + * |
|
150 | + * @param string $token |
|
151 | + * @return int |
|
152 | + * |
|
153 | + * @see ConvertHelper_DateInterval::TOKEN_SECONDS |
|
154 | + * @see ConvertHelper_DateInterval::TOKEN_MINUTES |
|
155 | + * @see ConvertHelper_DateInterval::TOKEN_HOURS |
|
156 | + * @see ConvertHelper_DateInterval::TOKEN_DAYS |
|
157 | + * @see ConvertHelper_DateInterval::TOKEN_MONTHS |
|
158 | + * @see ConvertHelper_DateInterval::TOKEN_YEARS |
|
159 | + */ |
|
160 | 160 | public function getToken(string $token) : int |
161 | 161 | { |
162 | 162 | return (int)$this->interval->$token; |
163 | 163 | } |
164 | 164 | |
165 | - /** |
|
166 | - * The total amount of seconds in the interval (including |
|
167 | - * everything, from seconds to days, months, years...). |
|
168 | - * |
|
169 | - * @return int |
|
170 | - */ |
|
165 | + /** |
|
166 | + * The total amount of seconds in the interval (including |
|
167 | + * everything, from seconds to days, months, years...). |
|
168 | + * |
|
169 | + * @return int |
|
170 | + */ |
|
171 | 171 | public function getTotalSeconds() : int |
172 | 172 | { |
173 | 173 | return $this->seconds; |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | $interval = $d2->diff($d1); |
70 | 70 | |
71 | - if(!$interval instanceof DateInterval) |
|
71 | + if (!$interval instanceof DateInterval) |
|
72 | 72 | { |
73 | 73 | throw new ConvertHelper_Exception( |
74 | 74 | 'Cannot create interval', |
@@ -187,24 +187,24 @@ discard block |
||
187 | 187 | * @see ConvertHelper::INTERVAL_HOURS |
188 | 188 | * @see ConvertHelper::INTERVAL_DAYS |
189 | 189 | */ |
190 | - public static function toTotal(DateInterval $interval, string $unit=ConvertHelper::INTERVAL_SECONDS) : int |
|
190 | + public static function toTotal(DateInterval $interval, string $unit = ConvertHelper::INTERVAL_SECONDS) : int |
|
191 | 191 | { |
192 | 192 | $total = (int)$interval->format('%a'); |
193 | 193 | if ($unit == ConvertHelper::INTERVAL_DAYS) { |
194 | 194 | return $total; |
195 | 195 | } |
196 | 196 | |
197 | - $total = ($total * 24) + ((int)$interval->h ); |
|
197 | + $total = ($total * 24) + ((int)$interval->h); |
|
198 | 198 | if ($unit == ConvertHelper::INTERVAL_HOURS) { |
199 | 199 | return $total; |
200 | 200 | } |
201 | 201 | |
202 | - $total = ($total * 60) + ((int)$interval->i ); |
|
202 | + $total = ($total * 60) + ((int)$interval->i); |
|
203 | 203 | if ($unit == ConvertHelper::INTERVAL_MINUTES) { |
204 | 204 | return $total; |
205 | 205 | } |
206 | 206 | |
207 | - $total = ($total * 60) + ((int)$interval->s ); |
|
207 | + $total = ($total * 60) + ((int)$interval->s); |
|
208 | 208 | if ($unit == ConvertHelper::INTERVAL_SECONDS) { |
209 | 209 | return $total; |
210 | 210 | } |
@@ -34,39 +34,39 @@ discard block |
||
34 | 34 | const SECONDS_PER_MONTH_APPROX = 2505600; // imprecise - for 29 days, only for approximations. |
35 | 35 | const SECONDS_PER_YEAR = 31536000; |
36 | 36 | |
37 | - /** |
|
38 | - * @var int |
|
39 | - */ |
|
37 | + /** |
|
38 | + * @var int |
|
39 | + */ |
|
40 | 40 | protected $dateFrom; |
41 | 41 | |
42 | - /** |
|
43 | - * @var int |
|
44 | - */ |
|
42 | + /** |
|
43 | + * @var int |
|
44 | + */ |
|
45 | 45 | protected $dateTo; |
46 | 46 | |
47 | - /** |
|
48 | - * @var bool |
|
49 | - */ |
|
47 | + /** |
|
48 | + * @var bool |
|
49 | + */ |
|
50 | 50 | protected $future = false; |
51 | 51 | |
52 | - /** |
|
53 | - * @var string |
|
54 | - */ |
|
52 | + /** |
|
53 | + * @var string |
|
54 | + */ |
|
55 | 55 | protected $interval = ''; |
56 | 56 | |
57 | - /** |
|
58 | - * @var int |
|
59 | - */ |
|
57 | + /** |
|
58 | + * @var int |
|
59 | + */ |
|
60 | 60 | protected $difference = 0; |
61 | 61 | |
62 | - /** |
|
63 | - * @var int |
|
64 | - */ |
|
62 | + /** |
|
63 | + * @var int |
|
64 | + */ |
|
65 | 65 | protected $dateDiff = 0; |
66 | 66 | |
67 | - /** |
|
68 | - * @var array|NULL |
|
69 | - */ |
|
67 | + /** |
|
68 | + * @var array|NULL |
|
69 | + */ |
|
70 | 70 | protected static $texts = null; |
71 | 71 | |
72 | 72 | public function __construct() |
@@ -86,17 +86,17 @@ discard block |
||
86 | 86 | self::$texts = null; |
87 | 87 | } |
88 | 88 | |
89 | - /** |
|
90 | - * Sets the origin date to calculate from. |
|
91 | - * |
|
92 | - * NOTE: if this is further in the future than |
|
93 | - * the to: date, it will be considered as a |
|
94 | - * calculation for something to come, i.e. |
|
95 | - * "In two days". |
|
96 | - * |
|
97 | - * @param \DateTime $date |
|
98 | - * @return ConvertHelper_DurationConverter |
|
99 | - */ |
|
89 | + /** |
|
90 | + * Sets the origin date to calculate from. |
|
91 | + * |
|
92 | + * NOTE: if this is further in the future than |
|
93 | + * the to: date, it will be considered as a |
|
94 | + * calculation for something to come, i.e. |
|
95 | + * "In two days". |
|
96 | + * |
|
97 | + * @param \DateTime $date |
|
98 | + * @return ConvertHelper_DurationConverter |
|
99 | + */ |
|
100 | 100 | public function setDateFrom(\DateTime $date) : ConvertHelper_DurationConverter |
101 | 101 | { |
102 | 102 | $this->dateFrom = ConvertHelper::date2timestamp($date); |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | return $this; |
105 | 105 | } |
106 | 106 | |
107 | - /** |
|
108 | - * Sets the date to calculate to. Defaults to |
|
109 | - * the current time if not set. |
|
110 | - * |
|
111 | - * @param \DateTime $date |
|
112 | - * @return ConvertHelper_DurationConverter |
|
113 | - */ |
|
107 | + /** |
|
108 | + * Sets the date to calculate to. Defaults to |
|
109 | + * the current time if not set. |
|
110 | + * |
|
111 | + * @param \DateTime $date |
|
112 | + * @return ConvertHelper_DurationConverter |
|
113 | + */ |
|
114 | 114 | public function setDateTo(\DateTime $date) : ConvertHelper_DurationConverter |
115 | 115 | { |
116 | 116 | $this->dateTo = ConvertHelper::date2timestamp($date); |
@@ -118,14 +118,14 @@ discard block |
||
118 | 118 | return $this; |
119 | 119 | } |
120 | 120 | |
121 | - /** |
|
122 | - * Converts the specified dates to a human-readable string. |
|
123 | - * |
|
124 | - * @throws ConvertHelper_Exception |
|
125 | - * @return string |
|
126 | - * |
|
127 | - * @see ConvertHelper_DurationConverter::ERROR_NO_DATE_FROM_SET |
|
128 | - */ |
|
121 | + /** |
|
122 | + * Converts the specified dates to a human-readable string. |
|
123 | + * |
|
124 | + * @throws ConvertHelper_Exception |
|
125 | + * @return string |
|
126 | + * |
|
127 | + * @see ConvertHelper_DurationConverter::ERROR_NO_DATE_FROM_SET |
|
128 | + */ |
|
129 | 129 | public function convert() : string |
130 | 130 | { |
131 | 131 | $this->initTexts(); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | public function __construct() |
73 | 73 | { |
74 | - if(class_exists('\AppLocalize\Localization')) { |
|
74 | + if (class_exists('\AppLocalize\Localization')) { |
|
75 | 75 | \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged')); |
76 | 76 | } |
77 | 77 | } |
@@ -133,11 +133,11 @@ discard block |
||
133 | 133 | |
134 | 134 | $epoch = 'past'; |
135 | 135 | $key = 'singular'; |
136 | - if($this->dateDiff > 1) { |
|
136 | + if ($this->dateDiff > 1) { |
|
137 | 137 | $key = 'plural'; |
138 | 138 | } |
139 | 139 | |
140 | - if($this->future) { |
|
140 | + if ($this->future) { |
|
141 | 141 | $epoch = 'future'; |
142 | 142 | } |
143 | 143 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | |
151 | 151 | protected function initTexts() |
152 | 152 | { |
153 | - if(isset(self::$texts)) { |
|
153 | + if (isset(self::$texts)) { |
|
154 | 154 | return; |
155 | 155 | } |
156 | 156 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $day = (int)date("j", $this->dateTo); |
237 | 237 | $year = (int)date("Y", $this->dateFrom); |
238 | 238 | |
239 | - while(mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
239 | + while (mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
240 | 240 | { |
241 | 241 | $months_difference++; |
242 | 242 | } |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | protected function resolveCalculations() : void |
258 | 258 | { |
259 | - if(!isset($this->dateFrom)) |
|
259 | + if (!isset($this->dateFrom)) |
|
260 | 260 | { |
261 | 261 | throw new ConvertHelper_Exception( |
262 | 262 | 'No date from has been specified.', |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | } |
267 | 267 | |
268 | 268 | // no date to set? Assume we want to use today. |
269 | - if(!isset($this->dateTo)) |
|
269 | + if (!isset($this->dateTo)) |
|
270 | 270 | { |
271 | 271 | $this->dateTo = time(); |
272 | 272 | } |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | |
334 | 334 | $difference = $this->dateTo - $this->dateFrom; |
335 | 335 | |
336 | - if($difference < 0) |
|
336 | + if ($difference < 0) |
|
337 | 337 | { |
338 | 338 | $difference = $difference * -1; |
339 | 339 | $this->future = true; |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | { |
396 | 396 | $converter = new ConvertHelper_DurationConverter(); |
397 | 397 | |
398 | - if($datefrom instanceof DateTime) |
|
398 | + if ($datefrom instanceof DateTime) |
|
399 | 399 | { |
400 | 400 | $converter->setDateFrom($datefrom); |
401 | 401 | } |
@@ -404,11 +404,11 @@ discard block |
||
404 | 404 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
405 | 405 | } |
406 | 406 | |
407 | - if($dateto instanceof DateTime) |
|
407 | + if ($dateto instanceof DateTime) |
|
408 | 408 | { |
409 | 409 | $converter->setDateTo($dateto); |
410 | 410 | } |
411 | - else if($dateto > 0) |
|
411 | + else if ($dateto > 0) |
|
412 | 412 | { |
413 | 413 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
414 | 414 | } |
@@ -398,8 +398,7 @@ discard block |
||
398 | 398 | if($datefrom instanceof DateTime) |
399 | 399 | { |
400 | 400 | $converter->setDateFrom($datefrom); |
401 | - } |
|
402 | - else |
|
401 | + } else |
|
403 | 402 | { |
404 | 403 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
405 | 404 | } |
@@ -407,8 +406,7 @@ discard block |
||
407 | 406 | if($dateto instanceof DateTime) |
408 | 407 | { |
409 | 408 | $converter->setDateTo($dateto); |
410 | - } |
|
411 | - else if($dateto > 0) |
|
409 | + } else if($dateto > 0) |
|
412 | 410 | { |
413 | 411 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
414 | 412 | } |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | * @param bool $short |
44 | 44 | * @return string|NULL |
45 | 45 | */ |
46 | - public static function toDayName(DateTime $date, bool $short=false) : ?string |
|
46 | + public static function toDayName(DateTime $date, bool $short = false) : ?string |
|
47 | 47 | { |
48 | 48 | $day = $date->format('l'); |
49 | 49 | $invariant = self::getDayNamesInvariant(); |
50 | 50 | |
51 | 51 | $idx = array_search($day, $invariant); |
52 | - if($idx !== false) { |
|
52 | + if ($idx !== false) { |
|
53 | 53 | $localized = self::getDayNames($short); |
54 | 54 | return $localized[$idx]; |
55 | 55 | } |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | * @param bool $short |
73 | 73 | * @return string[] |
74 | 74 | */ |
75 | - public static function getDayNames(bool $short=false) : array |
|
75 | + public static function getDayNames(bool $short = false) : array |
|
76 | 76 | { |
77 | 77 | self::initDays(); |
78 | 78 | |
79 | - if($short) { |
|
79 | + if ($short) { |
|
80 | 80 | return self::$daysShort; |
81 | 81 | } |
82 | 82 | |
@@ -102,13 +102,13 @@ discard block |
||
102 | 102 | public static function toListLabel(DateTime $date, bool $includeTime = false, bool $shortMonth = false) : string |
103 | 103 | { |
104 | 104 | $today = new DateTime(); |
105 | - if($date->format('d.m.Y') === $today->format('d.m.Y')) |
|
105 | + if ($date->format('d.m.Y') === $today->format('d.m.Y')) |
|
106 | 106 | { |
107 | 107 | $label = t('Today'); |
108 | 108 | } |
109 | 109 | else |
110 | 110 | { |
111 | - $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' '; |
|
111 | + $label = $date->format('d').'. '.self::month2string((int)$date->format('m'), $shortMonth).' '; |
|
112 | 112 | |
113 | 113 | if ($date->format('Y') != date('Y')) |
114 | 114 | { |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | |
214 | 214 | private static function initDays() : void |
215 | 215 | { |
216 | - if(!empty(self::$daysShort)) |
|
216 | + if (!empty(self::$daysShort)) |
|
217 | 217 | { |
218 | 218 | return; |
219 | 219 | } |
@@ -105,8 +105,7 @@ |
||
105 | 105 | if($date->format('d.m.Y') === $today->format('d.m.Y')) |
106 | 106 | { |
107 | 107 | $label = t('Today'); |
108 | - } |
|
109 | - else |
|
108 | + } else |
|
110 | 109 | { |
111 | 110 | $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' '; |
112 | 111 |