. */ declare(strict_types=1); namespace App\Helpers; use Symfony\Component\HttpFoundation\IpUtils; /** * Utils to assist with IP anonymization. * The IPUtils::anonymize has a certain edgecase with local-link addresses, which is handled here. * See: https://github.com/Part-DB/Part-DB-server/issues/782 */ final class IPAnonymizer { public static function anonymize(string $ip): string { /** * If the IP contains a % symbol, then it is a local-link address with scoping according to RFC 4007 * In that case, we only care about the part before the % symbol, as the following functions, can only work with * the IP address itself. As the scope can leak information (containing interface name), we do not want to * include it in our anonymized IP data. */ if (str_contains($ip, '%')) { $ip = substr($ip, 0, strpos($ip, '%')); } return IpUtils::anonymize($ip); } }