Created
February 22, 2020 20:58
Pretty Print By Default in Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Http\JsonResponse; | |
class PrettyPrintMiddleware | |
{ | |
private const QUERY_PARAMETER = 'pretty'; | |
/** | |
* Handle an incoming request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Closure $next | |
* @return mixed | |
*/ | |
public function handle($request, Closure $next) | |
{ | |
$response = $next($request); | |
if ($response instanceof JsonResponse) { | |
if (!$request->query(self::QUERY_PARAMETER) || $request->query(self::QUERY_PARAMETER) == 'true') { | |
$response->setEncodingOptions(JSON_PRETTY_PRINT); | |
} | |
} | |
return $response; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment