<?php
namespace Illuminate\Queue;
use IronMQ\IronMQ;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Queue\Jobs\IronJob;
use Illuminate\Contracts\Queue\Queue as QueueContract;
class IronQueue extends Queue implements QueueContract
{
* The IronMQ instance.
*
* @var \IronMQ\IronMQ
*/
protected $iron;
* The current request instance.
*
* @var \Illuminate\Http\Request
*/
protected $request;
* The name of the default tube.
*
* @var string
*/
protected $default;
* Indicates if the messages should be encrypted.
*
* @var bool
*/
protected $shouldEncrypt;
* Create a new IronMQ queue instance.
*
* @param \IronMQ\IronMQ $iron
* @param \Illuminate\Http\Request $request
* @param string $default
* @param bool $shouldEncrypt
* @return void
*/
public function __construct(IronMQ $iron, Request $request, $default, $shouldEncrypt = false)
{
$this->iron = $iron;
$this->request = $request;
$this->default = $default;
$this->shouldEncrypt = $shouldEncrypt;
}
* Push a new job onto the queue.
*
* @param string $job
* @param mixed $data
* @param string $queue
* @return mixed
*/
public function push($job, $data = '', $queue = null)
{
return $this->pushRaw($this->createPayload($job, $data, $queue), $queue);
}
* Push a raw payload onto the queue.
*
* @param string $payload
* @param string $queue
* @param array $options
* @return mixed
*/
public function pushRaw($payload, $queue = null, array $options = [])
{
if ($this->shouldEncrypt) {
$payload = $this->crypt->encrypt($payload);
}
return $this->iron->postMessage($this->getQueue($queue), $payload, $options)->id;
}
* Push a raw payload onto the queue after encrypting the payload.
*
* @param string $payload
* @param string $queue
* @param int $delay
* @return mixed
*/
public function recreate($payload, $queue, $delay)
{
$options = ['delay' => $this->getSeconds($delay)];
return $this->pushRaw($payload, $queue, $options);
}
* Push a new job onto the queue after a delay.
*
* @param \DateTime|int $delay
* @param string $job
* @param mixed $data
* @param string $queue
* @return mixed
*/
public function later($delay, $job, $data = '', $queue = null)
{
$delay = $this->getSeconds($delay);
$payload = $this->createPayload($job, $data, $queue);
return $this->pushRaw($payload, $queue, compact('delay'));
}
* Pop the next job off of the queue.
*
* @param string $queue
* @return \Illuminate\Contracts\Queue\Job|null
*/
public function pop($queue = null)
{
$queue = $this->getQueue($queue);
$job = $this->iron->getMessage($queue);
if (! is_null($job)) {
$job->body = $this->parseJobBody($job->body);
return new IronJob($this->container, $this, $job);
}
}
* Delete a message from the Iron queue.
*
* @param string $queue
* @param string $id
* @return void
*/
public function deleteMessage($queue, $id)
{
$this->iron->deleteMessage($queue, $id);
}
* Marshal a push queue request and fire the job.
*
* @return \Illuminate\Http\Response
*
* @deprecated since version 5.1.
*/
public function marshal()
{
$this->createPushedIronJob($this->marshalPushedJob())->fire();
return new Response('OK');
}
* Marshal out the pushed job and payload.
*
* @return object
*/
protected function marshalPushedJob()
{
$r = $this->request;
$body = $this->parseJobBody($r->getContent());
return (object) [
'id' => $r->header('iron-message-id'), 'body' => $body, 'pushed' => true,
];
}
* Create a new IronJob for a pushed job.
*
* @param object $job
* @return \Illuminate\Queue\Jobs\IronJob
*/
protected function createPushedIronJob($job)
{
return new IronJob($this->container, $this, $job, true);
}
* Create a payload string from the given job and data.
*
* @param string $job
* @param mixed $data
* @param string $queue
* @return string
*/
protected function createPayload($job, $data = '', $queue = null)
{
$payload = $this->setMeta(parent::createPayload($job, $data), 'attempts', 1);
return $this->setMeta($payload, 'queue', $this->getQueue($queue));
}
* Parse the job body for firing.
*
* @param string $body
* @return string
*/
protected function parseJobBody($body)
{
return $this->shouldEncrypt ? $this->crypt->decrypt($body) : $body;
}
* Get the queue or return the default.
*
* @param string|null $queue
* @return string
*/
public function getQueue($queue)
{
return $queue ?: $this->default;
}
* Get the underlying IronMQ instance.
*
* @return \IronMQ\IronMQ
*/
public function getIron()
{
return $this->iron;
}
* Get the request instance.
*
* @return \Illuminate\Http\Request
*/
public function getRequest()
{
return $this->request;
}
* Set the request instance.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
public function setRequest(Request $request)
{
$this->request = $request;
}
}