mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
6f26fdc376
* add more comments for models * add translation * add calendar component * style calendar, add hotkeys * update readme * move into own service * add calendar test * fix import test, update readme * fix scrollbar for weeks * check for empty request * remove update-genre-list * relation for tv shows has been forgotten to load * stop loading twice and prevent overwriting * remove events outside from month, fix chrome styling
67 lines
1.7 KiB
PHP
67 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Episode;
|
|
use App\Item;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class Calendar {
|
|
|
|
/**
|
|
* Get all formatted episodes and movies.
|
|
*
|
|
* @return Collection|array
|
|
*/
|
|
public function items()
|
|
{
|
|
$episodes = Episode::with('calendarItem')
|
|
//->whereBetween('release_episode', [today()->subDays(7)->timestamp, today()->addDays(7)->timestamp])
|
|
->get(['id', 'tmdb_id', 'release_episode', 'season_number', 'episode_number']);
|
|
|
|
$movies = Item::where('media_type', 'movie')
|
|
//->whereBetween('released', [today()->subDays(7)->timestamp, today()->addDays(70)->timestamp])
|
|
->get();
|
|
|
|
$episodesFormatted = $episodes->map(function($episode) {
|
|
return $this->buildEvent($episode, 'tv');
|
|
});
|
|
|
|
$moviesFormatted = $movies->map(function($movie) {
|
|
return $this->buildEvent($movie, 'movies');
|
|
});
|
|
|
|
return collect($moviesFormatted)->merge($episodesFormatted);
|
|
}
|
|
|
|
private function buildEvent($item, $type)
|
|
{
|
|
return [
|
|
'startDate' => $item->startDate,
|
|
'id' => $item->id,
|
|
'tmdb_id' => $item->tmdb_id,
|
|
'type' => $type,
|
|
'classes' => "$type watchlist-{$this->isOnWatchlist($item, $type)}",
|
|
'title' => $this->buildTitle($item, $type),
|
|
];
|
|
}
|
|
|
|
private function isOnWatchlist($item, $type)
|
|
{
|
|
if($type === 'tv') {
|
|
return $item->calendarItem->watchlist;
|
|
}
|
|
|
|
return $item->watchlist;
|
|
}
|
|
|
|
private function buildTitle($item, $type)
|
|
{
|
|
if($type === 'tv') {
|
|
return $item->calendarItem->title . ' ' . 'S' . $item->season_number . 'E' . $item->episode_number;
|
|
}
|
|
|
|
return $item->title;
|
|
}
|
|
}
|