bdunogier/guzzle-site-authenticator
Composer 安装命令:
composer require bdunogier/guzzle-site-authenticator
包简介
A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.
README 文档
README
This package is a plugin for guzzle 5.x. It provides a subscriber that can authenticate requests by posting login information.
It comes up as a Symfony bundle and a generic php lib.
Installation
Using composer
Add the package to your requirements using composer: composer require bdunogier/guzzle-site-authenticator.
If you're using the Symfony fullstack, add BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle to your
kernel class.
Usage
The guzzle subscriber, Guzzle\AuthenticatorSubscriber, must be attached to the Guzzle client. It is provided by the
bundle as @bd_guzzle_site_authenticator.authenticator_subscriber:
$client = new GuzzleHttp\Client(['defaults' => ['cookies' => new FileCookieJar('/tmp/cookiejar.json')]]); $client->getEmitter()->attach( $container->get('bd_guzzle_site_authenticator.authenticator_subscriber') );
Cookies handling
The CookieJar passed to the guzzle client defaults is important: it will be used read/write cookies received by Guzzle,
and is required for authentication to work.
Send a request with Guzzle. If the request's host has a SiteConfig that requires configuration (see below), the plugin will try to log in to the site if it does not have a cookie yet. After a request, if the response contains the not logged in text (matched by xpath), it tries to login again, and retries the request.
Site configuration
Login to sites configured via SiteConfig objects:
$siteConfig = new BD\GuzzleSiteAuthenticator\SiteConfig\SiteConfig([ 'host' => 'example.com', 'loginUri' => 'http://example.com/login', 'usernameField' => 'username', 'passwordField' => 'password', 'extraFields' => ['action' => 'login'], 'notLoggedInXpath' => "//div[@class='not-logged-in']", 'username' => "johndoe", 'password' => "unknown", ]);
SiteConfig objects are returned by a SiteConfigBuilder. The library comes with a default ArraySiteConfigBuilder,
that accepts a list of site config properties array, indexed by host. With the bundle, its contents can be configured
using the bd_guzzle_site_authenticator.site_config container variable:
# config.yml parameters: bd_guzzle_site_authenticator.site_config: example.com: host: "example.com" loginUri: "http://example.com/login" usernameField: "username" passwordField: "password" extraFields: {action: login} notLoggedInXpath: "//div[@class='not-logged-in']" username: "johndoe" password: "unknown" otherexample.com: host: ...
Implementations
Used by wallabag, a read it later web application, to fetch content from sites that require a login.
It implements a custom SiteConfigBuilder, based on sites configuration provided by j0k3r/graby.
bdunogier/guzzle-site-authenticator 适用场景与选型建议
bdunogier/guzzle-site-authenticator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 208.89k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2015 年 12 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 bdunogier/guzzle-site-authenticator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bdunogier/guzzle-site-authenticator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 208.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 43
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-12-25