Skip to content

Commit 010165e

Browse files
committedSep 14, 2016
+ 5.3 support
1 parent 34fd76c commit 010165e

8 files changed

+154
-5
lines changed
 

‎src/Controllers/WorkerController.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Dusterio\AwsWorker\Exceptions\FailedJobException;
66
use Dusterio\AwsWorker\Exceptions\MalformedRequestException;
77
use Dusterio\AwsWorker\Jobs\AwsJob;
8+
use Dusterio\AwsWorker\Wrappers\WorkerInterface;
89
use Illuminate\Contracts\Container\Container;
910
use Illuminate\Http\Request;
1011
use Illuminate\Queue\Worker;
@@ -57,12 +58,12 @@ public function schedule(Container $laravel, Kernel $kernel, Schedule $schedule)
5758

5859
/**
5960
* @param Request $request
60-
* @param Worker $worker
61+
* @param WorkerInterface $worker
6162
* @param Container $laravel
62-
* @return array
63+
* @return Response
6364
* @throws FailedJobException
6465
*/
65-
public function queue(Request $request, Worker $worker, Container $laravel)
66+
public function queue(Request $request, WorkerInterface $worker, Container $laravel)
6667
{
6768
$this->validateHeaders($request);
6869
$body = $this->validateBody($request, $laravel);
@@ -78,7 +79,10 @@ public function queue(Request $request, Worker $worker, Container $laravel)
7879

7980
try {
8081
$worker->process(
81-
$request->header('X-Aws-Sqsd-Queue'), $job, 0, 0
82+
$request->header('X-Aws-Sqsd-Queue'), $job, [
83+
'maxTries' => 0,
84+
'delay' => 0
85+
]
8286
);
8387
} catch (\Exception $e) {
8488
throw new FailedJobException('Worker failed executing the job', 0, $e);

‎src/Integrations/BindsWorker.php

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
3+
namespace Dusterio\AwsWorker\Integrations;
4+
5+
use Dusterio\AwsWorker\Wrappers\WorkerInterface;
6+
use Dusterio\AwsWorker\Wrappers\DefaultWorker;
7+
use Dusterio\AwsWorker\Wrappers\Laravel53Worker;
8+
9+
/**
10+
* Class BindsWorker
11+
* @package Dusterio\AwsWorker\Integrations
12+
*/
13+
trait BindsWorker
14+
{
15+
/**
16+
* @var array
17+
*/
18+
protected $workerImplementations = [
19+
'5\.3.*' => Laravel53Worker::class
20+
];
21+
22+
/**
23+
* @param $version
24+
* @return mixed
25+
*/
26+
protected function findWorkerClass($version)
27+
{
28+
foreach ($this->workerImplementations as $regexp => $class) {
29+
if (preg_match('/' . $regexp . '/', $version)) return $class;
30+
}
31+
32+
return DefaultWorker::class;
33+
}
34+
35+
/**
36+
* @return void
37+
*/
38+
protected function bindWorker()
39+
{
40+
$this->app->bind(WorkerInterface::class, $this->findWorkerClass($this->app->version()));
41+
}
42+
}

‎src/Integrations/LaravelServiceProvider.php

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace Dusterio\AwsWorker\Integrations;
44

5+
use Dusterio\AwsWorker\Wrappers\DefaultWorker;
6+
use Dusterio\AwsWorker\Wrappers\Laravel53Worker;
7+
use Dusterio\AwsWorker\Wrappers\WorkerInterface;
58
use Dusterio\PlainSqs\Sqs\Connector;
69
use Illuminate\Support\ServiceProvider;
710
use Illuminate\Support\Facades\Queue;
@@ -14,13 +17,16 @@
1417
*/
1518
class LaravelServiceProvider extends ServiceProvider
1619
{
20+
use BindsWorker;
21+
1722
/**
1823
* @return void
1924
*/
2025
public function register()
2126
{
2227
if ($this->app->environment() == 'production') return;
2328

29+
$this->bindWorker();
2430
$this->addRoutes();
2531
}
2632

‎src/Integrations/LumenServiceProvider.php

+3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@
1414
*/
1515
class LumenServiceProvider extends ServiceProvider
1616
{
17+
use BindsWorker;
18+
1719
/**
1820
* @return void
1921
*/
2022
public function register()
2123
{
2224
if ($this->app->environment() == 'production') return;
2325

26+
$this->bindWorker();
2427
$this->addRoutes();
2528
}
2629

‎src/Jobs/AwsJob.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ public function __construct(Container $container,
3838
*/
3939
public function fire()
4040
{
41-
$this->resolveAndFire(json_decode($this->getRawBody(), true));
41+
if (method_exists($this, 'resolveAndFire')) {
42+
$this->resolveAndFire(json_decode($this->getRawBody(), true));
43+
return;
44+
}
45+
46+
parent::fire();
4247
}
4348

4449
/**

‎src/Wrappers/DefaultWorker.php

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
namespace Dusterio\AwsWorker\Wrappers;
4+
5+
use Illuminate\Queue\Worker;
6+
7+
/**
8+
* Class DefaultWorker
9+
* @package Dusterio\AwsWorker\Wrappers
10+
*/
11+
class DefaultWorker implements WorkerInterface
12+
{
13+
/**
14+
* DefaultWorker constructor.
15+
* @param Worker $worker
16+
*/
17+
public function __construct(Worker $worker)
18+
{
19+
$this->worker = $worker;
20+
}
21+
22+
/**
23+
* @param $queue
24+
* @param $job
25+
* @param array $options
26+
* @return void
27+
*/
28+
public function process($queue, $job, array $options)
29+
{
30+
$this->worker->process(
31+
$queue, $job, $options['maxTries'], $options['delay']
32+
);
33+
}
34+
}

‎src/Wrappers/Laravel53Worker.php

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
namespace Dusterio\AwsWorker\Wrappers;
4+
5+
use Illuminate\Queue\Worker;
6+
use Illuminate\Queue\WorkerOptions;
7+
8+
/**
9+
* Class Laravel53Worker
10+
* @package Dusterio\AwsWorker\Wrappers
11+
*/
12+
class Laravel53Worker implements WorkerInterface
13+
{
14+
/**
15+
* DefaultWorker constructor.
16+
* @param Worker $worker
17+
*/
18+
public function __construct(Worker $worker)
19+
{
20+
$this->worker = $worker;
21+
}
22+
23+
/**
24+
* @param $queue
25+
* @param $job
26+
* @param array $options
27+
* @return void
28+
*/
29+
public function process($queue, $job, array $options)
30+
{
31+
$workerOptions = new WorkerOptions($options['delay'], 128, 60, 3, $options['maxTries']);
32+
33+
$this->worker->process(
34+
$queue, $job, $workerOptions
35+
);
36+
}
37+
}

‎src/Wrappers/WorkerInterface.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace Dusterio\AwsWorker\Wrappers;
4+
5+
/**
6+
* Interface WorkerInterface
7+
* @package Dusterio\AwsWorker\Wrappers
8+
*/
9+
interface WorkerInterface
10+
{
11+
/**
12+
* @param $queue
13+
* @param $job
14+
* @param array $options
15+
* @return mixed
16+
*/
17+
public function process($queue, $job, array $options);
18+
}

0 commit comments

Comments
 (0)
Please sign in to comment.