4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-21 00:17:09 +00:00
AzuraCast/src/Middleware/HandleMultipartJson.php
2021-07-19 00:53:45 -05:00

57 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Middleware;
use JsonException;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
use const JSON_THROW_ON_ERROR;
/**
* When sending data using multipart forms (that also include uploaded files, for example),
* it isn't possible to encode JSON values (i.e. booleans) in the other submitted values.
*
* This allows an alternative body format, where the entirety of the JSON-parseable body is
* set in any multipart parameter, parsed, and then assigned to the "parsedBody"
* attribute of the PSR-7 request. This implementation is transparent to any controllers
* using this code.
*/
class HandleMultipartJson implements MiddlewareInterface
{
/**
* @param ServerRequestInterface $request
* @param RequestHandlerInterface $handler
*/
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
$parsedBody = $request->getParsedBody();
if (!empty($parsedBody)) {
$parsedBody = array_filter(
(array)$parsedBody,
static function ($value) {
return $value && 'null' !== $value;
}
);
if (1 === count($parsedBody)) {
$bodyField = current($parsedBody);
if (is_string($bodyField)) {
try {
$parsedBody = json_decode($bodyField, true, 512, JSON_THROW_ON_ERROR);
$request = $request->withParsedBody($parsedBody);
} catch (JsonException) {
}
}
}
}
return $handler->handle($request);
}
}