2013-07-08 13:11:07 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Guzzle\Service\Resource;
|
|
|
|
|
|
|
|
use Guzzle\Common\Collection;
|
|
|
|
use Guzzle\Service\Description\Parameter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default model created when commands create service description model responses
|
|
|
|
*/
|
|
|
|
class Model extends Collection
|
|
|
|
{
|
|
|
|
/** @var Parameter Structure of the model */
|
|
|
|
protected $structure;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $data Data contained by the model
|
|
|
|
* @param Parameter $structure The structure of the model
|
|
|
|
*/
|
|
|
|
public function __construct(array $data = array(), Parameter $structure = null)
|
|
|
|
{
|
|
|
|
$this->data = $data;
|
2014-08-28 02:10:31 +04:00
|
|
|
$this->structure = $structure;
|
2013-07-08 13:11:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the structure of the model
|
|
|
|
*
|
|
|
|
* @return Parameter
|
|
|
|
*/
|
|
|
|
public function getStructure()
|
|
|
|
{
|
2014-08-28 02:10:31 +04:00
|
|
|
return $this->structure ?: new Parameter();
|
2013-07-08 13:11:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides debug information about the model object
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function __toString()
|
|
|
|
{
|
2014-08-28 02:10:31 +04:00
|
|
|
$output = 'Debug output of ';
|
|
|
|
if ($this->structure) {
|
|
|
|
$output .= $this->structure->getName() . ' ';
|
|
|
|
}
|
|
|
|
$output .= 'model';
|
2013-07-08 13:11:07 +04:00
|
|
|
$output = str_repeat('=', strlen($output)) . "\n" . $output . "\n" . str_repeat('=', strlen($output)) . "\n\n";
|
|
|
|
$output .= "Model data\n-----------\n\n";
|
|
|
|
$output .= "This data can be retrieved from the model object using the get() method of the model "
|
|
|
|
. "(e.g. \$model->get(\$key)) or accessing the model like an associative array (e.g. \$model['key']).\n\n";
|
|
|
|
$lines = array_slice(explode("\n", trim(print_r($this->toArray(), true))), 2, -1);
|
2014-08-28 02:10:31 +04:00
|
|
|
$output .= implode("\n", $lines);
|
2013-07-08 13:11:07 +04:00
|
|
|
|
2014-08-28 02:10:31 +04:00
|
|
|
if ($this->structure) {
|
|
|
|
$output .= "\n\nModel structure\n---------------\n\n";
|
|
|
|
$output .= "The following JSON document defines how the model was parsed from an HTTP response into the "
|
|
|
|
. "associative array structure you see above.\n\n";
|
|
|
|
$output .= ' ' . json_encode($this->structure->toArray()) . "\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output . "\n";
|
2013-07-08 13:11:07 +04:00
|
|
|
}
|
|
|
|
}
|