jellyfin/MediaBrowser.Api/ItemLookupService.cs

337 lines
13 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Extensions;
2014-03-01 23:34:27 +01:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
2014-03-01 23:34:27 +01:00
using MediaBrowser.Controller.Entities;
2014-03-14 04:23:58 +01:00
using MediaBrowser.Controller.Entities.Audio;
2014-03-01 23:34:27 +01:00
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
2014-03-02 16:42:21 +01:00
using MediaBrowser.Controller.Library;
2014-07-02 20:34:08 +02:00
using MediaBrowser.Controller.Net;
2014-03-01 23:34:27 +01:00
using MediaBrowser.Controller.Providers;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Providers;
2016-01-15 20:15:51 +01:00
using MediaBrowser.Model.Serialization;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
using Microsoft.Extensions.Logging;
2014-03-01 23:34:27 +01:00
namespace MediaBrowser.Api
{
2014-11-15 03:31:03 +01:00
[Route("/Items/{Id}/ExternalIdInfos", "GET", Summary = "Gets external id infos for an item")]
[Authenticated(Roles = "Admin")]
2014-03-01 23:34:27 +01:00
public class GetExternalIdInfos : IReturn<List<ExternalIdInfo>>
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
[ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2018-09-12 19:26:21 +02:00
public Guid Id { get; set; }
2014-03-01 23:34:27 +01:00
}
[Route("/Items/RemoteSearch/Movie", "POST")]
[Authenticated]
2014-03-01 23:34:27 +01:00
public class GetMovieRemoteSearchResults : RemoteSearchQuery<MovieInfo>, IReturn<List<RemoteSearchResult>>
{
}
2016-06-23 19:04:18 +02:00
[Route("/Items/RemoteSearch/Trailer", "POST")]
[Authenticated]
public class GetTrailerRemoteSearchResults : RemoteSearchQuery<TrailerInfo>, IReturn<List<RemoteSearchResult>>
{
}
2018-09-12 19:26:21 +02:00
[Route("/Items/RemoteSearch/MusicVideo", "POST")]
[Authenticated]
2018-09-12 19:26:21 +02:00
public class GetMusicVideoRemoteSearchResults : RemoteSearchQuery<MusicVideoInfo>, IReturn<List<RemoteSearchResult>>
2014-03-01 23:34:27 +01:00
{
}
[Route("/Items/RemoteSearch/Series", "POST")]
[Authenticated]
2014-03-01 23:34:27 +01:00
public class GetSeriesRemoteSearchResults : RemoteSearchQuery<SeriesInfo>, IReturn<List<RemoteSearchResult>>
{
}
[Route("/Items/RemoteSearch/BoxSet", "POST")]
[Authenticated]
2014-03-01 23:34:27 +01:00
public class GetBoxSetRemoteSearchResults : RemoteSearchQuery<BoxSetInfo>, IReturn<List<RemoteSearchResult>>
{
}
2014-03-14 04:23:58 +01:00
[Route("/Items/RemoteSearch/MusicArtist", "POST")]
[Authenticated]
2014-03-14 04:23:58 +01:00
public class GetMusicArtistRemoteSearchResults : RemoteSearchQuery<ArtistInfo>, IReturn<List<RemoteSearchResult>>
{
}
[Route("/Items/RemoteSearch/MusicAlbum", "POST")]
[Authenticated]
2014-03-14 04:23:58 +01:00
public class GetMusicAlbumRemoteSearchResults : RemoteSearchQuery<AlbumInfo>, IReturn<List<RemoteSearchResult>>
{
}
2014-03-01 23:34:27 +01:00
[Route("/Items/RemoteSearch/Person", "POST")]
2014-11-15 03:31:03 +01:00
[Authenticated(Roles = "Admin")]
2014-03-01 23:34:27 +01:00
public class GetPersonRemoteSearchResults : RemoteSearchQuery<PersonLookupInfo>, IReturn<List<RemoteSearchResult>>
{
}
2016-12-13 08:36:30 +01:00
[Route("/Items/RemoteSearch/Book", "POST")]
[Authenticated]
public class GetBookRemoteSearchResults : RemoteSearchQuery<BookInfo>, IReturn<List<RemoteSearchResult>>
{
}
2014-11-15 03:31:03 +01:00
[Route("/Items/RemoteSearch/Image", "GET", Summary = "Gets a remote image")]
2014-03-01 23:34:27 +01:00
public class GetRemoteSearchImage
{
[ApiMember(Name = "ImageUrl", Description = "The image url", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
public string ImageUrl { get; set; }
[ApiMember(Name = "ProviderName", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
public string ProviderName { get; set; }
}
2014-03-02 16:42:21 +01:00
2014-11-15 03:31:03 +01:00
[Route("/Items/RemoteSearch/Apply/{Id}", "POST", Summary = "Applies search criteria to an item and refreshes metadata")]
[Authenticated(Roles = "Admin")]
2014-03-02 16:42:21 +01:00
public class ApplySearchCriteria : RemoteSearchResult, IReturnVoid
{
2015-01-11 21:31:09 +01:00
[ApiMember(Name = "Id", Description = "The item id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
2014-03-02 16:42:21 +01:00
public string Id { get; set; }
2015-01-11 21:31:09 +01:00
[ApiMember(Name = "ReplaceAllImages", Description = "Whether or not to replace all images", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "POST")]
public bool ReplaceAllImages { get; set; }
public ApplySearchCriteria()
{
ReplaceAllImages = true;
}
2014-03-02 16:42:21 +01:00
}
2014-03-01 23:34:27 +01:00
public class ItemLookupService : BaseApiService
{
private readonly IProviderManager _providerManager;
private readonly IServerApplicationPaths _appPaths;
private readonly IFileSystem _fileSystem;
2014-03-02 16:42:21 +01:00
private readonly ILibraryManager _libraryManager;
2016-01-15 20:15:51 +01:00
private readonly IJsonSerializer _json;
2014-03-01 23:34:27 +01:00
public ItemLookupService(
ILogger<ItemLookupService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
IProviderManager providerManager,
IFileSystem fileSystem,
ILibraryManager libraryManager,
IJsonSerializer json)
: base(logger, serverConfigurationManager, httpResultFactory)
2014-03-01 23:34:27 +01:00
{
_providerManager = providerManager;
_appPaths = serverConfigurationManager.ApplicationPaths;
2014-03-01 23:34:27 +01:00
_fileSystem = fileSystem;
2014-03-02 16:42:21 +01:00
_libraryManager = libraryManager;
2016-01-15 20:15:51 +01:00
_json = json;
2014-03-01 23:34:27 +01:00
}
public object Get(GetExternalIdInfos request)
{
2014-04-25 22:15:50 +02:00
var item = _libraryManager.GetItemById(request.Id);
2014-03-01 23:34:27 +01:00
var infos = _providerManager.GetExternalIdInfos(item).ToList();
return ToOptimizedResult(infos);
}
2016-06-23 19:04:18 +02:00
public async Task<object> Post(GetTrailerRemoteSearchResults request)
{
var result = await _providerManager.GetRemoteSearchResults<Trailer, TrailerInfo>(request, CancellationToken.None).ConfigureAwait(false);
return ToOptimizedResult(result);
}
2016-12-13 08:36:30 +01:00
public async Task<object> Post(GetBookRemoteSearchResults request)
{
var result = await _providerManager.GetRemoteSearchResults<Book, BookInfo>(request, CancellationToken.None).ConfigureAwait(false);
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetMovieRemoteSearchResults request)
2014-03-01 23:34:27 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<Movie, MovieInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetSeriesRemoteSearchResults request)
2014-03-01 23:34:27 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<Series, SeriesInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetBoxSetRemoteSearchResults request)
2014-03-01 23:34:27 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<BoxSet, BoxSetInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
return ToOptimizedResult(result);
}
2018-09-12 19:26:21 +02:00
public async Task<object> Post(GetMusicVideoRemoteSearchResults request)
{
var result = await _providerManager.GetRemoteSearchResults<MusicVideo, MusicVideoInfo>(request, CancellationToken.None).ConfigureAwait(false);
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetPersonRemoteSearchResults request)
2014-03-01 23:34:27 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<Person, PersonLookupInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetMusicAlbumRemoteSearchResults request)
2014-03-14 04:23:58 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<MusicAlbum, AlbumInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-14 04:23:58 +01:00
return ToOptimizedResult(result);
}
2016-06-19 08:18:29 +02:00
public async Task<object> Post(GetMusicArtistRemoteSearchResults request)
2014-03-14 04:23:58 +01:00
{
2016-06-19 08:18:29 +02:00
var result = await _providerManager.GetRemoteSearchResults<MusicArtist, ArtistInfo>(request, CancellationToken.None).ConfigureAwait(false);
2014-03-14 04:23:58 +01:00
return ToOptimizedResult(result);
}
2016-06-23 07:26:49 +02:00
public Task<object> Get(GetRemoteSearchImage request)
2014-03-01 23:34:27 +01:00
{
2016-06-23 07:26:49 +02:00
return GetRemoteImage(request);
2014-03-01 23:34:27 +01:00
}
2018-09-12 19:26:21 +02:00
public Task Post(ApplySearchCriteria request)
2014-03-02 16:42:21 +01:00
{
var item = _libraryManager.GetItemById(new Guid(request.Id));
2020-06-14 11:11:11 +02:00
// foreach (var key in request.ProviderIds)
2014-10-14 06:59:34 +02:00
//{
// var value = key.Value;
// if (!string.IsNullOrWhiteSpace(value))
// {
// item.SetProviderId(key.Key, value);
// }
//}
Logger.LogInformation("Setting provider id's to item {0}-{1}: {2}", item.Id, item.Name, _json.SerializeToString(request.ProviderIds));
2016-04-06 04:18:56 +02:00
// Since the refresh process won't erase provider Ids, we need to set this explicitly now.
2014-10-14 06:59:34 +02:00
item.ProviderIds = request.ProviderIds;
2020-06-14 11:11:11 +02:00
// item.ProductionYear = request.ProductionYear;
// item.Name = request.Name;
2014-03-02 16:42:21 +01:00
2019-09-10 22:37:53 +02:00
return _providerManager.RefreshFullItem(
item,
new MetadataRefreshOptions(new DirectoryService(_fileSystem))
{
MetadataRefreshMode = MetadataRefreshMode.FullRefresh,
ImageRefreshMode = MetadataRefreshMode.FullRefresh,
ReplaceAllMetadata = true,
ReplaceAllImages = request.ReplaceAllImages,
SearchResult = request
},
CancellationToken.None);
2014-03-02 16:42:21 +01:00
}
2014-03-01 23:34:27 +01:00
/// <summary>
/// Gets the remote image.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>Task{System.Object}.</returns>
private async Task<object> GetRemoteImage(GetRemoteSearchImage request)
{
var urlHash = request.ImageUrl.GetMD5();
var pointerCachePath = GetFullCachePath(urlHash.ToString());
string contentPath;
try
{
contentPath = File.ReadAllText(pointerCachePath);
2014-03-01 23:34:27 +01:00
if (File.Exists(contentPath))
2014-03-01 23:34:27 +01:00
{
2016-06-19 08:18:29 +02:00
return await ResultFactory.GetStaticFileResult(Request, contentPath).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
}
}
2016-11-01 04:07:45 +01:00
catch (FileNotFoundException)
2014-03-01 23:34:27 +01:00
{
// Means the file isn't cached yet
}
2016-11-01 04:07:45 +01:00
catch (IOException)
2014-03-01 23:34:27 +01:00
{
// Means the file isn't cached yet
}
await DownloadImage(request.ProviderName, request.ImageUrl, urlHash, pointerCachePath).ConfigureAwait(false);
// Read the pointer file again
contentPath = File.ReadAllText(pointerCachePath);
2014-03-01 23:34:27 +01:00
2016-06-19 08:18:29 +02:00
return await ResultFactory.GetStaticFileResult(Request, contentPath).ConfigureAwait(false);
2014-03-01 23:34:27 +01:00
}
/// <summary>
/// Downloads the image.
/// </summary>
/// <param name="providerName">Name of the provider.</param>
/// <param name="url">The URL.</param>
/// <param name="urlHash">The URL hash.</param>
/// <param name="pointerCachePath">The pointer cache path.</param>
/// <returns>Task.</returns>
private async Task DownloadImage(string providerName, string url, Guid urlHash, string pointerCachePath)
{
var result = await _providerManager.GetSearchImage(providerName, url, CancellationToken.None).ConfigureAwait(false);
2020-04-11 19:36:28 +02:00
var ext = result.ContentType.Split('/')[^1];
2014-03-01 23:34:27 +01:00
var fullCachePath = GetFullCachePath(urlHash + "." + ext);
Directory.CreateDirectory(Path.GetDirectoryName(fullCachePath));
2020-04-11 19:36:28 +02:00
var stream = result.Content;
await using (stream.ConfigureAwait(false))
2014-03-01 23:34:27 +01:00
{
2020-04-11 19:36:28 +02:00
var fileStream = new FileStream(
2020-04-05 23:58:39 +02:00
fullCachePath,
2020-04-05 21:56:08 +02:00
FileMode.Create,
FileAccess.Write,
FileShare.Read,
IODefaults.FileStreamBufferSize,
true);
2020-04-11 19:36:28 +02:00
await using (fileStream.ConfigureAwait(false))
{
await stream.CopyToAsync(fileStream).ConfigureAwait(false);
}
2014-03-01 23:34:27 +01:00
}
Directory.CreateDirectory(Path.GetDirectoryName(pointerCachePath));
File.WriteAllText(pointerCachePath, fullCachePath);
2014-03-01 23:34:27 +01:00
}
/// <summary>
/// Gets the full cache path.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns>System.String.</returns>
private string GetFullCachePath(string filename)
2019-09-10 22:37:53 +02:00
=> Path.Combine(_appPaths.CachePath, "remote-images", filename.Substring(0, 1), filename);
2014-03-01 23:34:27 +01:00
}
}