aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Books/GoogleBooksProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/Books/GoogleBooksProvider.cs')
-rw-r--r--MediaBrowser.Providers/Books/GoogleBooksProvider.cs45
1 files changed, 0 insertions, 45 deletions
diff --git a/MediaBrowser.Providers/Books/GoogleBooksProvider.cs b/MediaBrowser.Providers/Books/GoogleBooksProvider.cs
deleted file mode 100644
index 7330b8c43..000000000
--- a/MediaBrowser.Providers/Books/GoogleBooksProvider.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading;
-using System.Threading.Tasks;
-using MediaBrowser.Common.Net;
-using MediaBrowser.Controller.Entities;
-using MediaBrowser.Controller.Entities.TV;
-using MediaBrowser.Controller.Providers;
-using MediaBrowser.Model.Providers;
-
-namespace MediaBrowser.Providers.Books
-{
- public class GoogleBooksProvider : IRemoteMetadataProvider<AudioBook, SongInfo>
- {
- public string Name => "Google Books";
- private readonly IHttpClient _httpClient;
-
- public GoogleBooksProvider(IHttpClient httpClient)
- {
- _httpClient = httpClient;
- }
-
- public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
- {
- return _httpClient.GetResponse(new HttpRequestOptions
- {
- CancellationToken = cancellationToken,
- Url = url,
- BufferContent = false
- });
- }
-
- public async Task<MetadataResult<AudioBook>> GetMetadata(SongInfo info, CancellationToken cancellationToken)
- {
- return new MetadataResult<AudioBook>();
- }
-
- public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(SongInfo searchInfo, CancellationToken cancellationToken)
- {
- return new List<RemoteSearchResult>();
- }
- }
-}