Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 compress 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?

like image 655
Moak Avatar asked Oct 19 '25 05:10

Moak


1 Answers

For gzipped content you need to use gzdecode().

$decompressed = gzdecode($request->getContent());

This is built-in on PHP.

gzinflate() deals with deflated (not gzipped) and gzuncompress() with compresed (not gzipped) strings.

Docs:

  • gzinflate
  • gzuncompress
  • gzdecode
like image 112
yivi Avatar answered Oct 20 '25 20:10

yivi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!