mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Redis backend for storing failed Resque jobs.
|
|
*
|
|
* @package Resque/Failure
|
|
* @author Chris Boulton <chris.boulton@interspire.com>
|
|
* @copyright (c) 2010 Chris Boulton
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
|
|
class Resque_Failure_Redis implements Resque_Failure_Interface
|
|
{
|
|
/**
|
|
* Initialize a failed job class and save it (where appropriate).
|
|
*
|
|
* @param object $payload Object containing details of the failed job.
|
|
* @param object $exception Instance of the exception that was thrown by the failed job.
|
|
* @param object $worker Instance of Resque_Worker that received the job.
|
|
* @param string $queue The name of the queue the job was fetched from.
|
|
*/
|
|
public function __construct($payload, $exception, $worker, $queue)
|
|
{
|
|
$data = new stdClass;
|
|
$data->failed_at = strftime('%a %b %d %H:%M:%S %Z %Y');
|
|
$data->payload = $payload;
|
|
$data->exception = get_class($exception);
|
|
$data->error = $exception->getMessage();
|
|
$data->backtrace = explode("\n", $exception->getTraceAsString());
|
|
$data->worker = (string)$worker;
|
|
$data->queue = $queue;
|
|
$data = json_encode($data);
|
|
Resque::redis()->rpush('failed', $data);
|
|
}
|
|
}
|
|
?>
|