Say I have three tables:
CREATE TABLE divisions {
idDivision INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR (40) NOT NULL
}
CREATE TABLE clubs {
idClub INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
idDivision INT NOT NULL,
name VARCHAR(40) NOT NULL
}
CREATE TABLE footballers (
idFootballer INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
idClub INT NOT NULL,
name VARCHAR (40) NOT NULL
)
And I have some lovely Phalcon models to represent those.
Now, what I would like to do is do this:
$divisions = new Divisions();
print json_encode($divisions::findFirst(), JSON_NUMERIC_CHECK);
And that return a JSON object something like:
{
idDivision: 1,
name: "Welsh Premier League",
clubs: [
{
idClub: 1,
idDivision: 1,
name: "Airbus UK",
players: [
{
idPlayer: 1,
idClub: 1,
name: "Alf Jones"
},
...
]
},
..
]
}
Is there an easy way to do this with a Phalcon model? :)
To get the nested models automatically use this recursive function.
$getRelations = function($model, $namespace, $alias = null, $instances = null) use (&$getRelations)
{
$modelsManager = $model->getModelsManager();
$relations = $modelsManager->getRelations($namespace);
if (is_null($instances)) {
$response = $model->toArray();
}
if (count($relations)) {
// loop relations
foreach ($relations as $i => $relation) {
$options = $relation->getOptions();
// get alias
if (isset($options['alias'])) {
$subAlias = $options['alias'];
$modelName = $relation->getReferencedModel();
$subModel = new $modelName();
// get from model
if (is_null($alias) && count($model->{$subAlias})) {
$response[$subAlias] = $getRelations(
$subModel, $modelName, $subAlias, $model->{$subAlias}
);
// get from object instance
} elseif (count($instances)) {
foreach ($instances as $k => $instance) {
$response[$k] = $instance->toArray();
$response[$k][$subAlias] = $getRelations(
$subModel, $modelName, $subAlias, $instance->{$subAlias}
);
}
}
}
}
} else {
$response = $instances->toArray();
}
return $response;
};
You can call it like this:
$model = new Division::findFirst($divisionId);
$namespace = 'AppName\Models\Division';
$data = $getRelations($model, $namespace);
$this->response->setJsonContent($data);
Make sure you define an alias for each nested model like so:
class Division extends \Phalcon\Mvc\Model
{
public function initialize()
{
$this->hasMany('id', 'AppName\Models\Club', 'division_id', array(
'alias' => 'clubs'
));
}
}
UPDATE
Use the code below instead (put it inside your base model). This new code will allow you to fetch relations on a new (empty) model.
public function getModelName()
{
return get_called_class();
}
public function toArray($columns = null, $isRelated = false)
{
return !$isRelated ? parent::toArray($columns) : $this->_toArrayRelations();
}
private function _toArrayRelations()
{
$getRelations = function($model, $instances = null) use (&$getRelations)
{
$hasInstances = count($instances);
$modelsManager = $model->getModelsManager();
$relations = $modelsManager->getRelations($model->getModelName());
if (!$hasInstances) {
$response = $model->toArray();
}
if (count($relations)) {
// loop relations
foreach ($relations as $i => $relation) {
$options = $relation->getOptions();
// get alias
if (isset($options['alias'])) {
$subAlias = $options['alias'];
$modelName = $relation->getReferencedModel();
$subModel = new $modelName();
$subModelRelation = $model->{$subAlias};
// get from model
if (!$hasInstances) {
$response[$subAlias] = $getRelations(
$subModel, $subModelRelation
);
// get from object instance
} else {
foreach ($instances as $k => $instance) {
$response[$k] = $instance->toArray();
$response[$k][$subAlias] = $getRelations(
$subModel, $instance->{$subAlias}
);
}
}
}
}
} elseif ($hasInstances) {
foreach ($instances as $k => $instance) {
$response[$k] = $instance->toArray();
}
}
return $response;
};
return $getRelations($this);
}
It's also easier to call from the controller.
$model = new Division::findFirst($divisionId);
$data = $model->toArray(null, 1);
$this->response->setJsonContent($data);
In Phalcon, you can define the relation between models inside model itself. Example:
class FirstModel extends \Phalcon\Mvc\Model
{
public function initialization()
{
$this->hasMany('field', SecondModel::class, 'referenceField', [options]);
}
}
class SecondModel extends \Phalcon\Mvc\Model
{
public function initialization()
{
$this->hasMany('field', ThirdModel::class, 'referenceField', [options]);
}
}
class ThirdModel extends \Phalcon\Mvc\Model
{
// ... some code
}
Finally:
$results = FirstModel::find();
来源:https://stackoverflow.com/questions/27124423/php-phalcon-automatically-nesting-objects