downsider / clay
Create lightweight models and apply complex data structures to them
Installs: 6 937
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: >=8.0
- ext-mbstring: *
- lexide/k-switch: 2.0 - 2.1
Requires (Dev)
- dms/phpunit-arraysubset-asserts: ^0.3.0
- phpunit/phpunit: ^9.5
- symfony/yaml: ^2.8
README
Clay allows you to populate a model object with an array of data (from a database or other data store) without having to manually apply the values by hand. Data is applied to the model based on the name of each property, either directly or via setters if they are available. Clay supports nested array data and properties which contain other objects (in a multi layered data structure) as well as automatically converting keys to camel case when applying data to the model.
installation
Install via composer
composer require lexide/clay
Simple Example
To use Clay, a model should use the ModelTrait trait and implement a method which calls loadData()
class Model
{
use Lexide\Clay\Model\ModelTrait;
public $property;
...
public function __construct(array $data = [])
{
$this->loadData($data);
}
}
The model can then be instantiated, passing data to the constructor
$data = ["property" => "value", ...];
$model = new Model($data);
echo $model->property; // outputs "value"
Data with underscored or spaced keys will be applied to their camel case counterparts:
$data = [
"long_field_name" => ... // will apply to the property "longFieldName"
"property name with spaces" => ... // will apply to "propertyNameWithspaces"
];
Object instantiation
If you want a subset of the data to be contained within a second class, you simply need to type-hint the supplied argument in a setter
class Address
{
use Lexide\Clay\Model\ModelTrait;
public $street;
public $city;
public function __construct(array $data = [])
{
$this->loadData($data);
}
}
class Customer
{
use Lexide\Clay\Model\ModelTrait;
protected $address;
public function __construct(array $data = [])
{
$this->loadData($data);
}
public function setAddress(Address $address)
{
$this->address = $address;
}
}
$data = [
"address": [
"street" => "1 test street",
"city" => "exampleton"
]
]
$customer = new Customer($data);
echo $customer->getAddress()->city; // outputs "exampleton"
Object collections
The same can be done for an array or collection of objects. Clay looks for an "add" method for that property to determine the class to instantiate
class Customer
{
use Lexide\Clay\Model\ModelTrait;
protected $addresses = [];
public function __construct(array $data = [])
{
$this->loadData($data);
}
public function setAddresses(array $addresses)
{
$this->addresses = [];
foreach ($addresses as $address) {
$this->addAddresses($address));
}
}
public function addAddresses(Address $address)
{
$this->addresses[] = $address;
}
}
$data = [
"addresses": [
[
"street" => "1 Test street",
"city" => "Exampleton"
],
[
"street" => "22 Sample row",
"city" => "Testville"
]
]
]
$customer = new Customer($data);