2020-11-21 13:26:03 +00:00
using System ;
2020-06-08 13:22:40 +00:00
using System.Collections.Generic ;
using System.ComponentModel.DataAnnotations ;
using System.IO ;
using System.Linq ;
using System.Net.Mime ;
using System.Text.Json ;
using System.Threading ;
using System.Threading.Tasks ;
2020-09-01 23:26:49 +00:00
using Jellyfin.Api.Attributes ;
2020-06-08 13:22:40 +00:00
using Jellyfin.Api.Constants ;
using MediaBrowser.Common.Extensions ;
using MediaBrowser.Controller ;
using MediaBrowser.Controller.Configuration ;
using MediaBrowser.Controller.Entities ;
using MediaBrowser.Controller.Entities.Audio ;
using MediaBrowser.Controller.Entities.Movies ;
using MediaBrowser.Controller.Entities.TV ;
using MediaBrowser.Controller.Library ;
using MediaBrowser.Controller.Providers ;
using MediaBrowser.Model.IO ;
2020-09-01 23:26:49 +00:00
using MediaBrowser.Model.Net ;
2020-06-08 13:22:40 +00:00
using MediaBrowser.Model.Providers ;
using Microsoft.AspNetCore.Authorization ;
using Microsoft.AspNetCore.Http ;
using Microsoft.AspNetCore.Mvc ;
using Microsoft.Extensions.Logging ;
namespace Jellyfin.Api.Controllers
{
/// <summary>
/// Item lookup controller.
/// </summary>
2020-08-04 18:48:53 +00:00
[Route("")]
2020-06-22 13:44:11 +00:00
[Authorize(Policy = Policies.DefaultAuthorization)]
2020-06-08 13:22:40 +00:00
public class ItemLookupController : BaseJellyfinApiController
{
private readonly IProviderManager _providerManager ;
private readonly IServerApplicationPaths _appPaths ;
private readonly IFileSystem _fileSystem ;
private readonly ILibraryManager _libraryManager ;
private readonly ILogger < ItemLookupController > _logger ;
/// <summary>
/// Initializes a new instance of the <see cref="ItemLookupController"/> class.
/// </summary>
/// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
/// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="logger">Instance of the <see cref="ILogger{ItemLookupController}"/> interface.</param>
public ItemLookupController (
IProviderManager providerManager ,
IServerConfigurationManager serverConfigurationManager ,
IFileSystem fileSystem ,
ILibraryManager libraryManager ,
ILogger < ItemLookupController > logger )
{
_providerManager = providerManager ;
_appPaths = serverConfigurationManager . ApplicationPaths ;
_fileSystem = fileSystem ;
_libraryManager = libraryManager ;
_logger = logger ;
}
/// <summary>
/// Get the item's external id info.
/// </summary>
/// <param name="itemId">Item id.</param>
/// <response code="200">External id info retrieved.</response>
/// <response code="404">Item not found.</response>
/// <returns>List of external id info.</returns>
2020-08-04 18:48:53 +00:00
[HttpGet("Items/{itemId}/ExternalIdInfos")]
2020-06-08 13:22:40 +00:00
[Authorize(Policy = Policies.RequiresElevation)]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
2020-09-06 15:07:27 +00:00
public ActionResult < IEnumerable < ExternalIdInfo > > GetExternalIdInfos ( [ FromRoute , Required ] Guid itemId )
2020-06-08 13:22:40 +00:00
{
var item = _libraryManager . GetItemById ( itemId ) ;
if ( item = = null )
{
return NotFound ( ) ;
}
return Ok ( _providerManager . GetExternalIdInfos ( item ) ) ;
}
/// <summary>
/// Get movie remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Movie remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/Movie")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetMovieRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < MovieInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < Movie , MovieInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get trailer remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Trailer remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/Trailer")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetTrailerRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < TrailerInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < Trailer , TrailerInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get music video remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Music video remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/MusicVideo")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetMusicVideoRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < MusicVideoInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < MusicVideo , MusicVideoInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get series remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Series remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/Series")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetSeriesRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < SeriesInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < Series , SeriesInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get box set remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Box set remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/BoxSet")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetBoxSetRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < BoxSetInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < BoxSet , BoxSetInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get music artist remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Music artist remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/MusicArtist")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetMusicArtistRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < ArtistInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < MusicArtist , ArtistInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get music album remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Music album remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/MusicAlbum")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetMusicAlbumRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < AlbumInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < MusicAlbum , AlbumInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get person remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Person remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/Person")]
2020-06-08 13:22:40 +00:00
[Authorize(Policy = Policies.RequiresElevation)]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetPersonRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < PersonLookupInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < Person , PersonLookupInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Get book remote search.
/// </summary>
/// <param name="query">Remote search query.</param>
/// <response code="200">Book remote search executed.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="OkResult"/> containing the list of remote search results.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpPost("Items/RemoteSearch/Book")]
2020-08-06 14:17:45 +00:00
public async Task < ActionResult < IEnumerable < RemoteSearchResult > > > GetBookRemoteSearchResults ( [ FromBody , Required ] RemoteSearchQuery < BookInfo > query )
2020-06-08 13:22:40 +00:00
{
var results = await _providerManager . GetRemoteSearchResults < Book , BookInfo > ( query , CancellationToken . None )
. ConfigureAwait ( false ) ;
return Ok ( results ) ;
}
/// <summary>
/// Gets a remote image.
/// </summary>
/// <param name="imageUrl">The image url.</param>
/// <param name="providerName">The provider name.</param>
/// <response code="200">Remote image retrieved.</response>
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
/// The task result contains an <see cref="FileStreamResult"/> containing the images file stream.
/// </returns>
2020-08-04 18:48:53 +00:00
[HttpGet("Items/RemoteSearch/Image")]
2020-09-01 23:26:49 +00:00
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesImageFile]
2020-06-08 13:22:40 +00:00
public async Task < ActionResult > GetRemoteSearchImage (
[FromQuery, Required] string imageUrl ,
[FromQuery, Required] string providerName )
{
var urlHash = imageUrl . GetMD5 ( ) ;
var pointerCachePath = GetFullCachePath ( urlHash . ToString ( ) ) ;
try
{
var contentPath = await System . IO . File . ReadAllTextAsync ( pointerCachePath ) . ConfigureAwait ( false ) ;
if ( System . IO . File . Exists ( contentPath ) )
{
2020-09-02 01:27:57 +00:00
return PhysicalFile ( contentPath , MimeTypes . GetMimeType ( contentPath ) ) ;
2020-06-08 13:22:40 +00:00
}
}
catch ( FileNotFoundException )
{
// Means the file isn't cached yet
}
catch ( IOException )
{
// Means the file isn't cached yet
}
await DownloadImage ( providerName , imageUrl , urlHash , pointerCachePath ) . ConfigureAwait ( false ) ;
2020-09-02 01:27:57 +00:00
var updatedContentPath = await System . IO . File . ReadAllTextAsync ( pointerCachePath ) . ConfigureAwait ( false ) ;
return PhysicalFile ( updatedContentPath , MimeTypes . GetMimeType ( updatedContentPath ) ) ;
2020-06-08 13:22:40 +00:00
}
/// <summary>
/// Applies search criteria to an item and refreshes metadata.
/// </summary>
/// <param name="itemId">Item id.</param>
/// <param name="searchResult">The remote search result.</param>
/// <param name="replaceAllImages">Optional. Whether or not to replace all images. Default: True.</param>
2020-06-21 15:35:38 +00:00
/// <response code="204">Item metadata refreshed.</response>
2020-06-08 13:22:40 +00:00
/// <returns>
/// A <see cref="Task" /> that represents the asynchronous operation to get the remote search results.
2020-06-21 15:35:38 +00:00
/// The task result contains an <see cref="NoContentResult"/>.
2020-06-08 13:22:40 +00:00
/// </returns>
2020-09-10 09:05:46 +00:00
[HttpPost("Items/RemoteSearch/Apply/{itemId}")]
2020-06-08 13:22:40 +00:00
[Authorize(Policy = Policies.RequiresElevation)]
2020-09-01 23:26:49 +00:00
[ProducesResponseType(StatusCodes.Status204NoContent)]
2020-06-08 13:22:40 +00:00
public async Task < ActionResult > ApplySearchCriteria (
2020-09-06 15:07:27 +00:00
[FromRoute, Required] Guid itemId ,
2020-08-06 14:17:45 +00:00
[FromBody, Required] RemoteSearchResult searchResult ,
2020-06-08 13:22:40 +00:00
[FromQuery] bool replaceAllImages = true )
{
var item = _libraryManager . GetItemById ( itemId ) ;
_logger . LogInformation (
"Setting provider id's to item {0}-{1}: {2}" ,
item . Id ,
item . Name ,
JsonSerializer . Serialize ( searchResult . ProviderIds ) ) ;
// Since the refresh process won't erase provider Ids, we need to set this explicitly now.
item . ProviderIds = searchResult . ProviderIds ;
await _providerManager . RefreshFullItem (
item ,
new MetadataRefreshOptions ( new DirectoryService ( _fileSystem ) )
{
MetadataRefreshMode = MetadataRefreshMode . FullRefresh ,
ImageRefreshMode = MetadataRefreshMode . FullRefresh ,
ReplaceAllMetadata = true ,
ReplaceAllImages = replaceAllImages ,
SearchResult = searchResult
} , CancellationToken . None ) . ConfigureAwait ( false ) ;
2020-06-21 15:35:38 +00:00
return NoContent ( ) ;
2020-06-08 13:22:40 +00: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 )
{
2020-08-17 19:10:02 +00:00
using var result = await _providerManager . GetSearchImage ( providerName , url , CancellationToken . None ) . ConfigureAwait ( false ) ;
2020-11-13 16:04:31 +00:00
if ( result . Content . Headers . ContentType ? . MediaType = = null )
{
2020-11-13 18:14:44 +00:00
throw new ResourceNotFoundException ( nameof ( result . Content . Headers . ContentType ) ) ;
2020-11-13 16:04:31 +00:00
}
2020-08-17 20:59:00 +00:00
var ext = result . Content . Headers . ContentType . MediaType . Split ( '/' ) [ ^ 1 ] ;
2020-06-08 13:22:40 +00:00
var fullCachePath = GetFullCachePath ( urlHash + "." + ext ) ;
2020-11-14 01:04:06 +00:00
var directory = Path . GetDirectoryName ( fullCachePath ) ? ? throw new ResourceNotFoundException ( $"Provided path ({fullCachePath}) is not valid." ) ;
2020-11-13 16:04:31 +00:00
Directory . CreateDirectory ( directory ) ;
2020-08-17 19:10:02 +00:00
using ( var stream = result . Content )
2020-06-08 13:22:40 +00:00
{
await using var fileStream = new FileStream (
fullCachePath ,
FileMode . Create ,
FileAccess . Write ,
FileShare . Read ,
IODefaults . FileStreamBufferSize ,
true ) ;
await stream . CopyToAsync ( fileStream ) . ConfigureAwait ( false ) ;
}
2020-11-14 01:04:06 +00:00
var pointerCacheDirectory = Path . GetDirectoryName ( pointerCachePath ) ? ? throw new ArgumentException ( $"Provided path ({pointerCachePath}) is not valid." , nameof ( pointerCachePath ) ) ;
2020-11-13 16:04:31 +00:00
Directory . CreateDirectory ( pointerCacheDirectory ) ;
2020-06-08 13:22:40 +00:00
await System . IO . File . WriteAllTextAsync ( pointerCachePath , fullCachePath ) . ConfigureAwait ( false ) ;
}
/// <summary>
/// Gets the full cache path.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns>System.String.</returns>
private string GetFullCachePath ( string filename )
= > Path . Combine ( _appPaths . CachePath , "remote-images" , filename . Substring ( 0 , 1 ) , filename ) ;
}
2020-06-21 15:35:38 +00:00
}