. */ namespace Volkszaehler\View; use Doctrine\ORM\Query\AST\Functions; use Volkszaehler\Interpreter; use Volkszaehler\View\HTTP; use Volkszaehler\Util; use Volkszaehler\Model; /** * JSON view * * @package default * @author Steffen Vogel */ class JSON extends View { /** * @var array holds the JSON data in an array */ protected $json; /** * @var string padding function name or NULL if disabled */ protected $padding = FALSE; /** * constructor */ public function __construct(HTTP\Request $request, HTTP\Response $response) { parent::__construct($request, $response); $this->json = new Util\JSON(); $this->json['source'] = 'volkszaehler.org'; $this->json['version'] = VZ_VERSION; $this->json['component'] = 'backend'; $this->setPadding($request->getParameter('padding')); } /** * Process, encode and print output */ protected function render() { $json = $this->json->encode((Util\Debug::isActivated()) ? JSON_PRETTY : 0); if ($this->padding) { $json = 'if (' . $this->padding . ') { ' . $this->padding . '(' . $json . '); }'; } $this->response->setHeader('Content-type', 'application/json'); echo $json; } /** * Add channel to output queue * * @param Model\Channel $channel */ protected function addEntity(Model\Entity $entity) { if ($entity instanceof Model\Aggregator) { $this->json['entity'] = self::convertAggregator($entity); } else { $this->json['entity'] = self::convertEntity($entity); } } /** * Add debugging information include queries and messages to output queue * * @param Util\Debug $debug */ protected function addDebug(Util\Debug $debug) { $queries = $debug->getQueries(); $messages = $debug->getMessages(); $jsonDebug['time'] = $debug->getExecutionTime(); if (count($messages) > 0) { $jsonDebug['messages'] = $messages; } if (count($queries) > 0) { $jsonDebug['database'] = array( 'driver' => Util\Configuration::read('db.driver'), 'queries' => $queries ); } $this->json['debug'] = $jsonDebug; } /** * Add exception to output queue * * @param \Exception $exception * @param boolean $debug */ protected function addException(\Exception $exception, $debug = FALSE) { $exceptionInfo = array( 'type' => get_class($exception), 'message' => $exception->getMessage(), 'code' => $exception->getCode() ); if ($debug) { $debugInfo = array('file' => $exception->getFile(), 'line' => $exception->getLine(), 'trace' => $exception->getTrace() ); $this->json['exception'] = array_merge($exceptionInfo, $debugInfo); } else { $this->json['exception'] = $exceptionInfo; } } /** * Add data to output queue * * @param Interpreter\InterpreterInterface $interpreter */ protected function addData(Interpreter\InterpreterInterface $interpreter) { $data = $interpreter->getValues($this->request->getParameter('tuples'), $this->request->getParameter('group')); $this->json['data'][] = array( 'uuid' => $interpreter->getUuid(), 'count' => count($data), 'min' => $interpreter->getMin(), 'max' => $interpreter->getMax(), 'average' => $interpreter->getAverage(), 'tuples' => $data ); } protected function addArray($data) { foreach ($data as $index => $value) { $this->json[$index] = $value; } } /** * Converts entity to array for json_encode() * * @param Model\Entity $entity * @return array */ protected static function convertEntity(Model\Entity $entity) { $jsonEntity = array(); $jsonEntity['uuid'] = (string) $entity->getUuid(); $jsonEntity['type'] = $entity->getType(); foreach ($entity->getProperties() as $key => $value) { $jsonEntity[$key] = $value; } return $jsonEntity; } /** * Converts aggregator to array for json_encode * * @param Model\Aggregator $aggregator * @param boolean $recursive * @return array */ protected static function convertAggregator(Model\Aggregator $aggregator) { $jsonAggregator = self::convertEntity($aggregator); foreach ($aggregator->getChildren() as $entity) { if ($entity instanceof Model\Channel) { $jsonAggregator['children'][] = self::convertEntity($entity); } elseif ($entity instanceof Model\Aggregator) { $jsonAggregator['children'][] = self::convertAggregator($entity); } } return $jsonAggregator; } public function add($data) { if ($data instanceof Util\JSON || is_array($data)) { $this->addArray($data); } else { parent::add($data); } } /* * Setter & getter */ public function setPadding($padding) { $this->padding = $padding; } } ?>