Coder Social home page Coder Social logo

rekalogika / mapper Goto Github PK

View Code? Open in Web Editor NEW
21.0 2.0 0.0 1.05 MB

An object mapper for PHP and Symfony. Maps an object to another object. Primarily used for transforming an entity to a DTO and vice versa.

License: MIT License

PHP 97.69% Makefile 0.07% Twig 2.24%
api api-platform automapper dto mapper mapping php symfony transformation

mapper's Introduction

rekalogika/mapper

rekalogika/mapper is an object mapper for PHP and Symfony, also commonly known as an automapper. It maps an object to another object. Primarily used to map an entity to a DTO, but also useful for other mapping purposes. It removes the complexity of mapping an object to another object, and even an object graph to another object graph.

Full documentation is available at rekalogika.dev/mapper.

Installation

composer require rekalogika/mapper

Usage

use App\Entity\Book;
use Rekalogika\Mapper\MapperInterface;

// map a single object:

/** @var MapperInterface $mapper */
/** @var Book $book */

$result = $mapper->map($book, BookDto::class);

// map a single object to an existing object:

$bookDto = new BookDto();
$mapper->map($book, $bookDto);

// map an iterable of objects:

/** @var IterableMapperInterface $iterableMapper */
/** @var iterable<Book> $books */

$bookDtos = $iterableMapper->mapIterable($books, BookDto::class);

Why Use a Mapper?

Why do we need to use a mapper to save a few keystrokes, and not just use something simple like this?

class BookDto
{
    public static function create(Book $book): self
    {
        $dto = new self();
        // ...

        return $dto;
    }
}

Everyone must have that idea at some point. However, as the project grows, the target classes (DTOs) may start to reference each other, and become a rich object graph. Your code will start to have many special cases, and is no longer as simple as you thought it would be. It becomes harder to maintain, and then eventually forces you to sit back and try to resolve the problem. When (if?) you successfully engineer a solution, you will end up with something that resembles a mapping framework anyway.

Mapping can be simple, but can also become a highly complex task. A mapper is created out of necessity to handle the complexity, not just as a means of saving a few keystrokes.

Features

General

  • Automatically lists the properties of the source and target, detects their types, and maps them accordingly.
  • Reads the type from PHP type declaration and PHPDoc annotations, including the type of the nested objects.
  • Does not attempt to circumvent your class constraints. Reads only from and writes only to public properties, getters, setters. Does not instantiate objects without their constructor.
  • Constructor initialization.
  • Handles nested objects.
  • Handles recursion and circular references.
  • Inheritance support. Maps to abstract classes and interfaces using an inheritance map attribute.
  • Maps to and from stdClass, objects extending stdClass, and other objects with dynamic properties (#[AllowDynamicProperties]).
  • Maps an object to an array, and vice versa.
  • Support for third-party objects: Doctrine Collections, Symfony Uid, Ramsey UUID.

Custom Mapping

  • Override the mapping of a specific property using a custom property mapper.
  • Override the mapping between two specific classes using a custom object mapper.
  • Extend the mapper by creating new transformers, or decorating the existing ones.
  • Match classes using attributes in your transformers, in addition to using class names.
  • Preset mapping. Provide a table of predetermined mappings that the mapper can use.

Object Lazy-Loading

  • If possible, target objects are lazy-loaded. The mapping does not take place until the target is accessed, and will never take place if it is never accessed.
  • Attempts to detect identifier properties on the source side. Those properties will be mapped eagerly to the target side, as they should not trigger the hydration of the source. As an example, API Platform will be able to generate IRIs without causing Doctrine to hydrate the entire object graph.

Arrays and Array-Like Objects

  • Handles the mapping between array or array-like objects.
  • Handles adder and remover methods on the target side.
  • Handles non-string & non-integer keys in array-like objects, including SplObjectStorage.
  • Option to remove existing items from the target if they are not present in the source.

Array-Like Lazy-Loading

  • Lazy loading if the target is type-hinted with ArrayAccess, Traversable or CollectionInterface. The target will not iterate the source object until it is accessed, or never if it is never accessed.
  • Stream mapping. Maps the source members to the target side as they are being iterated. This may consume less memory.
  • With lazy loading, if the source is a Countable, then the target will also be a Countable. With an extra-lazy Doctrine Collection, the consumer will be able to count the target without causing a full hydration of the source.

Development Experience (DX)

  • Helpful exception messages.
  • Console commands for debugging.
  • Data collector and profiler integration.
  • Coded from the start using PHP 8, strict types, and maxed-out PHPStan and Psalm level.

To-Do List

  • Option to read & write to private properties.
  • Migrate engine to symfony/type-info.
  • Auto-detect static factory method.
  • Use our own interface for proxy objects.
  • MapFrom and MapTo attributes.
  • Improve non-framework usage.
  • Warm up proxies on build time from the list of classes provided by the user.
  • Lazy-loading using Doctrine Collection type hint on the target side.

Documentation

rekalogika.dev/mapper

License

MIT

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.