Ejemplo n.º 1
0
 public function setResponse($response)
 {
     if ($response instanceof Aspamia_Http_Response) {
         $this->_response = $response;
     } else {
         $this->_response = Aspamia_Http_Response::fromString($response);
     }
 }
Ejemplo n.º 2
0
 /**
  * Handle the request
  *
  * @param  Aspamia_Http_Request $request
  * @return Aspamia_Http_Response
  */
 public function handle(Aspamia_Http_Request $request)
 {
     if (!$this->_config['handler']) {
         require_once 'Aspamia/Http/Server/Handler/Exception.php';
         throw new Aspamia_Http_Server_Handler_Exception("No CGI handler was set");
     }
     if (isset($this->_config['document_root'])) {
         $document_root = $this->_config['document_root'];
     } else {
         $document_root = getcwd();
     }
     // Parse the URI
     $urlInfo = parse_url($request->getUri());
     // Build the translated path
     $script_path = rtrim($document_root, '/') . (isset($this->_config['handler_script']) ? '/' . ltrim($this->_config['handler_script']) : $urlInfo['path']);
     // Set up the environment
     $environment = array('SERVER_SOFTWARE ' => 'Aspamia/' . Aspamia_Http_Server::ASPAMIA_VERSION, 'SERVER_NAME' => $request->getLocalAddress(), 'SERVER_PROTOCOL' => 'HTTP/' . $request->getHttpVersion(), 'SERVER_PORT' => $this->_server->getConfig('bind_port'), 'DOCUMENT_ROOT' => $document_root, 'GATEWAY_INTERFACE' => 'CGI/1.1', 'REQUEST_METHOD' => $request->getMethod(), 'REQUEST_URI' => $request->getUri(), 'PATH_INFO' => $request->getUri(), 'PATH_TRANSLATED' => $script_path, 'SCRIPT_NAME' => $urlInfo['path'], 'REMOTE_ADDR' => $request->getRemoteAddress(), 'CONTENT_TYPE' => $request->getHeader('content-type'), 'CONTENT_LENGTH' => $request->getHeader('content-length'), 'PATH' => getenv('PATH'));
     if (isset($urlInfo['query'])) {
         $environment['QUERY_STRING'] = $urlInfo['query'];
     }
     // Add the HTTP headers to the environment
     $headers = $request->getAllHeaders();
     unset($headers['content-type'], $headers['content-length']);
     foreach ($headers as $header => $value) {
         $key = 'HTTP_' . strtoupper(strtr($header, '-', '_'));
         $environment[$key] = $value;
     }
     // Open the CGI handler process
     $cgi_proc = proc_open($this->_config['handler'], array(array('pipe', 'r'), array('pipe', 'w'), array('file', '/tmp/cgi-error.log', 'a')), $pipes, null, $environment);
     if (!$cgi_proc) {
         require_once 'Aspamia/Http/Server/Handler/Exception.php';
         throw new Aspamia_Http_Server_Handler_Exception("Unable to run CGI handler");
     }
     // Write body, if any, to the CGI STDIN
     fwrite($pipes[0], $request->getBody());
     fclose($pipes[0]);
     // Read the response headers
     $headerlines = Aspamia_Http_Message::readHeaders($pipes[1]);
     if (empty($headerlines)) {
         $headers = array('content-type' => 'text/plain', 'x-aspamia-message' => 'missing-cgi-headers');
         $code = 200;
         $message = 'Ok';
         $httpVersion = $request->getHttpVersion();
         $response = new Aspamia_Http_Response($code, $headerlines, '', $httpVersion, $message);
     } else {
         if (strpos($headerlines[0], 'HTTP/') === 0) {
             // Got a status line, use it
             $statusLine = explode(' ', array_shift($headerlines), 3);
             if (!count($statusLine) == 3) {
                 require_once 'Aspamia/Http/Server/Handler/Exception.php';
                 throw new Aspamia_Http_Server_Handler_Exception("Unable to read status line from CGI handler");
             }
             $code = (int) $statusLine[1];
             $message = $statusLine[2];
             $httpVersion = substr($statusLine[0], 5);
             $response = new Aspamia_Http_Response($code, $headerlines, '', $httpVersion, $message);
         } else {
             $response = new Aspamia_Http_Response(200, $headerlines, '', $request->getHttpVersion());
             if ($status = $response->getHeader('status')) {
                 $status = explode(' ', $status);
                 if (isset($status[0])) {
                     $response->setStatus((int) $status[0]);
                 }
                 if (isset($status[1])) {
                     $response->setMessage($status[1]);
                 }
                 $response->setHeader('status', false);
             }
         }
     }
     // Read the response body
     $body = stream_get_contents($pipes[1]);
     fclose($pipes[1]);
     // Close CGI process
     proc_close($cgi_proc);
     // Create the status line
     $response->setBody($body);
     $response->setHeader('content-length', strlen($body));
     return $response;
 }
Ejemplo n.º 3
0
 /**
  * Test that we can get / set the HTTP version
  * 
  */
 public function testSetGetVersion()
 {
     // Test that the default version is 1.1
     $response = new Aspamia_Http_Response(200, array());
     $this->assertEquals('1.1', $response->getHttpVersion());
     // Test that we can set the version to 1.0
     $response->setHttpVersion('1.0');
     $this->assertEquals('1.0', $response->getHttpVersion());
 }
Ejemplo n.º 4
0
 /**
  * Called before the response is sent. The response object is passed in
  *
  * @param Aspamia_Http_Response $response
  */
 public function preResponse(Aspamia_Http_Response $response)
 {
     $bodySize = $response->getHeader('content-length');
     $this->_log->info("Response: {$response->getStatus()} {$response->getMessage()}, {$bodySize} bytes of data");
 }