einfach/representer

Proof of concept: object serializer/de-serializer with method chaining syntax

dev-master 2016-02-10 18:08 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:34:39 UTC


README

Build Status Latest Version on Packagist Total Downloads Software License

SensioLabsInsight Coverage Status Quality Score Code Climate

Proof of concept representer objects with chain syntax rules notation. Performs object serialization and object restore.

Currently does not support nested values.

Motivation

To have an object with representation logic that is able to convert complex object into array/string representation and vice versa. According to the same rules. For example: serialize for AJAX data output and restore backend domain model on POST operation. To have representation free of persistency or domain logic.
Or to use inside backend app for some kind of data mapping.

Examples

See tests for the most recent version.

Assume some Object with data that could not be simply json-encoded

class Post
{
    public $title = 'Cool story bro';
    public $status = 1;
    public $pubDate;

    public function __construct()
    {
        $this->pubDate = new \DateTime();
    }
}

Create Representer class with representation rules. You can rename options, assing default value (in case if it will be null) and specify custom geter/setter

class PostRepresenter
{
    use \einfach\representer\Representer;

    public function rules()
    {
        return [
            $this->property('title')
                ->rename('titleAs')
                ->def('Hi there!'),

            $this->property('status'),

            $this->property('pubDate')
                ->getter([$this, 'showDate'])
                ->setter([$this, 'extractDate'])
        ];
    }

    public function showDate($object, $attributeName)
    {
        return $object->$attributeName->format('Y-m-d');
    }

    public function extractDate($object, $attributeName, $value)
    {
        return \DateTime::createFromFormat('Y-m-d', $value);
    }
}

Representation

$post = new Post();
$projection = PostRepresenter::one($post)->toArray();

Collection Representation

$post1 = new Post();
$post2 = new Post();
$post3 = new Post();
$posts = [$post1, $post2, $post3];
$projection = PostRepresenter::collection($posts)->toArray();

Restore object from representation

Restoring object from presentation array data

$restoredPost = PostRepresenter::restore(Post::class)->fromArray($projection);

Restore objects Collection from representation

$restoredPosts = PostRepresenter::restoreCollection(Post::class)->fromArray($collectionProjection);

Serialization

You can serialize object directly to JSON or YAML. Serialization ability should be added via corresponding Trait

class PostRepresenter
{
    use \einfach\representer\Representer;
    use \einfach\representer\serializer\JSON;
    ....
}

$projection = PostRepresenter::one($post)->toJSON();
class PostRepresenter
{
    use \einfach\representer\Representer;
    use \einfach\representer\serializer\YAML;
    ....
}

$projection = PostRepresenter::one($post)->toYAML();

All the same goes for Collection representation.

De-serialisation

Pretty similar to serialisation it has reverse functions

  • fromArray
  • fromJSON
  • fromYAML
class PostRepresenter
{
    use \einfach\representer\Representer;
    use \einfach\representer\serializer\JSON;
    ....
}

$projection = PostRepresenter::one($post)->toJSON();
$object = PostRepresenter::one($post)->fromJSON($projection);

Functionality ideas:

  • Traits composition (Representers not inherited, but added via Traits)
  • Serialisation/de-serialisation (toJSON, toYAML)
  • De-serialisation (fromJSON, fromYAML, fromArray)
  • Collection representation ::collection and ->collection().
  • Wrapping collections ->wrap('items') and ->removeWrap() for ->collection()
  • Inverse property declaration (to allow any property name in projection, not coupled with source)
  • Property rules: render_null (Manage default? Example rename: function($object, $attr) { return uppercase($attr); } )
  • Property decoration/Nested serialization (->representer(ArtistRepresenter::class)->class(Artist::class))
  • Nested properties ->property('artist')->nested([ $this->property('films')->..., $this->property('name')->... ])
  • Ability for "array to array" and "object to object" representations
  • Coersion (->int, ->float, ->string). A way to coerce complex types/classes, DateTime?
  • External options in ::one, ::collection (should be passed to all $callables)
  • Check that Representer inheritance overwrites rules (try to do partial overwrite with ->inherit(true))
  • Try to do Representer mixins (via Traits?)
  • Do a benchmark with https://github.com/phpbench/phpbench

Credits

License

The MIT License (MIT). Please see License File for more information.