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.
43 lines
1.4 KiB
43 lines
1.4 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<EmbyMovie> GetMovieLibraryItems(string address, string apiKey, EmbyLibrary library); |
|
|
|
IAsyncEnumerable<EmbyShow> GetShowLibraryItems(string address, string apiKey, EmbyLibrary library); |
|
|
|
IAsyncEnumerable<EmbySeason> GetSeasonLibraryItems( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string showId); |
|
|
|
IAsyncEnumerable<EmbyEpisode> GetEpisodeLibraryItems( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string showId, |
|
string seasonId); |
|
|
|
IAsyncEnumerable<EmbyCollection> GetCollectionLibraryItems(string address, string apiKey); |
|
|
|
IAsyncEnumerable<MediaItem> GetCollectionItems(string address, string apiKey, string collectionId); |
|
|
|
Task<Either<BaseError, int>> GetLibraryItemCount( |
|
string address, |
|
string apiKey, |
|
string parentId, |
|
string includeItemTypes); |
|
|
|
Task<Either<BaseError, MediaVersion>> GetPlaybackInfo( |
|
string address, |
|
string apiKey, |
|
EmbyLibrary library, |
|
string itemId); |
|
}
|
|
|