rob006/yii2-simple-auth
Composer 安装命令:
composer require rob006/yii2-simple-auth
包简介
Yii 2 extension that provides simple authentication based on a secret key.
README 文档
README
Yii 2 extension that provides simple authentication based on a secret key.
The extension provides components for easy authenticate and validate the HTTP request. Each request gets its own unique token with the expiration time, so no passwords or keys are sent with the request - it should be safer than basic access authentication when you don't use https.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require rob006/yii2-simple-auth
or add
"rob006/yii2-simple-auth": "^1.0"
to the require section of your composer.json file.
Usage
Configuration
You can configure default secret key used by this extension by setting param in your config in
config/web.php and/or in config/console.php:
return [ ... 'params' => [ ... 'simpleauth' => [ 'secret' => 'mysecretkey', ], ], ];
This is optional - you can always explicitly specify the key for authentication/validation.
Authentication (client side)
Authentication when using official yii2-httpclient extension
You can simply authenticate Request object from official Yii 2 httpclient
by using yii2-simple-auth-yii-authenticator
extension.
Authentication any request
You can use Authenticator to authenticate any request, even if you don't use yii2-httpclient
package. For example, authentication cURL request by GET param:
use rob006\simpleauth\Authenticator; $ch = curl_init(); $url = 'http://api.example.com/user/list/?ids=1,2,3,4'; $url .= '&' . Authenticator::PARAM_NAME . '=' . Authenticator::generateAuthToken($url); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch);
Authentication cURL request by header:
use rob006\simpleauth\Authenticator; $ch = curl_init(); $url = 'http://api.example.com/user/list/?ids=1,2,3,4'; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, [ Authenticator::HEADER_NAME . ': ' . Authenticator::generateAuthToken($url), ]); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch);
Validation (server side)
To check whether the request has a valid token simply add action filter to your controller:
use rob006\simpleauth\ActionFilter; class MyController extends \yii\web\Controller { public function behaviors() { return [ ... 'simpleauth' => [ 'class' => ActionFilter::className(), ], ]; } ... }
You can also configure some settings for ActionFilter:
use rob006\simpleauth\ActionFilter; use rob006\simpleauth\Authenticator; class MyController extends \yii\web\Controller { public function behaviors() { return [ ... 'simpleauth' => [ 'class' => ActionFilter::className(), // allow authentication only by header 'allowedMethods' => [ Authenticator::METHOD_HEADER, ], // set token timeout to 1 hour (by default it is 5 minutes) 'tokenDuration' => 3600, // override default header used for authentication 'headerName' => 'X-My-Custom-Header', // override params names used for send authentication token 'postParamName' => 'my_custom_token_param_name', 'getParamName' => 'my_custom_token_param_name', // custom secret used for validate authentication 'secret' => 'my-custom-secret-key', ], ]; } ... }
Final comments
Make sure that you generate token for final URL and no redirections are performed for the request. Token is generated for the exact address, so tokens for:
http://example.com/user/list/https://example.com/user/list/http://www.example.com/user/list/http://example.com/user/list
will be completely different.
Be careful when using POST request. Authenticator and ActionFilter takes into account only the
URL, all POST data is ignored during the authentication and validation. This means that one token
may be used many times for different requests with different POST data if refer to the same URL.
rob006/yii2-simple-auth 适用场景与选型建议
rob006/yii2-simple-auth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.66k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2016 年 08 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Authentication」 「extension」 「auth」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rob006/yii2-simple-auth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rob006/yii2-simple-auth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rob006/yii2-simple-auth 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Multiauth package
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
A custom URL rule class for Yii 2 which allows to create translated URL rules
GraphQL authentication for your headless Craft CMS applications.
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
统计信息
- 总下载量: 5.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 5
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-14