* This file is part of the ManageWP Worker plugin.
* (c) ManageWP LLC <contact@managewp.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
class MWP_Http_Response implements MWP_Http_ResponseInterface
* Status codes translation table.
* The list of codes is complete according to the
* {@link http://www.iana.org/assignments/http-status-codes/ Hypertext Transfer Protocol (HTTP) Status Code Registry}
* (last updated 2012-02-13).
* Unless otherwise noted, the status code is defined in RFC2616.
public static $statusTexts = array(
101 => 'Switching Protocols',
102 => 'Processing', // RFC2518
203 => 'Non-Authoritative Information',
206 => 'Partial Content',
207 => 'Multi-Status', // RFC4918
208 => 'Already Reported', // RFC5842
226 => 'IM Used', // RFC3229
300 => 'Multiple Choices',
301 => 'Moved Permanently',
307 => 'Temporary Redirect',
308 => 'Permanent Redirect', // RFC7238
402 => 'Payment Required',
405 => 'Method Not Allowed',
407 => 'Proxy Authentication Required',
408 => 'Request Timeout',
411 => 'Length Required',
412 => 'Precondition Failed',
413 => 'Request Entity Too Large',
414 => 'Request-URI Too Long',
415 => 'Unsupported Media Type',
416 => 'Requested Range Not Satisfiable',
417 => 'Expectation Failed',
418 => 'I\'m a teapot', // RFC2324
422 => 'Unprocessable Entity', // RFC4918
423 => 'Locked', // RFC4918
424 => 'Failed Dependency', // RFC4918
425 => 'Reserved for WebDAV advanced collections expired proposal', // RFC2817
426 => 'Upgrade Required', // RFC2817
428 => 'Precondition Required', // RFC6585
429 => 'Too Many Requests', // RFC6585
431 => 'Request Header Fields Too Large', // RFC6585
500 => 'Internal Server Error',
501 => 'Not Implemented',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported',
506 => 'Variant Also Negotiates (Experimental)', // RFC2295
507 => 'Insufficient Storage', // RFC4918
508 => 'Loop Detected', // RFC5842
510 => 'Not Extended', // RFC2774
511 => 'Network Authentication Required', // RFC6585
protected $headers = array();
public function __construct($content, $statusCode = 200, array $headers = array())
$this->content = $content;
$this->statusCode = $statusCode;
$this->headers = array_change_key_case($headers, CASE_LOWER);
public function getContentAsString()
public function setContent($content)
$this->content = $content;
public function getContent()
// Some plugins leave open buffers and when it happens the returned output is blank
$bufferCount = count(ob_list_handlers());
if ($this instanceof MWP_Http_StreamingResponseInterface) {
$stream = $this->createResponseStream();
ini_set('display_errors', false);
while (!$stream->eof()) {
print $stream->read(1048576);
print $this->getContentAsString();
protected function sendHeaders()
if (function_exists('header_remove')) {
header_remove('Location');
if (isset($_SERVER['SERVER_PROTOCOL']) && $_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.0') {
if (isset(self::$statusTexts[$this->statusCode])) {
header(sprintf('%s %s %s', $protocol, $this->statusCode, self::$statusTexts[$this->statusCode]), true, $this->statusCode);
foreach ($this->headers as $headerName => $headerValue) {
header(sprintf('%s: %s', $headerName, $headerValue), false, $this->statusCode);