mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 10:49:37 +02:00
70 lines
1.6 KiB
PHP
70 lines
1.6 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\Repository;
|
|
|
|
use Tmdb\Factory\GuestSessionFactory;
|
|
use Tmdb\Factory\MovieFactory;
|
|
use Tmdb\Model\Collection\ResultCollection;
|
|
use Tmdb\Model\Movie;
|
|
|
|
/**
|
|
* Class GuestSessionRepository
|
|
* @package Tmdb\Repository
|
|
* @see http://docs.themoviedb.apiary.io/#guestsessions
|
|
*/
|
|
class GuestSessionRepository extends AbstractRepository
|
|
{
|
|
/**
|
|
* Get the list of top rated movies.
|
|
*
|
|
* By default, this list will only include movies that have 10 or more votes.
|
|
* This list refreshes every day.
|
|
*
|
|
* @param array $options
|
|
* @return ResultCollection|Movie[]
|
|
*/
|
|
public function getRatedMovies(array $options = array())
|
|
{
|
|
return $this->getMovieFactory()->createResultCollection(
|
|
$this->getApi()->getRatedMovies($options)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Return the Movies API Class
|
|
*
|
|
* @return \Tmdb\Api\GuestSession
|
|
*/
|
|
public function getApi()
|
|
{
|
|
return $this->getClient()->getGuestSessionApi();
|
|
}
|
|
|
|
/**
|
|
* Return the Guest Session Factory
|
|
*
|
|
* @return GuestSessionFactory
|
|
*/
|
|
public function getFactory()
|
|
{
|
|
return new GuestSessionFactory();
|
|
}
|
|
|
|
/**
|
|
* @return MovieFactory
|
|
*/
|
|
public function getMovieFactory()
|
|
{
|
|
return new MovieFactory();
|
|
}
|
|
}
|