1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Iben\Statable; |
4
|
|
|
|
5
|
|
|
use SM\StateMachine\StateMachine; |
6
|
|
|
use Iben\Statable\Models\StateHistory; |
7
|
|
|
|
8
|
|
|
trait Statable |
9
|
|
|
{ |
10
|
|
|
/** |
11
|
|
|
* @var StateMachine |
12
|
|
|
*/ |
13
|
|
|
protected $SM; |
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* @return \Illuminate\Database\Eloquent\Model |
17
|
|
|
*/ |
18
|
|
|
public function stateHistory() |
19
|
|
|
{ |
20
|
|
|
return $this->morphMany(StateHistory::class, 'statable'); |
|
|
|
|
21
|
|
|
} |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @param array $transitionData |
25
|
|
|
*/ |
26
|
|
|
public function addHistoryLine(array $transitionData) |
27
|
|
|
{ |
28
|
|
|
if ($this->getKey()) { |
|
|
|
|
29
|
|
|
$transitionData['actor_id'] = $this->getActorId(); |
30
|
|
|
$this->stateHistory()->create($transitionData); |
|
|
|
|
31
|
|
|
} |
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @return int|null |
36
|
|
|
*/ |
37
|
|
|
public function getActorId() |
38
|
|
|
{ |
39
|
|
|
return auth()->id(); |
|
|
|
|
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @return mixed|string |
44
|
|
|
* @throws \Illuminate\Container\EntryNotFoundException |
45
|
|
|
*/ |
46
|
|
|
public function stateIs() |
47
|
|
|
{ |
48
|
|
|
return $this->stateMachine()->getState(); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* @param $transition |
53
|
|
|
* @return bool |
54
|
|
|
* @throws \SM\SMException|\Illuminate\Container\EntryNotFoundException |
55
|
|
|
*/ |
56
|
|
|
public function apply($transition) |
57
|
|
|
{ |
58
|
|
|
if ($this->getKey() === null && $this->saveBeforeTransition()) { |
|
|
|
|
59
|
|
|
$this->save(); |
|
|
|
|
60
|
|
|
} |
61
|
|
|
return $this->stateMachine()->apply($transition); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* @param $transition |
66
|
|
|
* @return bool |
67
|
|
|
* @throws \SM\SMException|\Illuminate\Container\EntryNotFoundException |
68
|
|
|
*/ |
69
|
|
|
public function canApply($transition) |
70
|
|
|
{ |
71
|
|
|
return $this->stateMachine()->can($transition); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* @return mixed|\SM\StateMachine\StateMachine |
76
|
|
|
* @throws \Illuminate\Container\EntryNotFoundException |
77
|
|
|
*/ |
78
|
|
|
public function stateMachine() |
79
|
|
|
{ |
80
|
|
|
if (! $this->SM) { |
81
|
|
|
$this->SM = app('sm.factory')->get($this, $this->getGraph()); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
return $this->SM; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* @return string |
89
|
|
|
*/ |
90
|
|
|
protected function getGraph() |
91
|
|
|
{ |
92
|
|
|
return 'default'; |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* @return bool |
97
|
|
|
*/ |
98
|
|
|
protected function saveBeforeTransition() |
99
|
|
|
{ |
100
|
|
|
return false; |
101
|
|
|
} |
102
|
|
|
} |
103
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.