DigestAuthHandler

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 digest auth handler

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

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

Create a digest auth handler, specifying the expire timeout for nonces.

param $authProvider [HtdigestAuth] the auth service to use param $nonceExpireTimeout [integer] the nonce expire timeout in milliseconds. create($authProvider, $nonceExpireTimeout)

Arguments

$arg0

HtdigestAuth

$arg1

integer

Response

\io\vertx\jphp\ext\web\handler\DigestAuthHandler

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 nonce expire timeout to use in milliseconds.

DEFAULT_NONCE_EXPIRE_TIMEOUT
var

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