Last active
August 19, 2020 11:51
-
-
Save firthous-dev/647b9cb13094399fad7eb54add1ea61e to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
| class GzipMiddleware | |
| { | |
| /** | |
| * Handle an incoming request. | |
| * | |
| * @param \Illuminate\Http\Request $request | |
| * @param \Closure $next | |
| * @return mixed | |
| */ | |
| public function handle($request, Closure $next) | |
| { | |
| $response = $next($request); | |
| $content = $response->content(); | |
| $data = gzencode($content, 9); | |
| return response($data)->withHeaders([ | |
| 'Access-Control-Allow-Origin' => '*', | |
| 'Access-Control-Allow-Methods'=> 'GET', | |
| 'Content-type' => 'application/json; charset=utf-8', | |
| 'Content-Length'=> strlen($data), | |
| 'Content-Encoding' => 'gzip' | |
| ]); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment