2017 © Pedro Peláez
 

library guzzle-site-authenticator

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

image

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.

  • Sunday, January 7, 2018
  • by bdunogier
  • Repository
  • 6 Watchers
  • 3 Stars
  • 15,199 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 4 Open issues
  • 8 Versions
  • 7 % Grown

The README.md

Guzzle site authenticator

CI, (*1)

This package is a plugin for guzzle 5.x. It provides a subscriber that can authenticate requests by posting login information., (*2)

It comes up as a Symfony bundle and a generic php lib., (*3)

Installation

Using composer

Add the package to your requirements using composer: composer require bdunogier/guzzle-site-authenticator., (*4)

If you're using the Symfony fullstack, add BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle to your kernel class., (*5)

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:, (*6)

$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., (*7)

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., (*8)

Site configuration

Login to sites configured via SiteConfig objects:, (*9)

$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:, (*10)

# 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., (*11)

It implements a custom SiteConfigBuilder, based on sites configuration provided by j0k3r/graby., (*12)

The Versions

07/01 2018

dev-lemonde

dev-lemonde

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

MIT

The Requires

 

The Development Requires

08/09 2017

dev-master

9999999-dev

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

MIT

The Requires

 

The Development Requires

06/06 2017

1.0.0-beta4

1.0.0.0-beta4

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

MIT

The Requires

 

The Development Requires

23/05 2017

1.0.0-beta3

1.0.0.0-beta3

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

MIT

The Requires

 

The Development Requires

05/05 2017

1.0.0-beta2

1.0.0.0-beta2

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

MIT

The Requires

 

The Development Requires

22/01 2017

dev-callback_forms

dev-callback_forms

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

The Requires

 

The Development Requires

25/01 2016

dev-config_refactoring

dev-config_refactoring

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

The Requires

 

The Development Requires

17/01 2016

v1.0.0-beta1

1.0.0.0-beta1

A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.

  Sources   Download

The Requires

 

The Development Requires