AuthRule

Aura Router rule to test user is authenticated.

class AuthRule implements RuleInterface
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Public
ReturnsSignature and Description
bool
__invoke(ServerRequestInterface $request, Route $route)

Check if the Request matches the Route.

Protected
ReturnsSignature and Description
Principal
getPrincipal(ServerRequestInterface $request)

Gets the stored principal, or the anonymous user if none was found.

Method Details

__invoke

public function __invoke(ServerRequestInterface $request, Route $route)

Check if the Request matches the Route.

Parameters
NameTypeDescription
$requestServerRequestInterface

The HTTP request

$routeRoute

The route.

Returns
TypeDescription
bool

True on success, false on failure

getPrincipal

protected function getPrincipal(ServerRequestInterface $request)

Gets the stored principal, or the anonymous user if none was found.

Parameters
NameTypeDescription
$requestServerRequestInterface

The HTTP request

Returns
TypeDescription
Principal

The authenticated principal