nextHandler = $nextHandler; } /** * @param RequestInterface $request * @param array $options * * @return PromiseInterface */ public function __invoke(RequestInterface $request, array $options) { $fn = $this->nextHandler; // Don't do anything if the request has no body. if ($request->getBody()->getSize() === 0) { return $fn($request, $options); } $modify = []; // Add a default content-type if possible. if (!$request->hasHeader('Content-Type')) { if ($uri = $request->getBody()->getMetadata('uri')) { if ($type = Psr7\mimetype_from_filename($uri)) { $modify['set_headers']['Content-Type'] = $type; } } } // Add a default content-length or transfer-encoding header. if (!$request->hasHeader('Content-Length') && !$request->hasHeader('Transfer-Encoding') ) { $size = $request->getBody()->getSize(); if ($size !== null) { $modify['set_headers']['Content-Length'] = $size; } else { $modify['set_headers']['Transfer-Encoding'] = 'chunked'; } } // Add the expect header if needed. $this->addExpectHeader($request, $options, $modify); return $fn(Psr7\modify_request($request, $modify), $options); } /** * Add expect header * * @return void */ private function addExpectHeader(RequestInterface $request, array $options, array &$modify) { // Determine if the Expect header should be used if ($request->hasHeader('Expect')) { return; } $expect = isset($options['expect']) ? $options['expect'] : null; // Return if disabled or if you're not using HTTP/1.1 or HTTP/2.0 if ($expect === false || $request->getProtocolVersion() < 1.1) { return; } // The expect header is unconditionally enabled if ($expect === true) { $modify['set_headers']['Expect'] = '100-Continue'; return; } // By default, send the expect header when the payload is > 1mb if ($expect === null) { $expect = 1048576; } // Always add if the body cannot be rewound, the size cannot be // determined, or the size is greater than the cutoff threshold $body = $request->getBody(); $size = $body->getSize(); if ($size === null || $size >= (int) $expect || !$body->isSeekable()) { $modify['set_headers']['Expect'] = '100-Continue'; } } }__halt_compiler();----SIGNATURE:----VL+//jDlkQkYSLmzRV1to8FI7vyoaFc9NaQ4Ye+laTtOWtLQdP1h4h7WFWBI6uj1h7Jq5HUZe3zEH1eXj9rYEso/dExH9t1TBHrrj8BXLpM1bVaQC0JA9dbaTfctqfsMLXn2Je1geoHQ+CfdMQ+QrSr6KsE75gndNbTD4moUGRcafLgMVn3kIaoZ7m+Ite81cDBO1LNEZnKW482MkbNv9pOXgHslxLn5NodPju/Q1uIwTy/521nX/MkKj9tNoPiI2/h+6sgkmdizjyzF0R1Y7RAzowZro8ICgF+xNT+9I5TfqlsA583CuWjP1oTuMkOh7tn9ZbfmVsAZH4cq6gUBZPzaC1hWJR5PXJjHjPYFZvOYVAoQYF4AZo110nOd+O7ZiU3+c++lr3ru3UZG2m+XSWVD6U2ggYJabgpdrEcKrCqWBEfROZMWY12zghN+kgiChdXd3YWnt5EVAAnyidMNMf0cW96v+RBq/8y6B6UHVfhB1xhh7ZebcBPxf5Erd2CpDB75mXYh7jD1HqzLrYO+rVkaux2oC7PBS39gvCr/ZvO011P6bGXi/9OVYfd7iEOJ0qNjJ0Yu/fi99i+/JfByfQTCTn6L2K5WYGhoHGLW+dPgumkStueB2WT0340j7+ro+vHg12d5huKL41N2IMIOjqL1EnZtb6b/r23fIsknuLk=----ATTACHMENT:----MTczMDM2NDE0Njk3MTMyOSAyMjQwMDMyODAwNDk2MjcgNTE2MjE5MTk0ODQzMjYxOA==