Giter VIP home page Giter VIP logo

payload's Introduction

Latest Stable Version Total Downloads Build Status Coverage Status Scrutinizer Code Quality SensioLabs Insight StyleCI License

The simple infrastructure component for create payload message

Installation

Pretty simple with Composer, run:

composer require gpslab/payload

Usage

This library automatically fill the properties of the object with payload data.

For example, create a simple message

class SimpleMessage extends PayloadMessage
{
    public $id = 0;

    public $name = '';
}

Fill the message

$message = new SimpleMessage([
    'id' => 123,
    'name' => 'foo',
]);

$message->id; // 123
$message->name; // foo
$message->payload(); // ['id' => 123, 'name' => 'foo']

Note

All fields specified in the payload must exist.

Protected properties

You can use protected properties for data. It's convenient to make the properties as read-only.

class SimpleMessage extends PayloadMessage
{
    protected $id = 0;

    protected $name = '';

    public function id()
    {
        return $this->id;
    }

    public function name()
    {
        return $this->name;
    }
}

Fill the message

$message = new SimpleMessage([
    'id' => 123,
    'name' => 'foo',
]);

$message->id(); // 123
$message->name(); // foo
$message->payload(); // ['id' => 123, 'name' => 'foo']

Note

For fill private properties you must use setters.

Property setters

You can mark properties as private and use setters for fill it. This will ensure the security of data and control their type. You can mark the setters as protected to close the class from changes from the outside.

class SimpleMessage extends PayloadMessage
{
    private $id = 0;

    private $name = '';

    public function id(): integer
    {
        return $this->id;
    }

    protected function setId(integer $id)
    {
        $this->id = $id;
    }

    public function name(): string
    {
        return $this->name;
    }

    protected function setName(string $name)
    {
        $this->name = $name;
    }
}

Fill the message

$message = new SimpleMessage([
    'id' => 123,
    'name' => 'foo',
]);

$message->id(); // 123
$message->name(); // foo
$message->payload(); // ['id' => 123, 'name' => 'foo']

CQRS

You can use payload in CQRS infrastructure.

Command to rename contact:

class RenameContactCommand extends PayloadCommand
{
    public $contact_id = 0;

    public $new_name = '';
}

Query for get contact by identity:

class ContactByIdentityQuery extends PayloadQuery
{
    public $id = 0;
}

Domain Events

You can use payload in Domain Events.

Event, contact was renamed:

class RenamedContactEvent extends PayloadDomainEvent
{
    public $contact_id = 0;

    public $old_name = '';

    public $new_name = '';
}

Serialize

You can serialize messages with Symfony serializer component. For do it you can use PayloadNormalizer or TypedPayloadNormalizer and encode result to JSON, XML, YAML, CSV, etc.

  • PayloadNormalizer - can be used only for one class because he does not distinguish messages;
  • TypedPayloadNormalizer - adds to the normalized data the type of message received from MessageTypeResolver service.

You can use ClassNameMessageTypeResolver as a simplify resolver. It use the last part of class name as a messages type.

  • \Acme\Demo\SomeMessage converted to SomeMessage
  • \Acme_Demo_SomeMessage converted to SomeMessage

Be careful with the use of this resolver and do not named message classes equally in different namespace.

License

This bundle is under the MIT license. See the complete license in the file: LICENSE

payload's People

Contributors

mathroc avatar peter-gribanov avatar peter279k avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.