High performance input mapper for PHP with support for generics, array shapes and nullable types. For each input class, a mapper is generated at runtime and cached on disk. The mapper is generated only once and then reused on subsequent requests. The generated mapper is highly optimized for performance and it is designed to be human readable. You can see example of generated mappers in the tests directory.
composer require shipmonk/input-mapperInput Mapper comes with built-in mappers for the following types:
array,bool,float,int,mixed,string,listpositive-int,negative-int,int<TMin, TMax>,non-empty-listarray<V>,array<K, V>,list<V>,non-empty-list<V>array{K1: V1, ...}?T,Optional<T>DateTimeInterface,DateTimeImmutableBackedEnum- and most importantly classes with public constructor
You can write your own mappers or replace the default mappers with your own.
Input Mapper comes with some built-in validators:
- int validators:
AssertInt16AssertInt32AssertIntRangeAssertPositiveIntAssertNegativeIntAssertNonNegativeIntAssertNonPositiveIntAssertIntMultipleOf
- float validators:
AssertFloatRangeAssertPositiveFloatAssertNegativeFloatAssertNonNegativeFloatAssertNonPositiveFloatAssertFloatMultipleOf
- string validators:
AssertStringLengthAssertStringMatchesAssertUrl
- list validators:
AssertListItemAssertListLengthAssertUniqueItems(compares items by===)
- date time validators:
AssertDateTimeRange
You can write your own validators if you need more.
To use Input Mapper, write a class with a public constructor and add either native or PHPDoc types to all constructor parameters.
Optional fields can either be marked with #[Optional] attribute (allowing you to specify a default value),
or if you need to distinguish between default and missing values, you can wrap the type with ShipMonk\InputMapper\Runtime\Optional class.
use ShipMonk\InputMapper\Compiler\Mapper\Optional;
class Person
{
public function __construct(
public readonly string $name,
public readonly int $age,
#[Optional]
public readonly ?string $email,
/** @var list<string> */
public readonly array $hobbies,
/** @var list<self> */
#[Optional(default: [])]
public readonly array $friends,
) {}
}By default, any extra properties are not allowed. You can change that by adding #[AllowExtraKeys] over the class.
To map input, provide a path to a writable directory where generated mappers will be stored.
It's important to set $autoRefresh to false in production to avoid recompiling mappers on every request.
$tempDir = sys_get_temp_dir() . '/input-mapper';
$autoRefresh = true; // MUST be set to false in production
$mapperProvider = new ShipMonk\InputMapper\Runtime\MapperProvider($tempDir, $autoRefresh);
$mapper = $mapperProvider->get(Person::class);
try {
$person = $mapper->map([
'name' => 'John',
'age' => 30,
'hobbies' => ['hiking', 'reading'],
'friends' => [
[
'name' => 'Jane',
'age' => 28,
'hobbies' => ['hiking', 'reading'],
],
[
'name' => 'Jack',
'age' => 28,
'hobbies' => ['hiking', 'reading'],
],
],
]);
} catch (\ShipMonk\InputMapper\Runtime\Exception\MappingFailedException $e) {
// $e->getMessage() // programmer readable error message in English
// $e->getPath() // path of the problematic field for example ['friends', 0, 'name']
// ...
}You can add validation rules by adding attributes to constructor parameters.
For example, to validate that age is between 18 and 99, you can add the AssertIntRange attribute to the constructor parameter:
use ShipMonk\InputMapper\Compiler\Validator\Int\AssertIntRange;
class Person
{
public function __construct(
public readonly string $name,
#[AssertIntRange(gte: 18, lte: 99)]
public readonly int $age,
) {}
}If the input keys do not match the property names, you can use the #[SourceKey] attribute to specify the key name:
use ShipMonk\InputMapper\Compiler\Mapper\Object\SourceKey;
class Person
{
public function __construct(
#[SourceKey('full_name')]
public readonly string $name,
) {}
}If you need to parse a hierarchy of classes, you can use the #[Discriminator] attribute.
(The discriminator field does not need to be mapped to a property if #[AllowExtraKeys] is used.)
use ShipMonk\InputMapper\Compiler\Mapper\Object\Discriminator;
#[Discriminator(
key: 'type', // key to use for mapping
mapping: [
'car' => Car::class,
'truck' => Truck::class,
]
)]
abstract class Vehicle {
public function __construct(
public readonly string $type,
) {}
}
class Car extends Vehicle {
public function __construct(
string $type,
public readonly string $color,
) {
parent::__construct($type);
}
}
class Truck extends Vehicle {
public function __construct(
string $type,
public readonly string $color,
) {
parent::__construct($type);
}
}or, with enum:
use ShipMonk\InputMapper\Compiler\Mapper\Object\Discriminator;
enum VehicleType: string {
case Car = 'car';
case Truck = 'truck';
}
#[Discriminator(
key: 'type', // key to use for mapping
mapping: [
VehicleType::Car->value => Car::class,
VehicleType::Truck->value => Truck::class,
]
)]
abstract class Vehicle {
public function __construct(
VehicleType $type,
) {}
}
class Car extends Vehicle {
public function __construct(
VehicleType $type,
public readonly string $color,
) {
parent::__construct($type);
}
}
class Truck extends Vehicle {
public function __construct(
VehicleType $type,
public readonly string $color,
) {
parent::__construct($type);
}
}To map classes with your custom mapper, you need to implement ShipMonk\InputMapper\Runtime\Mapper interface and register it with MapperProvider:
class MyCustomMapper implements ShipMonk\InputMapper\Runtime\Mapper
{
public function map(mixed $data, array $path = []): mixed
{
return MyCustomClass::createFrom($data);
}
}
$mapperProvider->registerFactory(MyCustomClass::class, function () {
return new MyCustomMapper();
});To customize how default mappers are inferred from types, you need to implement
ShipMonk\InputMapper\Compiler\MapperFactory\MapperCompilerFactoryandShipMonk\InputMapper\Compiler\MapperFactory\MapperCompilerFactoryProvider.
Then register your factory provider with MapperProvider:
$mapperProvider = new ShipMonk\InputMapper\Runtime\MapperProvider(
tempDir: $tempDir,
autoRefresh: $autoRefresh,
mapperCompilerFactoryProvider: new MyCustomMapperCompilerFactoryProvider(),
);- Check your code by
composer check - Autofix coding-style by
composer fix:cs - All functionality must be tested