This repository was archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathBaseController.php
528 lines (455 loc) · 11.7 KB
/
BaseController.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
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
<?php
namespace Arrilot\Api\Skeleton;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller as LaravelController;
use Illuminate\Support\Facades\Response;
use Illuminate\Support\Facades\Validator;
use League\Fractal\Manager;
use League\Fractal\Pagination\Cursor;
use League\Fractal\Resource\Collection;
use League\Fractal\Resource\Item;
use League\Fractal\Serializer\DataArraySerializer;
abstract class BaseController extends LaravelController
{
/**
* HTTP header status code.
*
* @var int
*/
protected $statusCode = 200;
/**
* Fractal Manager instance.
*
* @var Manager
*/
protected $fractal;
/**
* Eloquent model instance.
*
* @var \Illuminate\Database\Eloquent\Model;
*/
protected $model;
/**
* Fractal Transformer instance.
*
* @var \League\Fractal\TransformerAbstract
*/
protected $transformer;
/**
* Illuminate\Http\Request instance.
*
* @var Request
*/
protected $request;
/**
* Do we need to unguard the model before create/update?
*
* @var bool
*/
protected $unguard = false;
/**
* Number of items displayed at once if not specified.
* There is no limit if it is 0 or false.
*
* @var int|bool
*/
protected $defaultLimit = false;
/**
* Maximum limit that can be set via $_GET['limit'].
*
* @var int|bool
*/
protected $maximumLimit = false;
/**
* Resource key for an item.
*
* @var string
*/
protected $resourceKeySingular = 'data';
/**
* Resource key for a collection.
*
* @var string
*/
protected $resourceKeyPlural = 'data';
/**
* Constructor.
*
* @param Request $request
*/
public function __construct(Request $request)
{
$this->model = $this->model();
$this->transformer = $this->transformer();
$this->fractal = new Manager();
$this->fractal->setSerializer($this->serializer());
$this->request = $request;
if ($this->request->has('include')) {
$this->fractal->parseIncludes(camel_case($this->request->input('include')));
}
}
/**
* Eloquent model.
*
* @return \Illuminate\Database\Eloquent\Model
*/
abstract protected function model();
/**
* Transformer for the current model.
*
* @return \League\Fractal\TransformerAbstract
*/
abstract protected function transformer();
/**
* Serializer for the current model.
*
* @return \League\Fractal\Serializer\SerializerAbstract
*/
protected function serializer()
{
return new DataArraySerializer();
}
/**
* Display a listing of the resource.
* GET /api/{resource}.
*
* @return Response
*/
public function index()
{
$with = $this->getEagerLoad();
$skip = (int) $this->request->input('skip', 0);
$limit = $this->calculateLimit();
$items = $limit
? $this->model->with($with)->skip($skip)->limit($limit)->get()
: $this->model->with($with)->get();
return $this->respondWithCollection($items, $skip, $limit);
}
/**
* Store a newly created resource in storage.
* POST /api/{resource}.
*
* @return Response
*/
public function store()
{
$data = $this->request->json()->get($this->resourceKeySingular);
if (!$data) {
return $this->errorWrongArgs('Empty data');
}
$validator = Validator::make($data, $this->rulesForCreate());
if ($validator->fails()) {
return $this->errorWrongArgs($validator->messages());
}
$this->unguardIfNeeded();
$item = $this->model->create($data);
return $this->respondWithItem($item);
}
/**
* Display the specified resource.
* GET /api/{resource}/{id}.
*
* @param int $id
*
* @return Response
*/
public function show($id)
{
$with = $this->getEagerLoad();
$item = $this->findItem($id, $with);
if (!$item) {
return $this->errorNotFound();
}
return $this->respondWithItem($item);
}
/**
* Update the specified resource in storage.
* PUT /api/{resource}/{id}.
*
* @param int $id
*
* @return Response
*/
public function update($id)
{
$data = $this->request->json()->get($this->resourceKeySingular);
if (!$data) {
return $this->errorWrongArgs('Empty data');
}
$item = $this->findItem($id);
if (!$item) {
return $this->errorNotFound();
}
$validator = Validator::make($data, $this->rulesForUpdate($item->id));
if ($validator->fails()) {
return $this->errorWrongArgs($validator->messages());
}
$this->unguardIfNeeded();
$item->fill($data);
$item->save();
return $this->respondWithItem($item);
}
/**
* Remove the specified resource from storage.
* DELETE /api/{resource}/{id}.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
$item = $this->findItem($id);
if (!$item) {
return $this->errorNotFound();
}
$item->delete();
return response()->json(['message' => 'Deleted']);
}
/**
* Show the form for creating the specified resource.
*
* @return Response
*/
public function create()
{
return $this->errorNotImplemented();
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
*
* @return Response
*/
public function edit($id)
{
return $this->errorNotImplemented();
}
/**
* Getter for statusCode.
*
* @return int
*/
protected function getStatusCode()
{
return $this->statusCode;
}
/**
* Setter for statusCode.
*
* @param int $statusCode Value to set
*
* @return self
*/
protected function setStatusCode($statusCode)
{
$this->statusCode = $statusCode;
return $this;
}
/**
* Respond with a given item.
*
* @param $item
*
* @return mixed
*/
protected function respondWithItem($item)
{
$resource = new Item($item, $this->transformer, $this->resourceKeySingular);
$rootScope = $this->prepareRootScope($resource);
return $this->respondWithArray($rootScope->toArray());
}
/**
* Respond with a given collection.
*
* @param $collection
* @param int $skip
* @param int $limit
*
* @return mixed
*/
protected function respondWithCollection($collection, $skip = 0, $limit = 0)
{
$resource = new Collection($collection, $this->transformer, $this->resourceKeyPlural);
if ($limit) {
$cursor = new Cursor($skip, $skip + $limit, $collection->count());
$resource->setCursor($cursor);
}
$rootScope = $this->prepareRootScope($resource);
return $this->respondWithArray($rootScope->toArray());
}
/**
* Respond with a given array of items.
*
* @param array $array
* @param array $headers
*
* @return mixed
*/
protected function respondWithArray(array $array, array $headers = [])
{
return response()->json($array, $this->statusCode, $headers);
}
/**
* Response with the current error.
*
* @param string $message
*
* @return mixed
*/
protected function respondWithError($message)
{
return $this->respondWithArray([
'error' => [
'http_code' => $this->statusCode,
'message' => $message,
],
]);
}
/**
* Prepare root scope and set some meta information.
*
* @param Item|Collection $resource
*
* @return \League\Fractal\Scope
*/
protected function prepareRootScope($resource)
{
$resource->setMetaValue('available_includes', $this->transformer->getAvailableIncludes());
$resource->setMetaValue('default_includes', $this->transformer->getDefaultIncludes());
return $this->fractal->createData($resource);
}
/**
* Get the validation rules for create.
*
* @return array
*/
protected function rulesForCreate()
{
return [];
}
/**
* Get the validation rules for update.
*
* @param int $id
*
* @return array
*/
protected function rulesForUpdate($id)
{
return [];
}
/**
* Generate a Response with a 403 HTTP header and a given message.
*
* @param $message
*
* @return Response
*/
protected function errorForbidden($message = 'Forbidden')
{
return $this->setStatusCode(403)->respondWithError($message);
}
/**
* Generate a Response with a 500 HTTP header and a given message.
*
* @param string $message
*
* @return Response
*/
protected function errorInternalError($message = 'Internal Error')
{
return $this->setStatusCode(500)->respondWithError($message);
}
/**
* Generate a Response with a 404 HTTP header and a given message.
*
* @param string $message
*
* @return Response
*/
protected function errorNotFound($message = 'Resource Not Found')
{
return $this->setStatusCode(404)->respondWithError($message);
}
/**
* Generate a Response with a 401 HTTP header and a given message.
*
* @param string $message
*
* @return Response
*/
protected function errorUnauthorized($message = 'Unauthorized')
{
return $this->setStatusCode(401)->respondWithError($message);
}
/**
* Generate a Response with a 400 HTTP header and a given message.
*
* @param string$message
*
* @return Response
*/
protected function errorWrongArgs($message = 'Wrong Arguments')
{
return $this->setStatusCode(400)->respondWithError($message);
}
/**
* Generate a Response with a 501 HTTP header and a given message.
*
* @param string $message
*
* @return Response
*/
protected function errorNotImplemented($message = 'Not implemented')
{
return $this->setStatusCode(501)->respondWithError($message);
}
/**
* Specify relations for eager loading.
*
* @return array
*/
protected function getEagerLoad()
{
$include = camel_case($this->request->input('include', ''));
$includes = explode(',', $include);
$includes = array_filter($includes);
return $includes ?: [];
}
/**
* Get item according to mode.
*
* @param int $id
* @param array $with
*
* @return mixed
*/
protected function findItem($id, array $with = [])
{
if ($this->request->has('use_as_id')) {
return $this->model->with($with)->where($this->request->input('use_as_id'), '=', $id)->first();
}
return $this->model->with($with)->find($id);
}
/**
* Unguard eloquent model if needed.
*/
protected function unguardIfNeeded()
{
if ($this->unguard) {
$this->model->unguard();
}
}
/**
* Calculates limit for a number of items displayed in list.
*
* @return int
*/
protected function calculateLimit()
{
$limit = (int) $this->request->input('limit', $this->defaultLimit);
return ($this->maximumLimit && $this->maximumLimit < $limit) ? $this->maximumLimit : $limit;
}
}