All Projects → dusterio → Laravel Plain Sqs

dusterio / Laravel Plain Sqs

Licence: mit
Custom SQS connector for Laravel (or Lumen) that supports third-party, plain JSON messages

Projects that are alternatives of or similar to Laravel Plain Sqs

Php Examples For Aws Lambda
Demo serverless applications, examples code snippets and resources for PHP
Stars: ✭ 177 (+94.51%)
Mutual labels:  aws, laravel
Laravel Dynamodb
Eloquent syntax for DynamoDB
Stars: ✭ 342 (+275.82%)
Mutual labels:  aws, laravel
Laravel Aws Eb
Ready-to-deploy configuration to run Laravel on AWS Elastic Beanstalk.
Stars: ✭ 247 (+171.43%)
Mutual labels:  aws, laravel
Aws Sdk Perl
A community AWS SDK for Perl Programmers
Stars: ✭ 153 (+68.13%)
Mutual labels:  aws, sqs
Terraform Sqs Lambda Trigger Example
Example on how to create a AWS Lambda triggered by SQS in Terraform
Stars: ✭ 31 (-65.93%)
Mutual labels:  aws, sqs
Justsaying
A light-weight message bus on top of AWS services (SNS and SQS).
Stars: ✭ 157 (+72.53%)
Mutual labels:  aws, sqs
Lambdaguard
AWS Serverless Security
Stars: ✭ 300 (+229.67%)
Mutual labels:  aws, sqs
Laravel Aws Worker
Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers
Stars: ✭ 272 (+198.9%)
Mutual labels:  aws, laravel
Laravel Aws Sns
Laravel package for the AWS SNS Events
Stars: ✭ 24 (-73.63%)
Mutual labels:  aws, laravel
Dazn Lambda Powertools
Powertools (logger, HTTP client, AWS clients, middlewares, patterns) for Lambda functions.
Stars: ✭ 501 (+450.55%)
Mutual labels:  aws, sqs
Sqs Producer
Simple scaffolding for applications that produce SQS messages
Stars: ✭ 125 (+37.36%)
Mutual labels:  aws, sqs
Laravel Elasticbeanstalk Queue Worker
Stars: ✭ 48 (-47.25%)
Mutual labels:  aws, laravel
Simpleue
PHP queue worker and consumer - Ready for AWS SQS, Redis, Beanstalkd and others.
Stars: ✭ 124 (+36.26%)
Mutual labels:  aws, sqs
Sqs Worker Serverless
Example for SQS Worker in AWS Lambda using Serverless
Stars: ✭ 164 (+80.22%)
Mutual labels:  aws, sqs
Laravel Bridge
Package to use Laravel on AWS Lambda with Bref
Stars: ✭ 168 (+84.62%)
Mutual labels:  sqs, laravel
Cipi
An Open Source Control Panel for your Cloud! Deploy and manage LEMP apps in one click!
Stars: ✭ 376 (+313.19%)
Mutual labels:  aws, laravel
Sqs Consumer
Build Amazon Simple Queue Service (SQS) based applications without the boilerplate
Stars: ✭ 1,019 (+1019.78%)
Mutual labels:  aws, sqs
Serverless
This is intended to be a repo containing all of the official AWS Serverless architecture patterns built with CDK for developers to use. All patterns come in Typescript and Python with the exported CloudFormation also included.
Stars: ✭ 1,048 (+1051.65%)
Mutual labels:  aws, sqs
Image Quality Assessment
Convolutional Neural Networks to predict the aesthetic and technical quality of images.
Stars: ✭ 1,300 (+1328.57%)
Mutual labels:  aws
Awesome Aws
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome.
Stars: ✭ 9,895 (+10773.63%)
Mutual labels:  aws

Plain Sqs

Build Status Code Climate Total Downloads Latest Stable Version Latest Unstable Version License

A custom SQS connector for Laravel (or Lumen) that supports custom format JSON payloads. Out of the box, Laravel expects SQS messages to be generated in specific format - format that includes job handler class and a serialized job.

But in certain cases you may want to parse messages from third party applications, custom JSON messages and so on.

Dependencies

  • PHP >= 5.5
  • Laravel (or Lumen) >= 5.2

Installation via Composer

To install simply run:

composer require dusterio/laravel-plain-sqs

Or add it to composer.json manually:

{
    "require": {
        "dusterio/laravel-plain-sqs": "~0.1"
    }
}

Usage in Laravel 5

// Add in your config/app.php

'providers' => [
    '...',
    'Dusterio\PlainSqs\Integrations\LaravelServiceProvider',
];

Usage in Lumen 5

// Add in your bootstrap/app.php
$app->loadComponent('queue', 'Dusterio\PlainSqs\Integrations\LumenServiceProvider');

Configuration

// Generate standard config file (Laravel only)
php artisan vendor:publish

// In Lumen, create it manually (see example below) and load it in bootstrap/app.php
$app->configure('sqs-plain');

Edit config/sqs-plain.php to suit your needs. This config matches SQS queues with handler classes.

return [
    'handlers' => [
        'base-integrations-updates' => App\Jobs\HandlerJob::class,
    ],

    'default-handler' => App\Jobs\HandlerJob::class
];

If queue is not found in 'handlers' array, SQS payload is passed to default handler.

Add sqs-plain connection to your config/queue.php, eg:

        ...
        'sqs-plain' => [
            'driver' => 'sqs-plain',
            'key'    => env('AWS_KEY', ''),
            'secret' => env('AWS_SECRET', ''),
            'prefix' => 'https://sqs.ap-southeast-2.amazonaws.com/123123/',
            'queue'  => 'important-music-updates',
            'region' => 'ap-southeast-2',
        ],
        ...

In your .env file, choose sqs-plain as your new default queue driver:

QUEUE_DRIVER=sqs-plain

Dispatching to SQS

If you plan to push plain messages from Laravel or Lumen, you can rely on DispatcherJob:

use Dusterio\PlainSqs\Jobs\DispatcherJob;

class ExampleController extends Controller
{
    public function index()
    {
        // Create a PHP object
        $object = [
            'music' => 'M.I.A. - Bad girls',
            'time' => time()
        ];

        // Pass it to dispatcher job
        $job = new DispatcherJob($object);

        // Dispatch the job as you normally would
        // By default, your data will be encapsulated in 'data' and 'job' field will be added
        $this->dispatch($job);

        // If you wish to submit a true plain JSON, add setPlain()
        $this->dispatch($job->setPlain());
    }
}

This will push the following JSON object to SQS:

{"job":"App\\Jobs\\[email protected]","data":{"music":"M.I.A. - Bad girls","time":1462511642}}

'job' field is not used, actually. It's just kept for compatibility sake.

Receiving from SQS

If a third-party application is creating custom-format JSON messages, just add a handler in the config file and implement a handler class as follows:

use Illuminate\Contracts\Queue\Job as LaravelJob;

class HandlerJob extends Job
{
    protected $data;

    /**
     * @param LaravelJob $job
     * @param array $data
     */
    public function handle(LaravelJob $job, array $data)
    {
        // This is incoming JSON payload, already decoded to an array
        var_dump($data);

        // Raw JSON payload from SQS, if necessary
        var_dump($job->getRawBody());
    }
}

Todo

  1. Add more unit and integration tests

Video tutorials

I've just started a educational YouTube channel that will cover top IT trends in software development and DevOps: config.sys

License

The MIT License (MIT) Copyright (c) 2016 Denis Mysenko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].