-
Notifications
You must be signed in to change notification settings - Fork 664
/
Copy pathJobPayload.php
215 lines (193 loc) · 4.42 KB
/
JobPayload.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
<?php
namespace Laravel\Horizon;
use ArrayAccess;
use Illuminate\Broadcasting\BroadcastEvent;
use Illuminate\Events\CallQueuedListener;
use Illuminate\Mail\SendQueuedMailable;
use Illuminate\Notifications\SendQueuedNotifications;
use Illuminate\Support\Arr;
class JobPayload implements ArrayAccess
{
/**
* The raw payload string.
*
* @var string
*/
public $value;
/**
* The decoded payload array.
*
* @var array
*/
public $decoded;
/**
* Create a new raw job payload instance.
*
* @param string $value
* @return void
*/
public function __construct($value)
{
$this->value = $value;
$this->decoded = json_decode($value, true);
}
/**
* Get the job ID from the payload.
*
* @return string
*/
public function id()
{
return $this->decoded['id'];
}
/**
* Get the job tags from the payload.
*
* @return array
*/
public function tags()
{
return Arr::get($this->decoded, 'tags', []);
}
/**
* Determine if the job is a retry of a previous job.
*
* @return bool
*/
public function isRetry()
{
return isset($this->decoded['retry_of']);
}
/**
* Get the ID of the job this job is a retry of.
*
* @return string|null
*/
public function retryOf()
{
return $this->decoded['retry_of'] ?? null;
}
/**
* Prepare the payload for storage on the queue by adding tags, etc.
*
* @param mixed $job
* @return $this
*/
public function prepare($job)
{
return $this->set([
'type' => $this->determineType($job),
'tags' => $this->determineTags($job),
'pushedAt' => str_replace(',', '.', microtime(true)),
]);
}
/**
* Get the "type" of job being queued.
*
* @param mixed $job
* @return string
*/
protected function determineType($job)
{
switch (true) {
case $job instanceof BroadcastEvent:
return 'broadcast';
case $job instanceof CallQueuedListener:
return 'event';
case $job instanceof SendQueuedMailable:
return 'mail';
case $job instanceof SendQueuedNotifications:
return 'notification';
default:
return 'job';
}
}
/**
* Get the appropriate tags for the job.
*
* @param mixed $job
* @return array
*/
protected function determineTags($job)
{
switch (true) {
case is_string($job):
return [];
case array_key_exists('tags', $this->decoded):
return $this->decoded['tags'];
default:
return Tags::for($job);
}
}
/**
* Set the given key / value pairs on the payload.
*
* @param array $values
* @return $this
*/
public function set(array $values)
{
$this->decoded = array_merge($this->decoded, $values);
$this->value = json_encode($this->decoded);
return $this;
}
/**
* Get the "command name" for the job.
*
* @return string
*/
public function commandName()
{
return Arr::get($this->decoded, 'data.commandName');
}
/**
* Get the "display name" for the job.
*
* @return string
*/
public function displayName()
{
return Arr::get($this->decoded, 'displayName');
}
/**
* Determine if the given offset exists.
*
* @param string $offset
* @return bool
*/
public function offsetExists($offset)
{
return array_key_exists($offset, $this->decoded);
}
/**
* Get the value at the current offset.
*
* @param string $offset
* @return mixed
*/
public function offsetGet($offset)
{
return $this->decoded[$offset];
}
/**
* Set the value at the current offset.
*
* @param string $offset
* @param mixed $value
* @return void
*/
public function offsetSet($offset, $value)
{
$this->decoded[$offset] = $value;
}
/**
* Unset the value at the current offset.
*
* @param string $offset
* @return void
*/
public function offsetUnset($offset)
{
unset($this->decoded[$offset]);
}
}