-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRframe_StaticResource.php
204 lines (170 loc) · 5.16 KB
/
Rframe_StaticResource.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<?php
/*******************************************************************************
*
* Copyright (c) 2011, Ryan Cavis
* All rights reserved.
*
* This file is part of the rframe project <http://code.google.com/p/rframe/>
*
* Rframe is free software: redistribution and use with or without
* modification are permitted under the terms of the New/Modified
* (3-clause) BSD License.
*
* Rframe is provided as-is, without ANY express or implied warranties.
* Implied warranties of merchantability or fitness are disclaimed. See
* the New BSD License for details. A copy should have been provided with
* rframe, and is also at <http://www.opensource.org/licenses/BSD-3-Clause/>
*
******************************************************************************/
/**
* Static resource that always throws Rframe_Exceptions. The code/message of
* the exceptions can be altered through the public $code and $message
* properties.
*
* @version 0.1
* @author ryancavis
* @package default
*/
class Rframe_StaticResource extends Rframe_Resource {
// allow ALL methods
protected $ALLOWED = array('create', 'query', 'fetch', 'update', 'delete');
// public exception code and message
public $code = Rframe::OKAY;
public $message = '';
/**
* Override to always return an exception.
*
* @param mixed $mixed
* @param string $method
* @param string $uuid (optional)
* @return array $response
*/
protected function format($mixed, $method, $uuid=null) {
return array(
'success' => $this->code >= Rframe::OKAY,
'message' => $this->message,
'code' => $this->code,
);
}
/**
* Override to throw an exception first.
*
* @param array $data
* @return array $response
*/
public function create($data) { return $this->format(null, null); }
/**
* Override to throw an exception first.
*
* @param array $args
* @return array $response
*/
public function query($args) { return $this->format(null, null); }
/**
* Override to throw an exception first.
*
* @param string $uuid
* @return array $response
*/
public function fetch($uuid) { return $this->format(null, null); }
/**
* Override to throw an exception first.
*
* @param string $uuid
* @param array $data
* @return array $response
*/
public function update($uuid, $data) { return $this->format(null, null); }
/**
* Override to throw an exception first.
*
* @param string $uuid
* @return array $response
*/
public function delete($uuid) { return $this->format(null, null); }
/**
* Helper function to throw the exception.
*
* @throws Rframe_Exception
*/
protected function exception() {
throw new Rframe_Exception($this->code, $this->message);
}
/**
* Create a new record at this resource. If the record cannot be created,
* an appropriate Exception should be thrown.
*
* @throws Rframe_Exception
* @param array $data
* @return string $uuid
*/
protected function rec_create($data) {
return $this->exception();
}
/**
* Query this resource for an array of records. If the query cannot be
* executed, an appropriate Exception should be thrown.
*
* @throws Rframe_Exception
* @param array $args
* @return array $records
*/
protected function rec_query($args) {
return $this->exception();
}
/**
* Fetch a single record at this resource. If the record cannot be fetched
* or viewed, an appropriate Exception should be thrown.
*
* @throws Rframe_Exception
* @param string $uuid
* @return mixed $record
*/
protected function rec_fetch($uuid) {
return $this->exception();
}
/**
* Update a record at this resource. The record was found using the
* rec_fetch() function. If the record cannot be updated, an appropriate
* Exception should be thrown.
*
* @throws Rframe_Exception
* @param mixed $record
* @param array $data
*/
protected function rec_update($record, $data) {
$this->exception();
}
/**
* Delete a record at this resource. The record was found using the
* rec_fetch() function. If the record cannot be deleted, an appropriate
* Exception should be thrown.
*
* @throws Rframe_Exception
* @param mixed $record
*/
protected function rec_delete($record) {
$this->exception();
}
/**
* Format a record into an array, to be used as the 'radix' of the response
* object.
*
* @param mixed $record
* @return array $radix
*/
protected function format_radix($record) {
return $this->exception();
}
/**
* Format metadata describing this resource for the 'meta' part of the
* response object.
*
* @param mixed $mixed
* @param string $method
* @return array $meta
*/
protected function format_meta($mixed, $method) {
return $this->exception();
}
}