|
15 | 15 | */ |
16 | 16 | class AMQPJob extends Job implements \Illuminate\Contracts\Queue\Job |
17 | 17 | { |
18 | | - /** |
19 | | - * @var string |
20 | | - */ |
21 | | - protected $queue; |
22 | | - |
23 | | - /** |
24 | | - * @var AMQPMessage |
25 | | - */ |
26 | | - protected $amqpMessage; |
27 | | - /** |
28 | | - * @var AMQPChannel |
29 | | - */ |
30 | | - private $channel; |
31 | | - |
32 | | - /** |
33 | | - * @param Container $container |
34 | | - * @param string $queue |
35 | | - * @param $channel |
36 | | - * @param string $amqpMessage |
37 | | - */ |
38 | | - public function __construct($container, $queue, $channel, $amqpMessage) |
39 | | - { |
40 | | - $this->container = $container; |
41 | | - $this->queue = $queue; |
42 | | - $this->amqpMessage = $amqpMessage; |
43 | | - $this->channel = $channel; |
44 | | - } |
45 | | - |
46 | | - /** |
47 | | - * Get the raw body string for the job. |
48 | | - * |
49 | | - * @return string |
50 | | - */ |
51 | | - public function getRawBody() |
52 | | - { |
53 | | - return $this->amqpMessage->body; |
54 | | - } |
55 | | - |
56 | | - /** |
57 | | - * Release the job back into the queue. |
58 | | - * |
59 | | - * @param int $delay |
60 | | - * |
61 | | - * @return void |
62 | | - */ |
63 | | - public function release($delay = 0) |
64 | | - { |
65 | | - $this->delete(); |
66 | | - |
67 | | - $body = $this->amqpMessage->body; |
68 | | - $body = json_decode($body, true); |
69 | | - |
70 | | - $body['attempts'] = $this->attempts() + 1; |
71 | | - $job = $body['job']; |
72 | | - |
73 | | - /** @var QueueContract $queue */ |
74 | | - $queue = $this->container['queue']->connection(); |
75 | | - if ($delay > 0) { |
76 | | - $queue->later($delay, $job, $body, $this->getQueue()); |
77 | | - } else { |
78 | | - $queue->push($job, $body, $this->getQueue()); |
79 | | - } |
80 | | - |
81 | | - // TODO: IS THIS NECESSARY? |
82 | | - parent::release(); |
83 | | - } |
84 | | - |
85 | | - /** |
86 | | - * Delete the job from the queue. |
87 | | - * |
88 | | - * @return void |
89 | | - */ |
90 | | - public function delete() |
91 | | - { |
92 | | - parent::delete(); |
93 | | - $this->channel->basic_ack($this->amqpMessage->delivery_info['delivery_tag']); |
94 | | - } |
95 | | - |
96 | | - /** |
97 | | - * Get the number of times the job has been attempted. |
98 | | - * |
99 | | - * @return int |
100 | | - */ |
101 | | - public function attempts() |
102 | | - { |
103 | | - $body = json_decode($this->amqpMessage->body, true); |
104 | | - |
105 | | - return isset($body['attempts']) ? $body['attempts'] : 0; |
106 | | - } |
107 | | - |
108 | | - /** |
109 | | - * Get queue name |
110 | | - * |
111 | | - * @return string |
112 | | - */ |
113 | | - public function getQueue() |
114 | | - { |
115 | | - return $this->queue; |
116 | | - } |
117 | | - |
118 | | - /** |
119 | | - * Get the job identifier. |
120 | | - * |
121 | | - * @return string |
122 | | - * @throws \OutOfBoundsException |
123 | | - */ |
124 | | - public function getJobId() |
125 | | - { |
126 | | - return $this->amqpMessage->get('message_id'); |
127 | | - } |
| 18 | + /** |
| 19 | + * @var string |
| 20 | + */ |
| 21 | + protected $queue; |
| 22 | + |
| 23 | + /** |
| 24 | + * @var AMQPMessage |
| 25 | + */ |
| 26 | + protected $amqpMessage; |
| 27 | + /** |
| 28 | + * @var AMQPChannel |
| 29 | + */ |
| 30 | + private $channel; |
| 31 | + |
| 32 | + /** |
| 33 | + * @param Container $container |
| 34 | + * @param string $queue |
| 35 | + * @param $channel |
| 36 | + * @param string $amqpMessage |
| 37 | + */ |
| 38 | + public function __construct($container, $queue, $channel, $amqpMessage) |
| 39 | + { |
| 40 | + $this->container = $container; |
| 41 | + $this->queue = $queue; |
| 42 | + $this->amqpMessage = $amqpMessage; |
| 43 | + $this->channel = $channel; |
| 44 | + } |
| 45 | + |
| 46 | + /** |
| 47 | + * Get the raw body string for the job. |
| 48 | + * |
| 49 | + * @return string |
| 50 | + */ |
| 51 | + public function getRawBody() |
| 52 | + { |
| 53 | + return $this->amqpMessage->body; |
| 54 | + } |
| 55 | + |
| 56 | + /** |
| 57 | + * Release the job back into the queue. |
| 58 | + * |
| 59 | + * @param int $delay |
| 60 | + * |
| 61 | + * @return void |
| 62 | + */ |
| 63 | + public function release($delay = 0) |
| 64 | + { |
| 65 | + $this->delete(); |
| 66 | + |
| 67 | + $body = $this->amqpMessage->body; |
| 68 | + $body = json_decode($body, true); |
| 69 | + |
| 70 | + $body['attempts'] = $this->attempts() + 1; |
| 71 | + $job = $body['job']; |
| 72 | + |
| 73 | + /** @var QueueContract $queue */ |
| 74 | + $queue = $this->container['queue']->connection(); |
| 75 | + if ($delay > 0) { |
| 76 | + $queue->later($delay, $job, $body, $this->getQueue()); |
| 77 | + } else { |
| 78 | + $queue->push($job, $body, $this->getQueue()); |
| 79 | + } |
| 80 | + |
| 81 | + // TODO: IS THIS NECESSARY? |
| 82 | + parent::release(); |
| 83 | + } |
| 84 | + |
| 85 | + /** |
| 86 | + * Delete the job from the queue. |
| 87 | + * |
| 88 | + * @return void |
| 89 | + */ |
| 90 | + public function delete() |
| 91 | + { |
| 92 | + parent::delete(); |
| 93 | + $this->channel->basic_ack($this->amqpMessage->delivery_info['delivery_tag']); |
| 94 | + } |
| 95 | + |
| 96 | + /** |
| 97 | + * Get the number of times the job has been attempted. |
| 98 | + * |
| 99 | + * @return int |
| 100 | + */ |
| 101 | + public function attempts() |
| 102 | + { |
| 103 | + $body = json_decode($this->amqpMessage->body, true); |
| 104 | + |
| 105 | + return isset($body['attempts']) ? $body['attempts'] : 0; |
| 106 | + } |
| 107 | + |
| 108 | + /** |
| 109 | + * Get queue name |
| 110 | + * |
| 111 | + * @return string |
| 112 | + */ |
| 113 | + public function getQueue() |
| 114 | + { |
| 115 | + return $this->queue; |
| 116 | + } |
| 117 | + |
| 118 | + /** |
| 119 | + * Get the job identifier. |
| 120 | + * |
| 121 | + * @return string |
| 122 | + * @throws \OutOfBoundsException |
| 123 | + */ |
| 124 | + public function getJobId() |
| 125 | + { |
| 126 | + return $this->amqpMessage->get('message_id'); |
| 127 | + } |
128 | 128 | } |
0 commit comments