2017-01-23 22:26:04 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services\Models;
|
|
|
|
|
|
|
|
use App\Episode as Model;
|
|
|
|
use App\Services\TMDB;
|
|
|
|
use App\Setting;
|
|
|
|
|
|
|
|
class EpisodeService {
|
|
|
|
|
|
|
|
private $model;
|
|
|
|
private $tmdb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Model $model
|
|
|
|
* @param TMDB $tmdb
|
|
|
|
*/
|
|
|
|
public function __construct(Model $model, TMDB $tmdb)
|
|
|
|
{
|
|
|
|
$this->model = $model;
|
|
|
|
$this->tmdb = $tmdb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $item
|
|
|
|
*/
|
|
|
|
public function create($item)
|
|
|
|
{
|
|
|
|
if($item->media_type == 'tv') {
|
|
|
|
$seasons = $this->tmdb->tvEpisodes($item->tmdb_id);
|
|
|
|
|
|
|
|
$this->model->store($seasons, $item->tmdb_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all episodes by tmdb_id.
|
|
|
|
*
|
|
|
|
* @param $tmdbId
|
|
|
|
*/
|
|
|
|
public function remove($tmdbId)
|
|
|
|
{
|
|
|
|
$this->model->where('tmdb_id', $tmdbId)->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-21 21:20:42 +01:00
|
|
|
* Get all episodes of a tv show grouped by seasons,
|
|
|
|
* the data for the next unseen episode, which will be used in the modal as an indicator,
|
|
|
|
* and the setting option to check if spoiler protection is enabled.
|
2017-01-23 22:26:04 +01:00
|
|
|
*
|
|
|
|
* @param $tmdbId
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAllByTmdbId($tmdbId)
|
|
|
|
{
|
2017-02-21 21:20:42 +01:00
|
|
|
$episodes = $this->model->findByTmdbId($tmdbId)->get();
|
|
|
|
|
2017-01-23 22:26:04 +01:00
|
|
|
return [
|
2017-02-21 21:20:42 +01:00
|
|
|
'episodes' => $episodes->groupBy('season_number'),
|
|
|
|
'next_episode' => $episodes->where('seen', 0)->first(),
|
2017-01-23 22:26:04 +01:00
|
|
|
'spoiler' => Setting::first()->episode_spoiler_protection,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $id
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function toggleSeen($id)
|
|
|
|
{
|
|
|
|
$episode = $this->model->find($id);
|
|
|
|
|
2017-01-25 14:44:51 +01:00
|
|
|
if($episode) {
|
|
|
|
return $episode->update([
|
|
|
|
'seen' => ! $episode->seen,
|
|
|
|
]);
|
|
|
|
}
|
2017-01-23 22:26:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $tmdbId
|
|
|
|
* @param $season
|
|
|
|
* @param $seen
|
|
|
|
*/
|
|
|
|
public function toggleSeason($tmdbId, $season, $seen)
|
|
|
|
{
|
|
|
|
$episodes = $this->model->findSeason($tmdbId, $season)->get();
|
|
|
|
|
|
|
|
$episodes->each(function($episode) use ($seen) {
|
|
|
|
$episode->update([
|
|
|
|
'seen' => $seen,
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
}
|
2017-01-25 14:44:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* See if we can find a episode by src or tmdb_id.
|
|
|
|
* Or we search a specific episode in our database.
|
|
|
|
*
|
|
|
|
* @param $type
|
|
|
|
* @param $value
|
|
|
|
* @param null $episode
|
|
|
|
* @return \Illuminate\Support\Collection
|
|
|
|
*/
|
|
|
|
public function findBy($type, $value, $episode = null)
|
|
|
|
{
|
|
|
|
switch($type) {
|
|
|
|
case 'src':
|
|
|
|
return $this->model->findBySrc($value)->first();
|
2017-02-21 19:15:31 +01:00
|
|
|
case 'fp_name':
|
|
|
|
return $this->model->findByFPName($value)->first();
|
2017-01-25 14:44:51 +01:00
|
|
|
case 'tmdb_id':
|
|
|
|
return $this->model->findByTmdbId($value)->first();
|
|
|
|
case 'episode':
|
|
|
|
return $this->model->findSpecificEpisode($value, $episode)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2017-01-24 16:11:47 +01:00
|
|
|
}
|