mercredi 27 mars 2019

How to decompress a gzip request PHP/Lumen/Laravel?

I am receiving requests from a third party that are gzip encoded text (~1mb so it makes sense)

my test route:

$router->post(
    'testgzip',
    function (\Illuminate\Http\Request $request) {
        $decompressed = null;
        if ($request->header('content-encoding') === 'gzip') {
            $decompressed = gzinflate($request->getContent());
        }

        return [
            'body' => $decompressed ?? $request->getContent(),
        ];
    }
);

my test file test.txt

hello world!

My sanity check:

curl --data-binary @test.txt -H "Content-Type: text/plain" -X POST http://localhost:8000/testgzip 
{"body":"hello world!"}    

To comporess it I run the command gzip test.txt My curl:

curl --data-binary @test.txt.gz -H "Content-Type: text/plain" -H "Content-Encoding: gzip" -X POST http://localhost:8000/testgzip


Which triggers a

gzinflate(): data error

I also tried gzuncompress which triggers

gzuncompress(): data error

What am I doing wrong? How can I decompress a gzip request?



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2uwS92G
via IFTTT

Aucun commentaire:

Enregistrer un commentaire