MessageHelper

Controller trait with some handy methods.

trait MessageHelper
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Protected
ReturnsSignature and Description
Map<string,mixed>
getParsedBodyMap(ServerRequestInterface $request)

Gets a Map of the request body content.

Principal
getPrincipal(ServerRequestInterface $request)

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

Map<string,mixed>
getQueryParamsMap(ServerRequestInterface $request)

Gets a Map of the request query params.

ResponseInterface
ifModSince(ServerRequestInterface $request, ResponseInterface $response, int $timestamp)

Checks the If-Modified-Since header, maybe sending 304 Not Modified.

ResponseInterface
ifNoneMatch(ServerRequestInterface $request, ResponseInterface $response, string $etag)

Checks the If-None-Match header, maybe sending 304 Not Modified.

PaginationFactory

Gets a pagination factory

ResponseInterface
redirect(ResponseInterface $response, int $code, string $url)

Redirects the user to another URL.

ResponseInterface
write(ResponseInterface $response, mixed $body)

Cleanly writes the body to the response.

Method Details

getParsedBodyMap

protected function getParsedBodyMap(ServerRequestInterface $request)

Gets a Map of the request body content.

Parameters
NameTypeDescription
$requestServerRequestInterface

The request

Returns
TypeDescription
Map<string,mixed>

The Map of request body content

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

getQueryParamsMap

protected function getQueryParamsMap(ServerRequestInterface $request)

Gets a Map of the request query params.

Parameters
NameTypeDescription
$requestServerRequestInterface

The request

Returns
TypeDescription
Map<string,mixed>

The Map of query params

ifModSince

protected function ifModSince(ServerRequestInterface $request, ResponseInterface $response, int $timestamp)

Checks the If-Modified-Since header, maybe sending 304 Not Modified.

Parameters
NameTypeDescription
$requestServerRequestInterface

The HTTP request

$responseResponseInterface

The HTTP response

$timestampint

The timestamp for comparison

Returns
TypeDescription
ResponseInterface

The same or new response

ifNoneMatch

protected function ifNoneMatch(ServerRequestInterface $request, ResponseInterface $response, string $etag)

Checks the If-None-Match header, maybe sending 304 Not Modified.

Parameters
NameTypeDescription
$requestServerRequestInterface

The HTTP request

$responseResponseInterface

The HTTP response

$etagstring

The ETag for comparison

Returns
TypeDescription
ResponseInterface

The same or new response

paginationFactory

protected function paginationFactory()

Gets a pagination factory

Returns
TypeDescription
PaginationFactory

The pagination factory

redirect

protected function redirect(ResponseInterface $response, int $code, string $url)

Redirects the user to another URL.

Parameters
NameTypeDescription
$responseResponseInterface

The HTTP response

$codeint
$urlstring
Returns
TypeDescription
ResponseInterface

The new response

write

protected function write(ResponseInterface $response, mixed $body)

Cleanly writes the body to the response.

Parameters
NameTypeDescription
$responseResponseInterface

The HTTP response

$bodymixed

The body to write

Returns
TypeDescription
ResponseInterface

The same or new response