Download the PHP package hitrain/jsonmapper without Composer
On this page you can find all versions of the php package hitrain/jsonmapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hitrain/jsonmapper
More information about hitrain/jsonmapper
Files in hitrain/jsonmapper
Package jsonmapper
Short Description Map nested JSON structures onto PHP classes
License OSL-3.0
Informations about the package jsonmapper
JsonMapper - map nested JSON structures onto PHP classes
Takes data retrieved from a JSON web service and converts them into nested object and arrays - using your own model classes.
Starting from a base object, it maps JSON data on class properties, converting them into the correct simple types or objects.
It's a bit like the native SOAP parameter mapping PHP's SoapClient
gives you, but for JSON.
It does not rely on any schema, only your PHP class definitions.
Type detection works by parsing @var
docblock annotations of
class properties, as well as type hints in setter methods.
You do not have to modify your model classes by adding JSON specific code; it works automatically by parsing already-existing docblocks.
Keywords: deserialization, hydration
Pro & contra
Benefits
- Autocompletion in IDEs
- It's easy to add comfort methods to data model classes
- Your JSON API may change, but your models can stay the same - not breaking applications that use the model classes.
Drawbacks
- Model classes need to be written by hand Since JsonMapper does not rely on any schema information (e.g. from json-schema), model classes cannot be generated automatically.
Usage
Basic usage
- Register an autoloader that can load PSR-0 compatible classes.
- Create a
JsonMapper
object instance - Call the
map
ormapArray
method, depending on your data
Map a normal object:
Map an array of objects:
Instead of array()
you may also use ArrayObject
and descending classes.
Example
JSON from an address book web service:
javascript
{ 'name':'Sheldon Cooper', 'address': { 'street': '2311 N. Los Robles Avenue', 'city': 'Pasadena' } }
Your local Contact
class:
Your local Address
class:
Your application code:
Property type mapping
JsonMapper
uses several sources to detect the correct type of
a property:
- The setter method (
set
+ucwords($propertyname)
) is inspected. Underscores "_
" and hyphens "-
" make the next letter uppercase. Propertyfoo_bar-baz
leads to setter methodsetFooBarBaz
. - If it has a type hint in the method signature then its type used:: public function setPerson(Contact $person) {...}
- The method's docblock is inspected for
@param $type
annotations:: /** - @param Contact $person Main contact for this application */ public function setPerson($person) {...}
- If no type could be detected, the plain JSON value is passed to the setter method.
@var $type
docblock annotation of class properties:: /**- @var \my\application\model\Contact
*/
public $person;
The property has to be public to be used directly.
Protected and private properties cannot be set; you will have to
provide a setter method for them.
If no type could be detected, the property gets the plain JSON value set.
If a property can not be found, JsonMapper tries to find the property
in a case-insensitive manner.
A JSON property
isempty
would then be mapped to a PHP propertyisEmpty
.
Supported type names
- Simple types
string
bool
,boolean
int
,integer
double
,float
array
object
- Class names, with and without namespaces
Contact
- exception will be thrown if the JSON value isnull
- Arrays of simple types and class names:
int[]
Contact[]
- Multidimensional arrays:
int[][]
TreeDeePixel[][][]
- ArrayObjects of simple types and class names:
ContactList[Contact]
NumberList[int]
- Nullable types:
int|null
- will benull
if the value in JSON isnull
, otherwise it will be an integerContact|null
- will benull
if the value in JSON isnull
, otherwise it will be an object of typeContact
ArrayObjects and extending classes are treated as arrays.
Variables without a type or with type mixed
will get the
JSON value set directly without any conversion.
See phpdoc's type documentation for more information.
Different property name
When need mapping different property name from json to local class
Your local Contact
class:
PHP code:
PHP code:
Simple type mapping
When an object shall be created but the JSON contains a simple type only (e.g. string, float, boolean), this value is passed to the classes' constructor. Example:
PHP code:
JSON:
js
{"date":"2014-05-15"}
This will result in new DateTime('2014-05-15')
being called.
Class map
When variables are defined as objects of abstract classes or interfaces, JsonMapper would normally try to instantiate those directly and crash.
Using JsonMapper's $classMap
property, you can specify which classes
shall get instantiated instead:
This would create objects of type Bar
when a variable is defined to be
of type Foo
.
Nullables
JsonMapper throws an exception when a JSON property is null
,
unless the PHP class property has a nullable type - e.g. Contact|null
.
If your API contains many fields that may be null
and you do not want
to make all your type definitions nullable, set:
Logging
JsonMapper's setLogger()
method supports all PSR-3 compatible
logger instances.
Events that get logged:
- JSON data contain a key, but the class does not have a property or setter method for it.
- Neither setter nor property can be set from outside because they are protected or private
Handling invalid or missing data
During development, APIs often change. To get notified about such changes, JsonMapper can be configured to throw exceptions in case of either missing or yet unknown data.
Unknown properties
When JsonMapper sees properties in the JSON data that are
not defined in the PHP class, you can let it throw an exception
by setting $bExceptionOnUndefinedProperty
:
You may also choose to handle those properties yourself by setting
a callable to $undefinedPropertyHandler
:
Missing properties
Properties in your PHP classes can be marked as "required" by
putting @required
in their docblock:
When the JSON data do not contain this property, JsonMapper will throw
an exception when $bExceptionOnMissingData
is activated:
Private properties and functions
You can allow mapping to private and protected properties and
setter methods by setting $bIgnoreVisibility
to true:
Simple types instead of objects
When a variable's type is a class and JSON data is a simple type
like string
, JsonMapper passes this value to the class' constructor.
If you do not want this, set $bStrictObjectTypeChecking
to true
:
An exception is then thrown in such cases.
Passing arrays to map()
You may wish to pass array data into map()
that you got by calling
Installation
via Composer
From Packagist:
$ composer require netresearch/jsonmapper
via PEAR
With version 1.0.0 JsonMapper moved to PEAR channel https://zustellzentrum.cweiske.de/
From our PEAR channel:
$ pear channel-discover zustellzentrum.cweiske.de
$ pear install zz/jsonmapper
Related software
- Jackson's data binding for Java
- Johannes Schmitt Serializer for PHP
- metassione for PHP
About JsonMapper
License
JsonMapper is licensed under the OSL 3.0.
Coding style
JsonMapper follows the PEAR Coding Standards.
Author
cweiske.de