-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11344 from creative-commoners/pulls/5/use-symfony
DEP Use symfony for IPUtils
- Loading branch information
Showing
4 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,13 @@ | |
|
||
namespace SilverStripe\Control\Util; | ||
|
||
use SilverStripe\Dev\Deprecation; | ||
|
||
/** | ||
* Http utility functions. | ||
* | ||
* @author Fabien Potencier <[email protected]> | ||
* @deprecated 5.3.0 Use Symfony\Component\HttpFoundation\IpUtils instead | ||
*/ | ||
class IPUtils | ||
{ | ||
|
@@ -37,6 +40,7 @@ private function __construct() | |
*/ | ||
public static function checkIP($requestIP, $ips) | ||
{ | ||
Deprecation::notice('5.3.0', 'Use Symfony\Component\HttpFoundation\IpUtils::checkIP() instead'); | ||
if (!is_array($ips)) { | ||
$ips = [$ips]; | ||
} | ||
|
@@ -62,6 +66,7 @@ public static function checkIP($requestIP, $ips) | |
*/ | ||
public static function checkIP4($requestIP, $ip) | ||
{ | ||
Deprecation::notice('5.3.0', 'Use Symfony\Component\HttpFoundation\IpUtils::checkIP4() instead'); | ||
if (!filter_var($requestIP, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) { | ||
return false; | ||
} | ||
|
@@ -100,6 +105,7 @@ public static function checkIP4($requestIP, $ip) | |
*/ | ||
public static function checkIP6($requestIP, $ip) | ||
{ | ||
Deprecation::notice('5.3.0', 'Use Symfony\Component\HttpFoundation\IpUtils::checkIP6() instead'); | ||
if (!((extension_loaded('sockets') && defined('AF_INET6')) || @inet_pton('::1'))) { | ||
throw new \RuntimeException('Unable to check IPv6. Check that PHP was not compiled with option "disable-ipv6".'); | ||
} | ||
|
@@ -141,6 +147,7 @@ public static function checkIP6($requestIP, $ip) | |
*/ | ||
public static function anonymize(string $ip): string | ||
{ | ||
Deprecation::notice('5.3.0', 'Use Symfony\Component\HttpFoundation\IpUtils::anonymize() instead'); | ||
$wrappedIPv6 = false; | ||
if (str_starts_with($ip, '[') && str_ends_with($ip, ']')) { | ||
$wrappedIPv6 = true; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters