forked from adminarchitect/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScaffolding.php
More file actions
executable file
·415 lines (356 loc) · 9.67 KB
/
Copy pathScaffolding.php
File metadata and controls
executable file
·415 lines (356 loc) · 9.67 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
<?php
namespace Terranet\Administrator;
use DaveJamesMiller\Breadcrumbs\BreadcrumbsManager;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Request;
use Illuminate\Support\Arr;
use Terranet\Administrator\Contracts\ActionsManager as ActionsManagerContract;
use Terranet\Administrator\Contracts\AutoTranslatable;
use Terranet\Administrator\Contracts\Filter as FiltersManagerContract;
use Terranet\Administrator\Contracts\Module;
use Terranet\Administrator\Contracts\Module\Filtrable;
use Terranet\Administrator\Contracts\Module\Sortable;
use Terranet\Administrator\Contracts\Services\Finder as FinderContract;
use Terranet\Administrator\Contracts\Services\TemplateProvider;
use Terranet\Administrator\Requests\UpdateRequest;
use Terranet\Administrator\Services\Breadcrumbs;
use Terranet\Administrator\Services\CrudActions;
use Terranet\Administrator\Services\Finder;
use Terranet\Administrator\Services\Saver;
use Terranet\Administrator\Services\Sorter;
use Terranet\Administrator\Services\Template;
use Terranet\Administrator\Traits\AutoTranslatesInstances;
use Terranet\Administrator\Traits\Module\AllowsNavigation;
use Terranet\Administrator\Traits\Module\HasColumns;
class Scaffolding implements Module, AutoTranslatable
{
use AllowsNavigation, HasColumns, AutoTranslatesInstances;
const PAGE_INDEX = 'index';
const PAGE_VIEW = 'view';
const PAGE_EDIT = 'edit';
/**
* The module Eloquent model class.
*
* @return string
*/
protected $model;
/**
* Breadcrumbs provider.
*
* @var Breadcrumbs
*/
protected $breadcrumbs = Breadcrumbs::class;
/**
* Service layer responsible for searching items.
*
* @var FinderContract
*/
protected $finder = Finder::class;
/**
* Service layer responsible for persisting request.
*
* @var Contracts\Services\Saver
*/
protected $saver = Saver::class;
/**
* Actions manager class.
*
* @var \Terranet\Administrator\Contracts\Services\CrudActions
*/
protected $actions = CrudActions::class;
/**
* View templates provider.
*
* @var TemplateProvider
*/
protected $template = Template::class;
/**
* Include or not columns of Date type in index listing.
*
* @var bool
*/
protected $includeDateColumns;
/**
* Global ACL Manager.
*
* @var mixed null
*/
protected $guard;
/** @var array */
protected static $methods = [];
/** @var Request */
protected $request;
/**
* Scaffolding constructor.
*
* @param AdminRequest $request
*/
public function __construct(AdminRequest $request)
{
if (null === $this->includeDateColumns) {
$this->includeDateColumns = $this->defaultIncludeDateColumnsValue();
}
$this->request = $request;
}
/**
* @param $method
* @param $arguments
* @return null|mixed
*/
public function __call($method, $arguments)
{
// Call user-defined method if exists.
if ($closure = Arr::get(static::$methods, $method)) {
return \call_user_func_array($closure, $arguments);
}
return null;
}
/**
* Extend functionality by adding new methods.
*
* @param $name
* @param $closure
* @throws Exception
*/
public static function addMethod($name, $closure)
{
if (!(new static())->hasMethod($name)) {
static::$methods[$name] = $closure;
}
}
/**
* Disable Actions column totally for Readonly Resources.
*
* @return bool
*/
public function readonly()
{
return false;
}
/**
* Check if method exists.
*
* @param $name
* @return bool
*/
public function hasMethod($name)
{
return method_exists($this, $name) || Arr::has(static::$methods, $name);
}
/**
* The module Templates manager.
*
* @return string
*/
protected function templateClassName(): string
{
if (class_exists($file = $this->getQualifiedClassNameOfType('Templates'))) {
return $file;
}
return $this->template;
}
public function template(): TemplateProvider
{
return once(function () {
// check for resource template
$handler = $this->templateClassName();
$handler = new $handler();
if (!$handler instanceof TemplateProvider) {
throw new Exception('Templates handler must implement '.TemplateProvider::class.' contract');
}
return $handler;
});
}
/**
* @return Model
* @throws \Exception
*/
public function model()
{
static $model = null;
if (null === $model && ($class = $this->getModelClass())) {
$model = new $class();
}
return $model;
}
/**
* @param $model
* @return $this
*/
public function setModel($model)
{
$this->model = $model;
return $this;
}
/**
* @return Request
*/
public function request()
{
return $this->request;
}
/**
* Define the class responsive for fetching items.
*
* @return string
*/
protected function finderClassName(): string
{
if (class_exists($file = $this->getQualifiedClassNameOfType('Finders'))) {
return $file;
}
return $this->finder;
}
/**
* @return mixed
*/
public function finder(): FinderContract
{
$className = $this->finderClassName();
return once(function () use ($className) {
$this->columns();
return new $className($this);
});
}
/**
* Filters & Scopes manager.
*
* @return Filter
*/
public function filter(): FiltersManagerContract
{
$filters = $scopes = null;
if ($this instanceof Filtrable) {
$filters = $this->filters();
$scopes = $this->scopes();
}
return new Filter($this->request(), $filters, $scopes);
}
/**
* @return Sorter
*/
public function sortableManager(): Sorter
{
return once(function () {
return new Sorter(
$this instanceof Sortable ? $this->sortable() : [],
method_exists($this, 'sortDirection') ? $this->sortDirection() : 'desc'
);
});
}
/**
* Define the class responsive for persisting items.
*
* @return string
*/
protected function saverClassName(): string
{
if (class_exists($file = $this->getQualifiedClassNameOfType('Savers'))) {
return $file;
}
return $this->saver;
}
/**
* Define the class responsive for persisting items.
*
* @param Model $eloquent
* @param UpdateRequest $request
* @return Contracts\Services\Saver
* @throws Exception
*/
public function saver(Model $eloquent, UpdateRequest $request): Contracts\Services\Saver
{
$className = $this->saverClassName();
$instance = new $className($eloquent, $request);
if (!$instance instanceof Contracts\Services\Saver) {
throw new Exception('Saver must implement '.Saver::class.' contract');
}
return $instance;
}
/**
* Breadcrumbs provider
* First parse Module doc block for provider declaration.
*
* @return mixed
*/
public function breadcrumbsClassName()
{
if (class_exists($file = $this->getQualifiedClassNameOfType('Breadcrumbs'))) {
return $file;
}
return $this->breadcrumbs;
}
/**
* Breadcrumbs service.
*
* @return Breadcrumbs
* @throws Exception
*/
public function breadcrumbs(): Breadcrumbs
{
if (!class_exists(BreadcrumbsManager::class)) {
throw new Exception('Please install `davejamesmiller/laravel-breadcrumbs:^5.2` package.');
}
$provider = $this->breadcrumbsClassName();
return new $provider(
app(BreadcrumbsManager::class), $this
);
}
/**
* Define the Actions provider - object responsive for
* CRUD operations, Export, etc...
* as like as checks action permissions.
*
* @return mixed
*/
public function actionsClassName()
{
if (class_exists($file = $this->getQualifiedClassNameOfType('Actions'))) {
return $file;
}
return $this->actions;
}
/**
* @return ActionsManager
* @throws Exception
*/
public function actions(): ActionsManagerContract
{
$handler = $this->actionsClassName();
$handler = new $handler($this, $this->request());
if (!$handler instanceof CrudActions) {
throw new Exception('Actions handler must implement '.CrudActions::class.' contract');
}
return new ActionsManager($handler, $this);
}
/**
* The module Eloquent model.
*
* @return mixed
* @throws \Exception
*/
protected function getModelClass()
{
return $this->model;
}
/**
* Get the full path to class of special type.
*
* @param $type
* @return string
*/
protected function getQualifiedClassNameOfType($type)
{
return app()->getNamespace()."Http\\Terranet\\Administrator\\{$type}\\".class_basename($this);
}
/**
* @return mixed
*/
protected function defaultIncludeDateColumnsValue()
{
return config(
"administrator.grid.timestamps.{$this->url()}",
config('administrator.grid.timestamps.enabled')
);
}
}