1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 10:49:37 +02:00
ampache/modules/Tmdb/Factory/AbstractFactory.php
Afterster d842ebbb00 Add art on Videos
Add videos support to Subsonic and UPnP APIs
Update Tmdb module
2014-07-06 20:46:46 +02:00

119 lines
3 KiB
PHP

<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
namespace Tmdb\Factory;
use Tmdb\Common\ObjectHydrator;
use Tmdb\Model\AbstractModel;
use Tmdb\Model\Collection\ResultCollection;
use Tmdb\Model\Common\GenericCollection;
/**
* Class AbstractFactory
* @package Tmdb\Factory
*/
abstract class AbstractFactory
{
/**
* Convert an array to an hydrated object
*
* @param array $data
* @return AbstractModel
*/
abstract public function create(array $data = array());
/**
* Convert an array with an collection of items to an hydrated object collection
*
* @param array $data
* @return GenericCollection
*/
abstract public function createCollection(array $data = array());
/**
* Create a generic collection of data and map it on the class by it's static parameter $properties
*
* @param array $data
* @param $class
* @return GenericCollection
*/
protected function createGenericCollection($data = array(), $class)
{
if (is_object($class)) {
$class = get_class($class);
}
$collection = new GenericCollection();
if (null === $data) {
return $collection;
}
foreach ($data as $item) {
$collection->add(null, $this->hydrate(new $class(), $item));
}
return $collection;
}
/**
* Create a result collection
*
* @param array $data
* @param string $method
* @return ResultCollection
*/
public function createResultCollection($data = array(), $method = 'create')
{
$collection = new ResultCollection();
if (null === $data) {
return $collection;
}
if (array_key_exists('page', $data)) {
$collection->setPage($data['page']);
}
if (array_key_exists('total_pages', $data)) {
$collection->setTotalPages($data['total_pages']);
}
if (array_key_exists('total_results', $data)) {
$collection->setTotalResults($data['total_results']);
}
if (array_key_exists('results', $data)) {
$data = $data['results'];
}
foreach ($data as $item) {
$collection->add(null, $this->$method($item));
}
return $collection;
}
/**
* Hydrate the object with data
*
* @param AbstractModel $object
* @param array $data
* @return AbstractModel
*/
protected function hydrate(AbstractModel $object, $data = array())
{
$objectHydrator = new ObjectHydrator();
return $objectHydrator->hydrate($object, $data);
}
}