-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathEndpoint.php
More file actions
484 lines (376 loc) · 11.4 KB
/
Endpoint.php
File metadata and controls
484 lines (376 loc) · 11.4 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php
/**
* @package StartupAPI
* @subpackage API
*/
namespace StartupAPI\API;
require_once(__DIR__ . '/EndpointNameSpace.php');
// APIs Endpoints to be registered
require_once(__DIR__ . '/v1/User/Get.php');
require_once(__DIR__ . '/v1/Accounts.php');
require_once(__DIR__ . '/v1/Modules.php');
require_once(dirname(__DIR__) . '/AuthenticationModule.php');
/**
* StartupAPI API Endpoint class
*
* Root abstract class for API endpoints, should not be implemented directly
*
* @package StartupAPI
* @subpackage API
*/
abstract class Endpoint {
/**
* @var mixed[] Registered endpoints organized by method [namespace slug][method][endpoint_slug]
*/
protected static $endpoints_by_method = array();
/**
* @var mixed[] Registered endpoints organized by endpoint slug [namespace slug][endpoint_slug][method]
*/
protected static $endpoints_by_slug = array();
/**
* @var EndpointNameSpace[] Registered namespaces
*/
protected static $namespaces = array();
/**
* @var string Emdpoint slug to be used in URLs
*/
protected $slug;
/**
* @var string Description of the endpoint
*/
protected $description;
/**
* @var Parameter[] Associative array of name => type pairs that define parameters
*/
protected $params = array();
/**
* Registers endpoint in the system
*
* @param \StartupAPI\API\EndpointNameSpace $namespace Endpoint namespace
* @param string $method HTTP Method to work with
* @param self $endpoint Endpoint implementation
*/
public static function register(EndpointNameSpace $namespace, $method, self $endpoint) {
self::$namespaces[$namespace->getSlug()] = $namespace;
self::$endpoints_by_method[$namespace->getSlug()][$method][$endpoint->getSlug()] = $endpoint;
self::$endpoints_by_slug[$namespace->getSlug()][$endpoint->getSlug()][$method] = $endpoint;
}
/**
* Helper function that registers core API endoiunts in the system
*/
public static function registerCoreEndpoints() {
if (\UserConfig::$apiNamespace) {
self::register(\UserConfig::$apiNamespace, 'GET', new \StartupAPI\API\v1\User\Get());
self::register(\UserConfig::$apiNamespace, 'GET', new \StartupAPI\API\v1\Accounts());
self::register(\UserConfig::$apiNamespace, 'GET', new \StartupAPI\API\v1\Modules());
}
}
protected function __construct($slug, $description) {
$this->slug = $slug;
$this->description = $description;
}
/**
* @return string Returns endpoint's slug
*/
public function getSlug() {
return $this->slug;
}
/**
*
* @return string Description of the endpoint
*/
public function getDescription() {
return $this->description;
}
/**
* @return Parameter[] Associative array of name => type pairs that define parameters
*/
public function getParams() {
return $this->params;
}
/**
*
* @return mixed[] Returns registered endpoints organized by slug
*/
public static function getAllEndpointsBySlug() {
return self::$endpoints_by_slug;
}
/**
* Returns endpoint that corresponds to the (full) call slug
*
* @param string $method
* @param string $call_slug
*/
public static function getEndpoint($method, $call_slug) {
$parts = explode('/', $call_slug, 3);
if (!is_array($parts) || !isset($parts[1]) || !isset($parts[2])) {
throw new \StartupAPI\API\MalformedCallSlugException($call_slug);
}
$namespace_slug = $parts[1];
$endpoint_slug = $parts[2];
$endpoint_slug = "/$endpoint_slug";
if (!array_key_exists($namespace_slug, self::$endpoints_by_method)) {
throw new \StartupAPI\API\NamespaceNotFoundException($namespace_slug);
}
if (!array_key_exists($method, self::$endpoints_by_method[$namespace_slug])) {
throw new \StartupAPI\API\MethodNotAllowedException($method);
}
if (!array_key_exists($endpoint_slug, self::$endpoints_by_method[$namespace_slug][$method])) {
throw new \StartupAPI\API\CallNotFoundException($method, $call_slug);
}
return self::$endpoints_by_method[$namespace_slug][$method][$endpoint_slug];
}
/**
* @return EndpointNameSpace[] Returns registered namespaces
*/
public static function getNamespaces() {
return self::$namespaces;
}
/**
* Helper function to parse strings of parameters from query string or request body
*
* @param string $urlencoded_string URL-encoded string of parameters
* @param mixed[] $params Associative array of parameters to merge decoded values into
* @return mixed[] Associative array of parameters
*/
public static function parseURLEncoded($urlencoded_string, $params = array()) {
foreach (explode('&', $urlencoded_string) as $pair) {
$key_value = explode('=', $pair);
if (!is_array($key_value) || !isset($key_value[0]) || !isset($key_value[1])) {
continue;
}
$key = $key_value[0];
$value = $key_value[1];
$key = urldecode($key);
// support PHP arrays as well
if (substr($key, -2) == '[]') {
$key = substr($key, 0, strlen($key) - 2);
}
// if empty parameter name is passed, just ignore it
if ($key == '') {
continue;
}
$value = urldecode($value);
if (array_key_exists($key, $params)) {
// convert existing value to array if not an array yet
if (!is_array($params[$key])) {
$params[$key] = array($params[$key]);
}
$params[$key][] = $value;
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* Core method that implements the API Endpoint.
* Performs parameter type validation, needs to be overriden
* and called by all implementations.
*
* @param mixed[] $values Associative array of parameter values for this call
* @param string|null $raw_request_body Raw request body (for POST/PUT requests)
*
* @return mixed Returns a response PHP data structure
*/
protected function call($values, $raw_request_body = null) {
$missing_params = $this->params;
// check all passed parameters
foreach ($values as $name => $value) {
if (!array_key_exists($name, $this->params)) {
throw new UnknownParameterException($name);
}
if (!$this->params[$name]->validate($value)) {
throw new InvalidParameterValueException("Invalid parameter value for $name");
}
unset($missing_params[$name]);
}
// check if missing parameters are required
foreach ($missing_params as $key => $param) {
if (!$param->isOptional()) {
throw new RequiredParameterException($key);
}
}
}
}
abstract class AuthenticatedEndpoint extends Endpoint {
/**
* Performs authentication before processing the call, returns authenticated user object.
* Not supposed to be called directly, but subclasses can use this return value as a shortcut.
*
* @param mixed[] $values Associative array of parameter values for this call
* @return User Returns currently authenticated user
* @throws UnauthenticatedException
*/
protected function call($values, $raw_request_body = null) {
parent::call($values);
$user = \StartupAPI::getUser();
if (is_null($user)) {
throw new UnauthenticatedException();
}
return $user;
}
}
/*
* API Exceptions
*/
/**
* Root class for all API Exceptions
*/
class APIException extends \StartupAPIException {
}
/**
* Thrown when parameter value is invalid
*/
class InvalidParameterValueException extends APIException {
function __construct($message = "Invalid parameter value", $code = null, $previous = null) {
parent::__construct($message, $code, $previous);
}
}
abstract class BadRequestException extends APIException {
}
/**
* Thrown when we can't parse "call" parameter
*/
class MalformedCallSlugException extends APIException {
private $call_slug;
/**
* @param string $name Parameter name
* @param string $message Exception message
* @param int $code Exception code
* @param Exception $previous previous exception
*/
function __construct($call_slug, $message = "Malformed call slug") {
parent::__construct($message);
$this->call_slug = $call_slug;
$this->message = $message . ": $call_slug";
}
private function getCallSlug() {
return $this->call_slug;
}
}
abstract class BadParameterException extends BadRequestException {
}
/**
* Thrown when parameter is required
*/
class RequiredParameterException extends BadParameterException {
private $name;
/**
* @param string $name Parameter name
* @param string $message Exception message
* @param int $code Exception code
* @param Exception $previous previous exception
*/
function __construct($name, $message = "Parameter required", $code = null, $previous = null) {
parent::__construct($message, $code, $previous);
$this->name = $name;
$this->message = $message . ": $name";
}
private function getParameterName() {
return $this->name;
}
}
/**
* Thrown when parameter passed is not defined for endpoint
*/
class UnknownParameterException extends BadParameterException {
private $param_name;
function __construct($param_name, $message = "Unknown parameter") {
parent::__construct($message);
$this->param_name = $param_name;
$this->message = $message . ": $param_name";
}
private function getParameterName() {
return $this->param_name;
}
}
/**
* Thrown when no authentication provided when required
*/
class UnauthenticatedException extends APIException {
function __construct($message = "User not authenticated") {
parent::__construct($message, 401);
}
}
/**
* Thrown when user is authenticated, but not allowed to make a request
*/
class UnauthorizedException extends APIException {
function __construct($message = "Request forbidden") {
parent::__construct($message, 403);
}
}
/**
* Thrown when no endpoints accept HTTP method used
*/
class MethodNotAllowedException extends APIException {
private $method;
/**
* @param string $method HTTP Method
* @param string $message Exception message
* @param int $code Exception code
* @param Exception $previous previous exception
*/
function __construct($method = null, $message = "HTTP Method not allowed", $code = null, $previous = null) {
parent::__construct($message, $code, $previous);
$this->method = $method;
if (!is_null($this->method)) {
$this->message = $message . ": $method";
}
}
private function getMethod() {
return $this->method;
}
}
/**
* Abstract class for things that are not found
*/
abstract class NotFoundException extends APIException {
function __construct($message = "Not found") {
parent::__construct($message, 404);
}
}
/**
* Thrown when requested onject is not found
*/
class ObjectNotFoundException extends NotFoundException {
}
/**
* Thrown when API namespace is not found
*/
class NamespaceNotFoundException extends NotFoundException {
private $namespace_slug;
function __construct($namespace_slug, $message = "API Namespace not found") {
parent::__construct($message);
$this->namespace_slug = $namespace_slug;
$this->message = $message . ": $namespace_slug";
}
private function getNamespaceSlug() {
return $this->namespace_slug;
}
}
/**
* Thrown when there is no such endpoint (for a method used)
*/
class CallNotFoundException extends NotFoundException {
private $method;
private $call_slug;
/**
* @param string $method HTTP Method
* @param string $call_slug API call slug
* @param string $message Exception message
*/
function __construct($method, $call_slug, $message = "API call not found") {
parent::__construct($message);
$this->method = $method;
$this->call_slug = $call_slug;
$this->message = $message . ": $method $call_slug";
}
private function getMethod() {
return $this->method;
}
private function getCallSlug() {
return $this->call_slug;
}
}