]> granicus.if.org Git - php/commitdiff
Fixed bug #69953
authorChristoph M. Becker <cmbecker69@gmx.de>
Tue, 14 Jul 2015 09:09:03 +0000 (11:09 +0200)
committerNikita Popov <nikic@php.net>
Thu, 3 Mar 2016 18:22:38 +0000 (19:22 +0100)
Added support for MKCALENDAR request method in CLI web server.

NEWS
sapi/cli/php_http_parser.c
sapi/cli/php_http_parser.h
sapi/cli/tests/bug69655.phpt
sapi/cli/tests/bug69953.phpt [new file with mode: 0644]

diff --git a/NEWS b/NEWS
index 96bbcb66850c6d3d7cbe572f9ee44ec8089f43ff..cf0cb05082140d762263cd1f2fcdd9cca550d91c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,9 @@ PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2016, PHP 5.6.20
 
+- CLI Server:
+  . Fixed bug #69953 (Support MKCALENDAR request method). (Christoph)
+
 - Core:
   . Fixed bug #71596 (Segmentation fault on ZTS with date function
     (setlocale)). (Anatol)
index 73c6d4c1fe35d2c9d8b23bc0df9d7904e552d2ce..71730322e02eb19c11c1decceb6cc6b258c3c01d 100644 (file)
@@ -89,6 +89,7 @@ static const char *method_strings[] =
   , "LOCK"
   , "MKCOL"
   , "MOVE"
+  , "MKCALENDAR"
   , "PROPFIND"
   , "PROPPATCH"
   , "UNLOCK"
@@ -583,7 +584,7 @@ size_t php_http_parser_execute (php_http_parser *parser,
           case 'G': parser->method = PHP_HTTP_GET; break;
           case 'H': parser->method = PHP_HTTP_HEAD; break;
           case 'L': parser->method = PHP_HTTP_LOCK; break;
-          case 'M': parser->method = PHP_HTTP_MKCOL; /* or MOVE, MKACTIVITY, MERGE, M-SEARCH */ break;
+          case 'M': parser->method = PHP_HTTP_MKCOL; /* or MOVE, MKCALENDAR, MKACTIVITY, MERGE, M-SEARCH */ break;
           case 'N': parser->method = PHP_HTTP_NOTIFY; break;
           case 'O': parser->method = PHP_HTTP_OPTIONS; break;
           case 'P': parser->method = PHP_HTTP_POST; /* or PROPFIND or PROPPATCH or PUT */ break;
@@ -622,6 +623,8 @@ size_t php_http_parser_execute (php_http_parser *parser,
         } else if (parser->method == PHP_HTTP_MKCOL) {
           if (index == 1 && ch == 'O') {
             parser->method = PHP_HTTP_MOVE;
+          } else if (index == 3 && ch == 'A') {
+            parser->method = PHP_HTTP_MKCALENDAR;
           } else if (index == 1 && ch == 'E') {
             parser->method = PHP_HTTP_MERGE;
           } else if (index == 1 && ch == '-') {
index 31502e213af7b814a11ecd187a4ee2da0b0a8c94..f2e1246ca8675ebeed7e09abc91a00d688d23581 100644 (file)
@@ -88,6 +88,7 @@ enum php_http_method
   , PHP_HTTP_LOCK
   , PHP_HTTP_MKCOL
   , PHP_HTTP_MOVE
+  , PHP_HTTP_MKCALENDAR
   , PHP_HTTP_PROPFIND
   , PHP_HTTP_PROPPATCH
   , PHP_HTTP_UNLOCK
index 188b9c31eeaa9380c0923e9dc346af60f2ecccbb..73791c95d589d33a412963456650d249baa70a28 100644 (file)
@@ -10,7 +10,7 @@ include "skipif.inc";
 <?php
 include "php_cli_server.inc";
 php_cli_server_start();
-foreach (['MKCALENDAR', 'MKCO', 'MKCOLL', 'M'] as $method) {
+foreach (['MKCO', 'MKCOLL', 'M'] as $method) {
     $context = stream_context_create(['http' => ['method' => $method]]);
     // the following is supposed to emit a warning for unsupported methods
     file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context);
@@ -25,6 +25,3 @@ Warning: file_get_contents(http://localhost:8964): failed to open stream: HTTP r
 
 Warning: file_get_contents(http://localhost:8964): failed to open stream: HTTP request failed! HTTP/1.0 501 Not Implemented
  in %s on line %d
-
-Warning: file_get_contents(http://localhost:8964): failed to open stream: HTTP request failed! HTTP/1.0 501 Not Implemented
- in %s on line %d
diff --git a/sapi/cli/tests/bug69953.phpt b/sapi/cli/tests/bug69953.phpt
new file mode 100644 (file)
index 0000000..4de41fe
--- /dev/null
@@ -0,0 +1,17 @@
+--TEST--
+FR #69953 (Support MKCALENDAR request method)
+--INI--
+allow_url_fopen=1
+--SKIPIF--
+<?php
+include "skipif.inc";
+?>
+--FILE--
+<?php
+include "php_cli_server.inc";
+php_cli_server_start('echo $_SERVER["REQUEST_METHOD"];');
+$context = stream_context_create(['http' => ['method' => 'MKCALENDAR']]);
+var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context));
+?>
+--EXPECT--
+string(10) "MKCALENDAR"