giacomofurlan / object-trans-mapper-validator
Map stdClass objects into particular classes and perform validation
Installs: 9 808
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/giacomofurlan/object-trans-mapper-validator
Requires
- php: >=7.1.0
- doctrine/annotations: >=1.3.0
Requires (Dev)
- phpunit/phpunit: ~6
README
This library aims to easily create both data-mappers and validators from the HTTP request down to a model.
Instead of manually validating every single request checking if the variable exists, if the type is correct etc, and eventually push the data into a model, this library is able to parse the request and automatically map it into a given class, as easy as the following:
$requestData = json_decode($payload); // whatever
$data = $this->transmapper->map($requestData, MyModel::class[, ...$override]);
It supports all the scalar values (bool, int, float, string), classes and arrays (both of scalar values or classes)
recursively.
How to use
First of all, create a new model class where the data will be pushed in. Its constructor must be argument-less!
class MyModel {
// eventual argument-less constructor
public function __constructor() {
...
}
Then we can add some variables, using the GiacomoFurlan\ObjectTransmapperValidator\Annotation\Validation\Validate annotation
in order to describe the validation
class MyModel {
/**
* @var bool
* @Validate(
* options here
* )
*/
private $myBoolean;
The only mandatory option is type, which can be any of the scalar values and their aliases (bool, boolean, int,
integer, float, double, string), an array of scalar values (es. int[] or integer[]), a class name
(fully qualified name, i.e. My\Full\Namespace\ClassName) or an array of objects (always fully qualified name,
i.e. My\Full\Namespace\ClassName[]).
You can optionally extend the model with GiacomoFurlan\ObjectTransmapperValidator\Model\MappedModel, which provides
the method isMapped(string $attribute) : bool. Note that extending this model will forbid the use of _mapped as
attribute name in your model (the attribute's value will be ignored).
To trans-map the standard object to the given model, call the transmapper's map method:
$myTransmapper->map($stdClass, MyModel::class[, $override1, $override2...])
Overrides allow you to dynamically change some aspects of the validation in order to make the system dynamic depending
on the environment variables, in particular: mandatory, nullable and regex. These overrides will follow the specs
of the options written below. The format is the following: ['dot.notation.variable' => ['mandatory' => true, 'nullable' => true]]
Override examples:
['myString' => ['regex' => '/^must_start_with_string/']]['myInt' => ['mandatory' => false]]['mySubModel.myVar' => [...]]
The options are:
typestringmandatoryboolean (default true), the source object must contain the attributenullableboolean (default false), the source may contain the attribute, even if it can be null regardless of the specified typeregexstring (default null), the regex to check against the value to map. Performed only iftype="string"typeExceptionClassstring, the fully-qualified class name of the exception to throw in case of type mismatchtypeExceptionMessagestring, the message thrown for the previous exception, must instert two%s: (1) found type, (2) expected typetypeExceptionCodeint, the type mismatch exception's code (default 3000)mandatoryExceptionClassstring, the fully-qualified class name of the exception to throw in case of missing mandatory attributemandatoryExceptionMessagestring, the message thrown for the previous exception, must instert one%sfor the missing attribute's namemandatoryExceptionCodeint, the mandatory exception's code (default 3001)regexExceptionClassstring, the fully-qualified class name of the exception to throw in case of regex mismatchregexExceptionMessagestring, the message thrown for the previous exception, must instert two%s: (1) the value, (2) the regexregexExceptionCodeint, the regex exception's code (default 3002)