yiisoft/cookies
Composer 安装命令:
composer require yiisoft/cookies
包简介
Convenient way to use cookies with PSR-7
README 文档
README
Yii Cookies
The package helps in working with HTTP cookies in a PSR-7 environment:
- provides a handy abstraction representing a cookie
- allows dealing with many cookies at once
- forms and adds
Set-Cookieheaders to response - signs a cookie to prevent its value from being tampered with
- encrypts a cookie to prevent its value from being tampered with
- provides PSR-15 middleware for encrypting and signing cookie values
Requirements
- PHP 7.4 - 8.5.
Installation
The package could be installed with Composer:
composer require yiisoft/cookies
General usage
Adding a cookie to response:
$cookie = (new \Yiisoft\Cookies\Cookie('cookieName', 'value')) ->withPath('/') ->withDomain('yiiframework.com') ->withHttpOnly(true) ->withSecure(true) ->withSameSite(\Yiisoft\Cookies\Cookie::SAME_SITE_STRICT) ->withMaxAge(new \DateInterval('P7D')); $response = $cookie->addToResponse($response);
Modifying response cookies to be sent:
$cookies = \Yiisoft\Cookies\CookieCollection::fromResponse($response); $cookies->expire('login'); $response = $cookies->setToResponse($response);
Getting request cookies:
$cookies = \Yiisoft\Cookies\CookieCollection::fromArray($request->getCookieParams());
Signing a cookie to prevent its value from being tampered with:
$cookie = new \Yiisoft\Cookies\Cookie('identity', 'identityValue'); // The secret key used to sign and validate cookies. $key = '0my1xVkjCJnD_q1yr6lUxcAdpDlTMwiU'; $signer = new \Yiisoft\Cookies\CookieSigner($key); // Prefixes unique hash based on the value of the cookie and a secret key. $signedCookie = $signer->sign($cookie); // Validates and get backs the cookie with clean value. $cookie = $signer->validate($signedCookie); // Before validation, check if the cookie is signed. if ($signer->isSigned($cookie)) { $cookie = $signer->validate($cookie); }
Encrypting a cookie to prevent its value from being tampered with:
$cookie = new \Yiisoft\Cookies\Cookie('identity', 'identityValue'); // The secret key used to sign and validate cookies. $key = '0my1xVkjCJnD_q1yr6lUxcAdpDlTMwiU'; $encryptor = new \Yiisoft\Cookies\CookieEncryptor($key); // Encrypts cookie value based on the secret key. $encryptedCookie = $encryptor->encrypt($cookie); // Validates, decrypts and get backs the cookie with clean value. $cookie = $encryptor->decrypt($encryptedCookie); // Before decryption, check if the cookie is encrypted. if ($encryptor->isEncrypted($cookie)) { $cookie = $encryptor->decrypt($cookie); }
Using a PSR-15 middleware to encrypt and sign cookie values.
/** * @var \Psr\Http\Message\ServerRequestInterface $request * @var \Psr\Http\Server\RequestHandlerInterface $handler * @var \Psr\Log\LoggerInterface $logger */ // The secret key used to sign and validate cookies. $key = '0my1xVkjCJnD_q1yr6lUxcAdpDlTMwiU'; $signer = new \Yiisoft\Cookies\CookieSigner($key); $encryptor = new \Yiisoft\Cookies\CookieEncryptor($key); $cookiesSettings = [ 'identity' => \Yiisoft\Cookies\CookieMiddleware::ENCRYPT, 'name_[1-9]' => \Yiisoft\Cookies\CookieMiddleware::SIGN, 'prefix*' => \Yiisoft\Cookies\CookieMiddleware::SIGN, ]; $middleware = new \Yiisoft\Cookies\CookieMiddleware( $logger $encryptor, $signer, $cookiesSettings, ); // The cookie parameter values from the request are decrypted/validated. // The cookie values are encrypted/signed, and appended to the response. $response = $middleware->process($request, $handler);
Create cookie with raw value that will not be encoded:
$cookie = (new \Yiisoft\Cookies\Cookie('cookieName')) ->withRawValue('ebaKUq90PhiHck_MR7st-E1SxhbYWiTsLo82mCTbNuAh7rgflx5LVsYfJJseyQCrODuVcJkTSYhm1WKte-l5lQ==')
Documentation
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii Cookies is free software. It is released under the terms of the BSD License.
Please see LICENSE for more information.
Maintained by Yii Software.
Support the project
Follow updates
yiisoft/cookies 适用场景与选型建议
yiisoft/cookies 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 361.56k 次下载、GitHub Stars 达 21, 最近一次更新时间为 2020 年 09 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cookies」 「cookie」 「psr-7」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 yiisoft/cookies 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 yiisoft/cookies 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 yiisoft/cookies 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Add a configurable cookie consent banner to the website.
Model of a web-based resource
Interfaces for web resource models and services to retrieve and create them
Interface for a factory to create Psr\Http\Message\StreamInterface objects
A PSR-7 compatible library for making CRUD API endpoints
Retrieve a WebResourceInterface instance over HTTP
统计信息
- 总下载量: 361.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 28
- 依赖项目数: 10
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2020-09-11