You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.0 KiB

1 year ago
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
class CCookieHelper {
/**
* Check if cookie exists.
*
* @param string $name
*
* @return boolean
*/
public static function has(string $name): bool {
return array_key_exists($name, $_COOKIE);
}
/**
* Get cookie.
*
* @param string $name
*
* @return mixed
*/
public static function get(string $name) {
return self::has($name) ? $_COOKIE[$name] : null;
}
/**
* Add cookie.
*
* @param string $name
* @param string $value
* @param integer $time
*
* @return boolean
*/
public static function set(string $name, string $value, int $time = 0): bool {
$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$path = rtrim(substr($path, 0, strrpos($path, '/')), '/');
if (!setcookie($name, $value, $time, $path, '', HTTPS, true)) {
return false;
}
$_COOKIE[$name] = $value;
return true;
}
/**
* Delete cookie.
*
* @param string $name
*
* @return boolean
*/
public static function unset(string $name): bool {
if (!setcookie($name, '', 0)) {
return false;
}
unset($_COOKIE[$name]);
return true;
}
/**
* Get all cookies.
*
* @return array
*/
public static function getAll(): array {
return $_COOKIE;
}
}