middlewares/client-ip
最新稳定版本:v2.1.0
Composer 安装命令:
composer require middlewares/client-ip
包简介
Middleware to detect the client ip and save it as a request attribute
README 文档
README
Middleware to detect the client ip and save it as a request attribute.
Requirements
- PHP >= 7.2
- A PSR-7 http library
- A PSR-15 middleware dispatcher
Installation
This package is installable and autoloadable via Composer as middlewares/client-ip.
composer require middlewares/client-ip
Usage
$dispatcher = new Dispatcher([ new Middlewares\ClientIp(), function ($request) { //Get the client ip $ip = $request->getAttribute('client-ip'); } ]); $response = $dispatcher->dispatch(new ServerRequest());
proxy
This option configures the detection through proxies. The first argument is an array of ips or cidr of the trusted proxies. If it's empty, no ip filtering is made. The second argument is a list of the headers to inspect. If it's not defined, uses the default value ['Forwarded', 'Forwarded-For', 'Client-Ip', 'X-Forwarded', 'X-Forwarded-For', 'X-Cluster-Client-Ip']. Disabled by default.
//Use proxies $middleware = (new Middlewares\ClientIp())->proxy(); //Trust only some proxies by ip $middleware = (new Middlewares\ClientIp())->proxy(['10.10.10.10', '10.10.10.11']); //Trust only some proxies by ip using a specific header $middleware = (new Middlewares\ClientIp())->proxy(['10.10.10.10', '10.10.10.11'], ['X-Forwarded-For']); // Trust only some proxies by cidr range // usefull when you have an autoscaled proxy(like haproxy) in a subnet $middleware = (new Middlewares\ClientIp())->proxy(['192.168.0.0/16', '10.0.0.0/8']);
attribute
By default, the ip is stored in the client-ip attribute of the server request. This options allows to modify that:
//Save the ip in the "ip" attribute $middleware = (new Middlewares\ClientIp())->attribute('ip');
Please see CHANGELOG for more information about recent changes and CONTRIBUTING for contributing details.
The MIT License (MIT). Please see LICENSE for more information.
统计信息
- 总下载量: 611.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 16
- 点击次数: 2
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-10