Skip to content

Commit 81a28d7

Browse files
committedJan 28, 2022
Improvements 👾
- Fixed Helper::parseVersion() - Fixed Request::is() - Fixed deprecated strcasecmp() - Fixed Inphinit\Experimental\Routing\Group::checkDomain() (ports) - DOMDocument::save supports PHP8.1 (ReturnTypeWillChange)
1 parent 851cb88 commit 81a28d7

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed
 

‎src/Experimental/File.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static function isBinary($path)
6262
$encode = finfo_buffer($finfo, file_get_contents($path, false, null, 0, 5012));
6363
finfo_close($finfo);
6464

65-
self::$bin[$path] = strcasecmp($encode, 'binary') === 0;
65+
self::$bin[$path] = $encode ? strcasecmp($encode, 'binary') === 0 : false;
6666
}
6767

6868
return self::$bin[$path];

‎src/Experimental/Routing/Group.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ protected function checkDomain()
174174
} else {
175175
$host = Request::header('Host');
176176

177-
self::$cacheHost = $host ? strtok($host, ':') : '';
177+
$host = self::$cacheHost = $host ? strtok($host, ':') : '';
178178
}
179179

180180
if ($host === $this->domain) {

‎src/Inphinit/Dom/Document.php

+1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ public function __toString()
193193
* @throws \Inphinit\Dom\DomException
194194
* @return void
195195
*/
196+
#[\ReturnTypeWillChange]
196197
public function save($path, $format = Document::XML)
197198
{
198199
switch ($format) {

‎src/Inphinit/Helper.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ class Helper
1919
*/
2020
public static function parseVersion($version)
2121
{
22-
if (preg_match('#^(\d+)\.(\d+)\.(\d+)(-([\da-z]+(\.[\da-z]+)*)(\+([\da-z]+(\.[\da-z]+)*))?)?$#', $version, $match)) {
22+
//if (preg_match('#^(\d+)\.(\d+)\.(\d+)(-([\da-z]+(\.[\da-z]+)*)(\+([\da-z]+(\.[\da-z]+)*))?)?$#', $version, $matches)) {
23+
24+
if (preg_match('#^(\d|[1-9]\d+)\.(\d|[1-9]\d+)\.(\d|[1-9]\d+)((?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)$#', $version, $matches)) {
2325
$matches = array(
2426
'major' => $matches[1],
2527
'minor' => $matches[2],
2628
'patch' => $matches[3],
27-
'extra' => $matches[4],
28-
'release' => explode('.', $matches[5]),
29-
'build' => explode('.', $matches[8])
29+
'extra' => isset($matches[4]) ? $matches[4] : null,
30+
'release' => isset($matches[5]) && $matches[5] !== '' ? explode('.', $matches[5]) : null,
31+
'build' => isset($matches[6]) && $matches[6] !== '' ? explode('.', $matches[6]) : null
3032
);
3133

3234
return (object) $matches;

‎src/Inphinit/Http/Request.php

+13-3
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,23 @@ public static function is($check)
4242
return empty($_SERVER['HTTPS']) === false && strcasecmp($_SERVER['HTTPS'], 'on') === 0;
4343

4444
case 'xhr':
45-
return strcasecmp(self::header('X-Requested-With'), 'xmlhttprequest') === 0;
45+
return strcasecmp((string) self::header('X-Requested-With'), 'xmlhttprequest') === 0;
4646

4747
case 'pjax':
48-
return strcasecmp(self::header('X-Pjax'), 'true') === 0;
48+
return strcasecmp((string) self::header('X-Pjax') || '', 'true') === 0;
4949

5050
case 'prefetch':
51-
return strcasecmp(self::header('Purpose') || self::header('X-Moz') || self::header('X-Purpose'), 'prefetch') === 0;
51+
if ($data = self::header('Purpose')) {
52+
$prop = $data;
53+
} elseif ($data = self::header('X-Moz')) {
54+
$prop = $data;
55+
} elseif ($data = self::header('X-Purpose')) {
56+
$prop = $data;
57+
} else {
58+
return false;
59+
}
60+
61+
return strcasecmp($prop, 'prefetch') === 0;
5262
}
5363

5464
return strcasecmp($_SERVER['REQUEST_METHOD'], $check) === 0;

0 commit comments

Comments
 (0)
Please sign in to comment.