forked from ahmadnassri/restful-zend-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.php
82 lines (75 loc) · 2.14 KB
/
Controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* REST Controller default actions
*
*/
abstract class REST_Controller extends Zend_Controller_Action
{
/**
* The index action handles index/list requests; it should respond with a
* list of the requested resources.
*/
public function indexAction()
{
$this->notAllowed();
}
/**
* The get action handles GET requests and receives an 'id' parameter; it
* should respond with the server resource state of the resource identified
* by the 'id' value.
*/
public function getAction()
{
$this->notAllowed();
}
/**
* The post action handles POST requests; it should accept and digest a
* POSTed resource representation and persist the resource state.
*/
public function postAction()
{
$this->notAllowed();
}
/**
* The put action handles PUT requests and receives an 'id' parameter; it
* should update the server resource state of the resource identified by
* the 'id' value.
*/
public function putAction()
{
$this->notAllowed();
}
/**
* The delete action handles DELETE requests and receives an 'id'
* parameter; it should update the server resource state of the resource
* identified by the 'id' value.
*/
public function deleteAction()
{
$this->notAllowed();
}
/**
* The head action handles HEAD requests; it should respond with an
* identical response to the one that would correspond to a GET request,
* but without the response body.
*/
public function headAction()
{
$this->_forward('get');
}
/**
* The options action handles OPTIONS requests; it should respond with
* the HTTP methods that the server supports for specified URL.
*/
public function optionsAction()
{
$this->_response->setBody(null);
$this->_response->setHeader('Allow', $this->_response->getHeaderValue('Access-Control-Allow-Methods'));
$this->_response->ok();
}
protected function notAllowed()
{
$this->_response->setBody(null);
$this->_response->notAllowed();
}
}