1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace EloquentJs\ScriptGenerator\Model; |
4
|
|
|
|
5
|
|
|
use EloquentJs\Model\AcceptsEloquentJsQueries; |
6
|
|
|
|
7
|
|
|
class Inspector |
8
|
|
|
{ |
9
|
|
|
/** |
10
|
|
|
* @var array |
11
|
|
|
*/ |
12
|
|
|
protected $excludeScopes = ['scopeScope', 'scopeEloquentJs']; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* Inspect a model class and return its metadata. |
16
|
|
|
* |
17
|
|
|
* @param AcceptsEloquentJsQueries $instance |
18
|
|
|
* @return Metadata |
19
|
|
|
*/ |
20
|
|
|
public function inspect(AcceptsEloquentJsQueries $instance) |
21
|
|
|
{ |
22
|
|
|
return new Metadata( |
23
|
|
|
class_basename($instance), |
24
|
|
|
$this->findEndpoint($instance), |
25
|
|
|
$this->findDateColumns($instance), |
26
|
|
|
$this->findScopeMethods($instance) |
27
|
|
|
); |
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Find the endpoint for this model. |
32
|
|
|
* |
33
|
|
|
* @param AcceptsEloquentJsQueries $instance |
34
|
|
|
* @return string |
35
|
|
|
*/ |
36
|
|
|
protected function findEndpoint(AcceptsEloquentJsQueries $instance) |
37
|
|
|
{ |
38
|
|
|
return $instance->getEndpoint(); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Get any additional date columns for this model. |
43
|
|
|
* |
44
|
|
|
* @param AcceptsEloquentJsQueries $instance |
45
|
|
|
* @return array |
46
|
|
|
*/ |
47
|
|
|
protected function findDateColumns(AcceptsEloquentJsQueries $instance) |
48
|
|
|
{ |
49
|
|
|
return array_values( |
50
|
|
|
array_diff($instance->getDates(), ['created_at', 'updated_at', 'deleted_at']) |
|
|
|
|
51
|
|
|
); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* Get the scope methods for this model with 'scope' prefix removed. |
56
|
|
|
* |
57
|
|
|
* @param AcceptsEloquentJsQueries $instance |
58
|
|
|
* @return array |
59
|
|
|
*/ |
60
|
|
|
protected function findScopeMethods(AcceptsEloquentJsQueries $instance) |
61
|
|
|
{ |
62
|
|
|
return array_map( |
63
|
|
|
function($method) { |
64
|
|
|
return lcfirst(substr($method, 5)); |
65
|
|
|
}, |
66
|
|
|
array_values( |
67
|
|
|
array_filter( |
68
|
|
|
get_class_methods($instance), |
69
|
|
|
function($method) { |
70
|
|
|
return substr($method, 0, 5) === 'scope' and ! in_array($method, $this->excludeScopes); |
|
|
|
|
71
|
|
|
} |
72
|
|
|
) |
73
|
|
|
) |
74
|
|
|
); |
75
|
|
|
} |
76
|
|
|
} |
77
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.