mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
using System.Collections.Generic; |
|
using System.Threading.Tasks; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Emby; |
|
using LanguageExt; |
|
|
|
namespace ErsatzTV.Core.Interfaces.Repositories |
|
{ |
|
public interface IEmbyTelevisionRepository |
|
{ |
|
Task<List<EmbyItemEtag>> GetExistingShows(EmbyLibrary library); |
|
Task<List<EmbyItemEtag>> GetExistingSeasons(EmbyLibrary library, string showItemId); |
|
Task<List<EmbyItemEtag>> GetExistingEpisodes(EmbyLibrary library, string seasonItemId); |
|
Task<bool> AddShow(EmbyShow show); |
|
Task<Option<EmbyShow>> Update(EmbyShow show); |
|
Task<bool> AddSeason(EmbyShow show, EmbySeason season); |
|
Task<Option<EmbySeason>> Update(EmbySeason season); |
|
Task<bool> AddEpisode(EmbySeason season, EmbyEpisode episode); |
|
Task<Option<EmbyEpisode>> Update(EmbyEpisode episode); |
|
Task<List<int>> RemoveMissingShows(EmbyLibrary library, List<string> showIds); |
|
Task<Unit> RemoveMissingSeasons(EmbyLibrary library, List<string> seasonIds); |
|
Task<List<int>> RemoveMissingEpisodes(EmbyLibrary library, List<string> episodeIds); |
|
Task<Unit> DeleteEmptySeasons(EmbyLibrary library); |
|
Task<List<int>> DeleteEmptyShows(EmbyLibrary library); |
|
} |
|
}
|
|
|