Skip to content

Commit 9a8cde0

Browse files
committedJan 15, 2018
added support for @patch method
1 parent b511953 commit 9a8cde0

File tree

4 files changed

+94
-2
lines changed

4 files changed

+94
-2
lines changed
 

‎README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PHP Platforms RESTFul Apis
1+
# PHP Platform's RESTFul Apis
22
This packages provides platform for writing RESTFul APIs in PHP
33

44
[![build status](https://gitlab.com/php-platform/restful/badges/master/build.svg)](https://gitlab.com/php-platform/restful/commits/master) [![coverage report](https://gitlab.com/php-platform/restful/badges/master/coverage.svg)](https://gitlab.com/php-platform/restful/commits/master)
@@ -30,9 +30,10 @@ This package provides a platform for creating such RESTFul APIs in PHP
3030
#### @Path
3131
Can be applied on service class or method , this denotes url path to reach that service-method
3232

33-
#### @GET @POST @PUT @HEAD @DELETE
33+
#### @GET @POST @PUT @PATCH @HEAD @DELETE
3434
Can be applied only on service method , denotes what http verb this method is capable of serving.
3535
A service method can have more than on of these Annotations
36+
If a service method has `@Path` annotation and has no HTTP methods , `@GET` is applied by default
3637

3738
#### @Consumes
3839
Cab be applied only on service method, specifies the data type of the request body

‎src/RESTFul/Routing/Build.php

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ private static function processClass($className){
9999
$PUTVerbAnnotation = "PUT";
100100
$HEADVerbAnnotation = "HEAD";
101101
$DELETEVerbAnnotation = "DELETE";
102+
$PATCHVerbAnnotation = "PATCH";
102103

103104

104105
$annotations = Annotation::getAnnotations($className);
@@ -122,6 +123,9 @@ private static function processClass($className){
122123
if(array_key_exists($PUTVerbAnnotation,$methodAnnotations)){
123124
$methodHTTPVerbs[] = $PUTVerbAnnotation;
124125
}
126+
if(array_key_exists($PATCHVerbAnnotation,$methodAnnotations)){
127+
$methodHTTPVerbs[] = $PATCHVerbAnnotation;
128+
}
125129
if(array_key_exists($DELETEVerbAnnotation,$methodAnnotations)){
126130
$methodHTTPVerbs[] = $DELETEVerbAnnotation;
127131
}

‎tests/RESTFul/ClientSide/TestRoute.php

+28
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,34 @@ function testPathParams(){
114114
$this->assertEquals('{"param1":"myParam1","param2":"myParam2"}', $response->getBody(true));
115115
}
116116

117+
function testHttpMethods(){
118+
$client = new Client();
119+
$request = $client->get(APP_DOMAIN.'/'.APP_PATH.'/test/route/method');
120+
$response = $client->send($request);
121+
$this->assertEquals('GET', $response->getBody(true));
122+
123+
$request = $client->post(APP_DOMAIN.'/'.APP_PATH.'/test/route/method');
124+
$response = $client->send($request);
125+
$this->assertEquals('POST', $response->getBody(true));
126+
127+
$request = $client->put(APP_DOMAIN.'/'.APP_PATH.'/test/route/method');
128+
$response = $client->send($request);
129+
$this->assertEquals('PUT', $response->getBody(true));
130+
131+
$request = $client->patch(APP_DOMAIN.'/'.APP_PATH.'/test/route/method');
132+
$response = $client->send($request);
133+
$this->assertEquals('PATCH', $response->getBody(true));
134+
135+
$request = $client->delete(APP_DOMAIN.'/'.APP_PATH.'/test/route/method');
136+
$response = $client->send($request);
137+
$this->assertEquals('DELETE', $response->getBody(true));
138+
139+
$request = $client->get(APP_DOMAIN.'/'.APP_PATH.'/test/route/method/default');
140+
$response = $client->send($request);
141+
$this->assertEquals('Default', $response->getBody(true));
142+
143+
}
144+
117145
function testResourceNotFound(){
118146
$client = new Client();
119147
$request = $client->get(APP_DOMAIN.'/'.APP_PATH.'/test/route/myParam1/path/myParam2/non-existant-resource');

‎tests/RESTFul/Services/TestRoute.php

+59
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use PhpPlatform\RESTFul\RESTService;
66
use PhpPlatform\RESTFul\HTTPResponse;
77
use PhpPlatform\Errors\Exceptions\Application\BadInputException;
8+
use PhpPlatform\RESTFul\HTTPRequest;
89

910
/**
1011
* @Path "/test/route"
@@ -60,4 +61,62 @@ function pathParams($request,$param1,$param2){
6061
return new HTTPResponse(200,'OK',array("param1"=>$param1,"param2"=>$param2));
6162
}
6263

64+
/**
65+
* @Path "/method"
66+
* @GET
67+
*
68+
* @param HTTPRequest $request
69+
*/
70+
function testHTTPMethodGET($request){
71+
return new HTTPResponse(200,'OK',"GET");
72+
}
73+
74+
/**
75+
* @Path "/method"
76+
* @POST
77+
*
78+
* @param HTTPRequest $request
79+
*/
80+
function testHTTPMethodPOST($request){
81+
return new HTTPResponse(200,'OK',"POST");
82+
}
83+
84+
/**
85+
* @Path "/method"
86+
* @PUT
87+
*
88+
* @param HTTPRequest $request
89+
*/
90+
function testHTTPMethodPUT($request){
91+
return new HTTPResponse(200,'OK',"PUT");
92+
}
93+
94+
/**
95+
* @Path "/method"
96+
* @PATCH
97+
*
98+
* @param HTTPRequest $request
99+
*/
100+
function testHTTPMethodPATCH($request){
101+
return new HTTPResponse(200,'OK',"PATCH");
102+
}
103+
104+
/**
105+
* @Path "/method"
106+
* @DELETE
107+
*
108+
* @param HTTPRequest $request
109+
*/
110+
function testHTTPMethodDELETE($request){
111+
return new HTTPResponse(200,'OK',"DELETE");
112+
}
113+
114+
/**
115+
* @Path "/method/default"
116+
*
117+
* @param HTTPRequest $request
118+
*/
119+
function testHTTPMethodDefault($request){
120+
return new HTTPResponse(200,'OK',"Default");
121+
}
63122
}

0 commit comments

Comments
 (0)