-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Helpers.php
59 lines (45 loc) · 1.33 KB
/
Helpers.php
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
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Http;
use Nette;
use Nette\Utils\DateTime;
/**
* Rendering helpers for HTTP.
*/
final class Helpers
{
use Nette\StaticClass;
/** @internal */
public const StrictCookieName = '_nss';
/**
* Returns HTTP valid date format.
*/
public static function formatDate(string|int|\DateTimeInterface $time): string
{
$time = DateTime::from($time)->setTimezone(new \DateTimeZone('GMT'));
return $time->format('D, d M Y H:i:s \G\M\T');
}
/**
* Is IP address in CIDR block?
*/
public static function ipMatch(string $ip, string $mask): bool
{
[$mask, $size] = explode('/', $mask . '/');
$tmp = fn(int $n): string => sprintf('%032b', $n);
$ip = implode('', array_map($tmp, unpack('N*', inet_pton($ip))));
$mask = implode('', array_map($tmp, unpack('N*', inet_pton($mask))));
$max = strlen($ip);
if (!$max || $max !== strlen($mask) || (int) $size < 0 || (int) $size > $max) {
return false;
}
return strncmp($ip, $mask, $size === '' ? $max : (int) $size) === 0;
}
public static function initCookie(IRequest $request, IResponse $response)
{
$response->setCookie(self::StrictCookieName, '1', 0, '/', sameSite: IResponse::SameSiteStrict);
}
}