rfc:http-interface

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
rfc:http-interface [2014/10/30 18:06] – created googleguyrfc:http-interface [2014/10/31 03:19] googleguy
Line 1: Line 1:
 ====== PHP RFC: Standardized PHP Http Interface ====== ====== PHP RFC: Standardized PHP Http Interface ======
-  * Version: 0.1+  * Version: 0.2
   * Date: 2014-10-30   * Date: 2014-10-30
   * Author: Sherif Ramadan, googleguy@php.net   * Author: Sherif Ramadan, googleguy@php.net
Line 9: Line 9:
  
 ===== Introduction ===== ===== Introduction =====
-This RFC proposes creating one standard HTTP interface in PHP core that users can implement in their own PHP code to utilize HTTP request and response capabilities and discard the superglobal $_GET, $_POST, $_COOKIE, $_FILES, $_SERVER variables. Along with the interface a base HttpRequest and HttpResponse classes should be packaged with PHP so that users can extend or override such default behavior at will and with efficiency. If the user does not chose to implement their own HTTP classes using the HTTP interface then default behavior is relied upon by PHP.+This RFC proposes creating two standard HTTP interfaces in PHP core that users can implement in their own PHP code to utilize HTTP request and response capabilities and discard the superglobal $_GET, $_POST, $_COOKIE, $_FILES, $_SERVER variables. Along with the interfaces a base HttpRequest and HttpResponse classes should be packaged with PHP so that users can extend or override such default behavior at will and with efficiency. If the user does not chose to implement their own HTTP classes using the HTTP interfaces then default behavior is relied upon by PHP (//i.e. no backwards incompatible changes//).
  
 ===== Proposal ===== ===== Proposal =====
-This RFC proposes creating one standard Http interface in PHP core along with two base classes: HttpRequest and HttpResponse that handle all incoming and outgoing HTTP messages through a unified interface.+This RFC proposes creating two standard Http interfaces (**HttpMessageReceive** and **HttpMessageSend**) in PHP core along with two base classes: **HttpRequest** and **HttpResponse** that handle all incoming and outgoing HTTP messages through a unified set of interfaces.
  
 The ultimate goal of this proposal is to make HTTP message handling in PHP ubiquitous and conforming. Superglobal variables such as $_POST and $_GET are great, but they do not address many of the concerns that current web users are dealing with today such as RESTful APIs. Some RESTful APIs might rely on PUT and DELETE HTTP verbs (methods) to handle certain requests and PHP does not make dealing with such requests intuitive. So some users requested $_PUT and $_DELETE superglobals to be added to the list. However, this RFC does not propose such features. Instead, it is proposed to rid PHP of the super global variables entirely and make HTTP message processing a standard interface that can be implement by the user in any way they deem fit. The ultimate goal of this proposal is to make HTTP message handling in PHP ubiquitous and conforming. Superglobal variables such as $_POST and $_GET are great, but they do not address many of the concerns that current web users are dealing with today such as RESTful APIs. Some RESTful APIs might rely on PUT and DELETE HTTP verbs (methods) to handle certain requests and PHP does not make dealing with such requests intuitive. So some users requested $_PUT and $_DELETE superglobals to be added to the list. However, this RFC does not propose such features. Instead, it is proposed to rid PHP of the super global variables entirely and make HTTP message processing a standard interface that can be implement by the user in any way they deem fit.
  
-This greatly reduces the need to change core PHP for any form of edge cases that may rely on processing HTTP messages differently and improves the flexibility and extensibility of PHP's built-in message processing facilities.+This greatly reduces the need to change core PHP for any form of edge cases that may rely on processing HTTP messages differently and improves the flexibility and extensibility of PHP's built-in message processing facilities. Further more, this removes the inefficiencies of reusing/reinitializing GPC variables in custom HttpRequest or HttpResponse classes. Additional benefits can be found in the filtering or validating of data through custom callbacks defined in the implementing class. 
 + 
 +===== Interface Definitions ===== 
 + 
 +The following are the interface definitions required by the implementing classes... 
 + 
 +<code php> 
 +abstract class HttpMessage 
 +
 +    protected $headers = array(); 
 +    protected $body = ""; 
 +    protected $version = 1.0; 
 +    protected $message; 
 +
 + 
 +interface HttpMessageReceive 
 +
 + 
 +    public function receiveMessage($message); 
 +    public function parseMessage(); 
 +    public function parseParameters(); 
 +    public function decodeBody(); 
 +    public function onReceive(); 
 + 
 +
 + 
 +interface HttpMessageSend 
 +
 + 
 +    public function sendMessage($message); 
 +    public function composeMessage(); 
 +    public function encodeBody(); 
 +    public function onSend(); 
 + 
 +
 +</code> 
 + 
 +So an implementing class could look something like this... 
 + 
 +<code php> 
 +class HttpRequest extends HttpMessage implements HttpMessageReceive 
 +
 + 
 +    protected $parameters = array(); 
 +    protected $method, $requestURI, $host; 
 + 
 +    public function receiveMessage($message) 
 +    { 
 +        $this->message = $message; 
 +        $this->onReceive(); 
 +        $this->parseMessage(); 
 +        $this->parseParameters(); 
 +        $this->decodeBody(); 
 +    } 
 + 
 +    public function parseMessage() 
 +    { 
 +        // implement message parsing here 
 +        list($header, $body) = explode("\r\n\r\n", $this->message, 2) + array(null, null); 
 +        $this->body = $body; 
 +        $headers = explode("\r\n", $header); 
 +        $header = array_shift($headers); 
 +        list($this->method, $this->requestURI, $this->version) = explode(" ", $header, 3) + array(null, null, $this->version); 
 +        $this->version = (float) ltrim(substr($this->version, strpos($this->version, "/")), "/"); 
 +        foreach($headers as $h) { 
 +            list($key, $value) = explode(":", $h, 2) + array(null, null); 
 +            if ($key === null) { 
 +                throw new Exception("Empty header field in message!"); 
 +            } 
 +            $this->headers[$key] = trim($value); 
 +        } 
 +    } 
 + 
 +    public function parseParameters()         
 +    { 
 +        // implement parameter parsing method here 
 +    } 
 + 
 +    public function decodeBody()         
 +    { 
 +        // implement message body decoding here 
 +    } 
 + 
 +    public function onReceive()         
 +    { 
 +        // implement on receive hook here 
 +    } 
 + 
 +
 +</code>
  
 ===== Backward Incompatible Changes ===== ===== Backward Incompatible Changes =====
-Superglobal variables including $_GET, $_POST$_FILES, $_COOKIE, and $_SERVER will be removedPHP will no longer automatically parse incoming HTTP request bodies during request initialization. Instead, request bodies will be lazy loaded by the interface and handled directly by implementing objects.+The default base class for HttpRequest will implement the existing behavior by populating GPC variables for nowwhich will leave no backwards incompatible changes in the languageThe changes to GPC that affect this proposal are that they will no longer be populated by the Request itself, but left up to the implementing HttpRequest class. Thus users extending the class will be able to override the default behavior (leaving GPC unused if they see fit).
  
 ===== Proposed PHP Version(s) ===== ===== Proposed PHP Version(s) =====
Line 50: Line 139:
  
 ===== Proposed Voting Choices ===== ===== Proposed Voting Choices =====
-Language change. Requires 2/3 majority vote.+Not a language change. Requires 50%+1 vote majority.
  
 ===== Patches and Tests ===== ===== Patches and Tests =====
Line 59: Line 148:
  
 ===== References ===== ===== References =====
-https://bugs.php.net/bug.php?id=55815+    * https://bugs.php.net/bug.php?id=55815 
 +    * https://gist.github.com/srgoogleguy/f729053e3e88b2d2b3ec - //Sample interface and implementation//
  
  
 ===== Rejected Features ===== ===== Rejected Features =====
- 
rfc/http-interface.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1