Http is a library for creating HTTP components (Controller, Middleware, Header, Status) for chevere/router. It is compatible with the following PHP-FIG PSR:
- PSR-7: HTTP message interfaces
- PSR-17: HTTP Factories
- PSR-18: HTTP Client
Read Chevere Http at Rodolfo's blog for a compressive introduction to this package.
Http is available through Packagist and the repository source is at chevere/http.
composer require chevere/httpThe Controller in Http is a special Controller meant to be used in the context of HTTP requests. It extends Action by adding request parameters (query string, body, files) and attributes for statuses and headers.
use Chevere\Http\Controller;
class ResourceGet extends Controller
{
// ...
}Define accepted parameters for headers using the acceptHeaders method.
use Chevere\Parameter\Interfaces\ArrayStringParameterInterface;
use function Chevere\Parameter\arrayString;
use function Chevere\Parameter\parameters;
use function Chevere\Parameter\string;
public static function acceptHeaders(): ArrayStringParameterInterface
{
return arrayString(
...['Webhook-Id' => string()],
);
}Define accepted parameters for query string using the acceptQuery method.
use Chevere\Parameter\Interfaces\ArrayStringParameterInterface;
use function Chevere\Parameter\arrayString;
use function Chevere\Parameter\parameters;
use function Chevere\Parameter\string;
public static function acceptQuery(): ArrayStringParameterInterface
{
return arrayString(
foo: string('/^[a-z]+$/'),
);
}Define accepted parameters for body using the acceptBody method.
use Chevere\Parameter\Interfaces\ArrayParameterInterface;
use function Chevere\Parameter\arrayp;
use function Chevere\Parameter\parameters;
use function Chevere\Parameter\string;
public static function acceptBody(): ArrayParameterInterface
{
return arrayp(
bar: string('/^[1-9]+$/'),
);
}Define accepted parameters for $_FILES using the acceptFiles method.
use Chevere\Parameter\Interfaces\ArrayParameterInterface;
use function Chevere\Parameter\arrayp;
use function Chevere\Parameter\file;
public static function acceptFiles(): ArrayParameterInterface
{
return arrayp(
myFile: file(),
);
}Use method withServerRequest to inject a PSR-7 ServerRequest instance. This will assert the request against the defined accept* methods.
use Psr\Http\Message\ServerRequestInterface;
$controller = $controller
->withServerRequest($request);Use method headers to read headers parameters.
$headers = $controller->headers();
$header = $headers->required('Webhook-Id');Use method query to read query parameters.
$query = $controller->query();
$foo = $query->required('foo');Use method bodyParsed to read the body parameters parsed.
$parsed = $controller->bodyParsed();
$bar = $parsed->required('bar')->int();Use method bodyStream to return the body stream.
$stream = $controller->bodyStream();Use method body to return the body typed.
$string = $controller->body()->string();Use method files to access the files parameters, in the format of $_FILES arguments.
$files = $controller->files();
$files->required('myFile')->array(); // $_FILES['myFile']Use method uploadedFiles to read the files as a map of PSR-7 UploadedFile instances.
$uploadedFiles = $controller->uploadedFiles();
$myFile = $uploadedFiles->get('myFile');Use ControllerException to throw errors at the controller layer.
use Chevere\Http\Controller;
use Chevere\Http\Exceptions\ControllerException;
class ResourceGet extends Controller
{
public function __invoke(): void
{
throw new ControllerException('Invalid request', 400);
}
}With ControllerException you can define a return property matching the controller acceptReturn context. This will enable to return a structured response to the client, while still throwing an exception.
use Chevere\Http\Attributes\Response;
use Chevere\Http\Controller;
use Chevere\Http\Exceptions\ControllerException;
use Chevere\Http\Header;
use Chevere\Http\Status;
use Chevere\Parameter\Interfaces\ArrayParameterInterface;
use function Chevere\Parameter\arrayp;
use function Chevere\Parameter\string;
class ResourceGet extends Controller
{
public function __invoke(): array
{
if($happyPath) {
return [
'message' => 'Your account is confirmed. You can now continue.',
'link' => [
'href' => '/apps',
'text' => 'Go to Apps ->',
],
];
}
throw new ControllerException(
'Verification link not found',
404,
return: [
'message' => 'The verification link may have expired, been already used, or is invalid.',
'link' => [
'href' => '/signup',
'text' => 'Return to Signup',
],
]
);
}
public static function acceptReturn(): ArrayParameterInterface
{
return arrayp(
message: string(),
link: arrayp(
href: string(),
text: string()
)
);
}
}Define PSR Middleware collections using middlewares function.
use function Chevere\Http\middlewares;
$middlewares = middlewares(
MiddlewareOne::class,
MiddlewareTwo::class
);Middleware priority goes from top to bottom, first in first out (FIFO).
Use MiddlewareNameWithArgumentsTrait to define Middleware with arguments:
use Chevere\Http\Interfaces\MiddlewareNameInterface;
use Chevere\Http\Traits\MiddlewareNameWithArgumentsTrait;
use Nyholm\Psr7\Factory\Psr17Factory;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
class AllowListMiddleware implements MiddlewareInterface
{
use MiddlewareNameWithArgumentsTrait;
private string $allowList;
public function setUp(string $allowList): void
{
$this->allowList = $allowList;
}
public static function with(string $allowList): MiddlewareNameInterface
{
return static::middlewareName(...get_defined_vars());
}
public function process(
ServerRequestInterface $request,
RequestHandlerInterface $handler,
): ResponseInterface {
if ($this->allowList === '') {
return $handler->handle($request);
}
$remoteAddress = $request->getServerParams()['REMOTE_ADDR'] ?? '';
if ($remoteAddress === '') {
return (new Psr17Factory())
->createResponse(
400,
'Unable to determine client IP address'
);
}
if (! isIpAllowed($remoteAddress, $this->allowList)) {
return (new Psr17Factory())
->createResponse(
403,
'Access denied from your IP address'
);
}
return $handler->handle($request);
}
}This allows to pass MiddlewareName with constructor arguments, as when defining routes:
$middlewareName = AllowListMiddleware::with('192.168.1.1');Use attributes to add context for Controller and Middleware. The context defined by the attributes is understood by the Router and Schwager packages, to hint status codes, headers and to generate HTTP API documentation.
Use the Description attribute to add a description explaining the purpose of a Controller or Middleware.
use Chevere\Http\Attributes\Description;
#[Description('This is a description')]
class ResourceGet extends ControllerUse function descriptionAttribute to read the Description attribute.
use function Chevere\Http\descriptionAttribute;
descriptionAttribute(ResourceGet::class);Use the Request attribute to define request metadata for a Controller or Middleware. It supports to define multiple Header arguments.
use Chevere\Http\Attributes\Request;
use Chevere\Http\Header;
use Chevere\Http\Controller;
#[Request(
new Header('Accept', 'application/json'),
new Header('Connection', 'keep-alive')
)]
class ResourceGet extends ControllerUse function requestAttribute to read the Request attribute.
use function Chevere\Http\requestAttribute;
requestAttribute(ResourceGet::class);Use the Response attribute to define response metadata for a Controller or Middleware. It supports to define Status and multiple Header arguments.
use Chevere\Http\Attributes\Response;
use Chevere\Http\Header;
use Chevere\Http\Controller;
#[Response(
new Status(200, error: 400),
new Header('Content-Disposition', 'attachment'),
new Header('Content-Type', 'application/json')
)]
class ResourceGet extends ControllerUse function responseAttribute to read the Response attribute.
use function Chevere\Http\responseAttribute;
responseAttribute(ResourceGet::class);Documentation is available at chevere.org/packages/http.
Copyright Rodolfo Berrios A.
Chevere is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.