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.
37 lines
1.3 KiB
37 lines
1.3 KiB
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Emby; |
|
|
|
namespace ErsatzTV.Core.Interfaces.Emby; |
|
|
|
public interface IEmbyApiClient |
|
{ |
|
Task<Either<BaseError, EmbyServerInformation>> GetServerInformation(string address, string apiKey); |
|
Task<Either<BaseError, List<EmbyLibrary>>> GetLibraries(string address, string apiKey); |
|
|
|
IAsyncEnumerable<Tuple<EmbyMovie, int>> GetMovieLibraryItems(string address, string apiKey, EmbyLibrary library); |
|
|
|
IAsyncEnumerable<Tuple<EmbyShow, int>> GetShowLibraryItems(string address, string apiKey, EmbyLibrary library); |
|
|
|
IAsyncEnumerable<Tuple<EmbySeason, int>> GetSeasonLibraryItems( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string showId); |
|
|
|
IAsyncEnumerable<Tuple<EmbyEpisode, int>> GetEpisodeLibraryItems( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string showId, |
|
string seasonId); |
|
|
|
IAsyncEnumerable<Tuple<EmbyCollection, int>> GetCollectionLibraryItems(string address, string apiKey); |
|
|
|
IAsyncEnumerable<Tuple<MediaItem, int>> GetCollectionItems(string address, string apiKey, string collectionId); |
|
|
|
Task<Either<BaseError, MediaVersion>> GetPlaybackInfo( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string itemId); |
|
}
|
|
|