This repository was archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBaseJob.php
More file actions
228 lines (197 loc) · 4.98 KB
/
BaseJob.php
File metadata and controls
228 lines (197 loc) · 4.98 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
<?php
namespace Jalameta\Support\Bus;
use BadMethodCallException;
use Illuminate\Support\Str;
use Illuminate\Http\Request;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializableClosure;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Database\Eloquent\ModelNotFoundException;
/**
* Class BaseJob.
*
* @property-read \Illuminate\Http\Request $request
* @method onSuccess(\Closure $callback)
* @method onAbort(\Closure $callback)
* @method onRunning(\Closure $callback)
*/
abstract class BaseJob
{
use InteractsWithQueue, Queueable, Dispatchable, ValidatesRequests, SerializesModels {
restoreModel as parentRestoreModel;
}
const STATUS_IDLE = 'idle';
const STATUS_FAILED = 'failed';
const STATUS_SUCCESS = 'success';
const STATUS_RUNNING = 'running';
/**
* Determine if request needs to be clear.
*
* @var bool
*/
public static $resetRequests = false;
/**
* Status of the job.
*
* @var string
*/
protected $status = self::STATUS_IDLE;
/**
* List of all registered callbacks.
*
* @var array
*/
protected $callbacks = [];
/**
* Original input data.
*
* @var array
*/
protected $inputs = [];
/**
* Job constructor.
*
* @param array $inputs
*/
public function __construct(array $inputs = [])
{
/**
* @var Request
*/
$request = app('request');
if (self::$resetRequests) {
$request->replace([]);
}
$request->merge($inputs);
$this->inputs = $request->all();
}
/**
* Make dynamic call to the command.
*
* @param $name
* @param $arguments
*
* @return mixed
*/
public function __call($name, $arguments)
{
if (Str::startsWith($name, 'on')) {
$event = substr($name, 2);
return $this->registerCallback(Str::lower($event), $arguments[0]);
}
throw new BadMethodCallException("Invalid Method `$name`");
}
/**
* @param $name
* @return mixed
*/
public function __get($name)
{
if ($name === 'request') {
$request = app('request');
$request->merge($this->inputs);
return $request;
}
return;
}
/**
* Restore the model from the model identifier instance.
*
* @param \Illuminate\Contracts\Database\ModelIdentifier $value
* @return \Illuminate\Database\Eloquent\Model
*/
public function restoreModel($value)
{
try {
return $this->parentRestoreModel($value);
} catch (ModelNotFoundException $exception) {
return new $value->class;
}
}
/**
* Handle incoming job.
*
* @return $this
*/
public function handle()
{
// Determine if this command has a boot method, which is convenient when developer
// needs to modify any information on this command before actually running it.
if (method_exists($this, 'boot')) {
$this->boot();
}
$this->fireCallbacks('running');
$outcome = $this->run();
$this->status = ($outcome) ? self::STATUS_SUCCESS : self::STATUS_FAILED;
// base on the outcome of the run method, let's run additional callbacks.
$this->fireCallbacks($this->status);
return $this;
}
/**
* Run the actual command process.
*
* @return bool
*/
abstract public function run() : bool;
/**
* Immediately calling abort callbacks.
*
* @return void
*/
public function abort()
{
$this->fireCallbacks('abort');
}
/**
* Determine if job is succeeded.
*
* @return bool
*/
public function success()
{
return ($this->status === self::STATUS_SUCCESS);
}
/*
* Determine if job is Failed
*
* @return bool
*/
public function failed()
{
return ($this->status === self::STATUS_FAILED);
}
/**
* Register Callback to the callbacks array.
*
* @param $event
* @param \Closure $callback
*
* @return $this
*/
public function registerCallback($event, \Closure $callback)
{
$this->callbacks[$event][] = new SerializableClosure($callback);
return $this;
}
/**
* Fire all callbacks registered on the callbacks array.
*
* @param string $event
*
* @return void
*/
protected function fireCallbacks($event)
{
if (array_key_exists($event, $this->callbacks)) {
foreach ($this->callbacks[$event] as $callback) {
/*
* @var $callback SerializableClosure
*/
call_user_func_array($callback->getClosure(), [$this]);
}
}
}
}