Parcourir la source

Merge pull request #1277 from Zwyx/add-header

Add response header `X-Uncompressed-Content-Length` for JSON API
El RIDO il y a 2 ans
Parent
commit
b75aee6834
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      lib/Controller.php

+ 2 - 0
lib/Controller.php

@@ -151,6 +151,8 @@ class Controller
             header('Access-Control-Allow-Origin: *');
             header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');
             header('Access-Control-Allow-Headers: X-Requested-With, Content-Type');
+            header('X-Uncompressed-Content-Length: ' . strlen($this->_json));
+            header('Access-Control-Expose-Headers: X-Uncompressed-Content-Length');
             echo $this->_json;
         } else {
             $this->_view();