giacomofurlan / object-trans-mapper-validator
Map stdClass objects into particular classes and perform validation
Installs: 9 806
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
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:
type
stringmandatory
boolean (default true), the source object must contain the attributenullable
boolean (default false), the source may contain the attribute, even if it can be null regardless of the specified typeregex
string (default null), the regex to check against the value to map. Performed only iftype="string"
typeExceptionClass
string, the fully-qualified class name of the exception to throw in case of type mismatchtypeExceptionMessage
string, the message thrown for the previous exception, must instert two%s
: (1) found type, (2) expected typetypeExceptionCode
int, the type mismatch exception's code (default 3000)mandatoryExceptionClass
string, the fully-qualified class name of the exception to throw in case of missing mandatory attributemandatoryExceptionMessage
string, the message thrown for the previous exception, must instert one%s
for the missing attribute's namemandatoryExceptionCode
int, the mandatory exception's code (default 3001)regexExceptionClass
string, the fully-qualified class name of the exception to throw in case of regex mismatchregexExceptionMessage
string, the message thrown for the previous exception, must instert two%s
: (1) the value, (2) the regexregexExceptionCode
int, the regex exception's code (default 3002)