@@ -81,16 +81,29 @@ public function handle(Request $request, Closure $next): Response
81
81
$ jsonContent = json_encode ($ content );
82
82
83
83
if (in_array ('gzip ' , $ request ->getEncodings ()) && function_exists ('gzencode ' )) {
84
- $ level = 9 ; // best compression;
85
- $ jsonContent = gzencode ($ jsonContent , $ level );
84
+ $ level = 9 ; // Best compression.
85
+ $ compressedContent = gzencode ($ jsonContent , $ level );
86
+
87
+ // Create a new response object with compressed content.
88
+ $ response = new Response ($ compressedContent );
89
+
90
+ // Add necessary headers.
86
91
$ response ->headers ->add ([
87
- 'Content-type ' => 'application/json; charset=utf-8 ' ,
88
- 'Content-Length ' => strlen ($ jsonContent ),
92
+ 'Content-Type ' => 'application/json; charset=utf-8 ' ,
93
+ 'Content-Length ' => strlen ($ compressedContent ),
89
94
'Content-Encoding ' => 'gzip ' ,
90
95
]);
96
+
97
+ return $ response ; // Return the response object directly.
98
+ } else {
99
+ // Fallback for clients that do not support gzip.
100
+ $ response = new Response ($ jsonContent );
101
+ $ response ->headers ->add ([
102
+ 'Content-Type ' => 'application/json; charset=utf-8 ' ,
103
+ ]);
104
+
105
+ return $ response ;
91
106
}
92
- $ response ->setContent ($ jsonContent );
93
- return $ response ;
94
107
}
95
108
96
109
public function listenToDB (): void
0 commit comments