BasicAuthHandler

An auth handler that provides HTTP Basic Authentication support.

package

Default

Methods

__construct

__construct() 

Add a set of required authorities for this auth handler

addAuthorities( $arg0) : $this

Arguments

$arg0

array

Response

$this

a reference to this, so the API can be used fluently

Add a required authority for this auth handler

addAuthority( $arg0) : $this

Arguments

$arg0

string

Response

$this

a reference to this, so the API can be used fluently

Authorizes the given user against all added authorities.

authorize( $arg0,  $arg1) : void

Arguments

$arg0

User

$arg1

callable

Create a basic auth handler

create( $arg0,  $arg1 = null) : \io\vertx\jphp\ext\web\handler\AuthHandler
static

param $authProvider [AuthProvider] the auth provider to use create($authProvider)

Create a basic auth handler, specifying realm

param $authProvider [AuthProvider] the auth service to use param $realm [string] the realm to use create($authProvider, $realm)

Arguments

$arg0

AuthProvider

$arg1

string

Response

\io\vertx\jphp\ext\web\handler\AuthHandler

the auth handler

Something has happened, so handle it.

handle( $arg0) : void

Arguments

$arg0

RoutingContext

Parses the credentials from the request into a JsonObject. The implementation should be able to extract the required info for the auth provider in the format the provider expects.

parseCredentials( $arg0,  $arg1) : void

Arguments

$arg0

RoutingContext

$arg1

callable

Constants

The default realm to use

DEFAULT_REALM
var

php文件只是为了写代码方便,常量的实际值请参考原java文件