jellyfin/MediaBrowser.Api/Images/ImageByNameService.cs

273 lines
9.5 KiB
C#
Raw Normal View History

2013-05-02 17:31:39 +02:00
using MediaBrowser.Common.Extensions;
2014-07-26 19:30:15 +02:00
using MediaBrowser.Common.IO;
2013-05-02 17:31:39 +02:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Entities;
2014-11-15 03:31:03 +01:00
using MediaBrowser.Controller.Net;
2014-06-02 21:32:41 +02:00
using MediaBrowser.Model.Dto;
2013-12-07 16:52:38 +01:00
using ServiceStack;
2013-05-03 21:34:25 +02:00
using System;
2014-05-07 04:28:19 +02:00
using System.Collections.Generic;
2013-05-02 17:12:27 +02:00
using System.IO;
using System.Linq;
2015-10-04 06:23:11 +02:00
using CommonIO;
2013-05-02 17:12:27 +02:00
namespace MediaBrowser.Api.Images
{
/// <summary>
/// Class GetGeneralImage
/// </summary>
2014-11-15 03:31:03 +01:00
[Route("/Images/General/{Name}/{Type}", "GET", Summary = "Gets a general image by name")]
2013-05-03 20:33:47 +02:00
public class GetGeneralImage
2013-05-02 17:12:27 +02:00
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
[ApiMember(Name = "Name", Description = "The name of the image", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Name { get; set; }
2013-05-03 20:33:47 +02:00
[ApiMember(Name = "Type", Description = "Image Type (primary, backdrop, logo, etc).", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Type { get; set; }
2013-05-02 17:12:27 +02:00
}
/// <summary>
/// Class GetRatingImage
/// </summary>
2014-11-15 03:31:03 +01:00
[Route("/Images/Ratings/{Theme}/{Name}", "GET", Summary = "Gets a rating image by name")]
2013-05-03 20:33:47 +02:00
public class GetRatingImage
2013-05-02 17:12:27 +02:00
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
[ApiMember(Name = "Name", Description = "The name of the image", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Name { get; set; }
/// <summary>
/// Gets or sets the theme.
/// </summary>
/// <value>The theme.</value>
[ApiMember(Name = "Theme", Description = "The theme to get the image from", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Theme { get; set; }
}
/// <summary>
/// Class GetMediaInfoImage
/// </summary>
2014-11-15 03:31:03 +01:00
[Route("/Images/MediaInfo/{Theme}/{Name}", "GET", Summary = "Gets a media info image by name")]
2013-05-03 20:33:47 +02:00
public class GetMediaInfoImage
2013-05-02 17:12:27 +02:00
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
[ApiMember(Name = "Name", Description = "The name of the image", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Name { get; set; }
/// <summary>
/// Gets or sets the theme.
/// </summary>
/// <value>The theme.</value>
[ApiMember(Name = "Theme", Description = "The theme to get the image from", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Theme { get; set; }
}
2014-11-15 03:31:03 +01:00
[Route("/Images/MediaInfo", "GET", Summary = "Gets all media info image by name")]
[Authenticated]
2014-05-07 04:28:19 +02:00
public class GetMediaInfoImages : IReturn<List<ImageByNameInfo>>
{
}
2014-11-15 03:31:03 +01:00
[Route("/Images/Ratings", "GET", Summary = "Gets all rating images by name")]
[Authenticated]
2014-05-07 04:28:19 +02:00
public class GetRatingImages : IReturn<List<ImageByNameInfo>>
{
}
2014-11-15 03:31:03 +01:00
[Route("/Images/General", "GET", Summary = "Gets all general images by name")]
[Authenticated]
2014-05-07 04:28:19 +02:00
public class GetGeneralImages : IReturn<List<ImageByNameInfo>>
{
}
2013-05-02 17:12:27 +02:00
/// <summary>
/// Class ImageByNameService
/// </summary>
public class ImageByNameService : BaseApiService
{
/// <summary>
/// The _app paths
/// </summary>
private readonly IServerApplicationPaths _appPaths;
2014-07-26 19:30:15 +02:00
private readonly IFileSystem _fileSystem;
2013-05-02 17:12:27 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="ImageByNameService" /> class.
/// </summary>
/// <param name="appPaths">The app paths.</param>
2014-07-26 19:30:15 +02:00
public ImageByNameService(IServerApplicationPaths appPaths, IFileSystem fileSystem)
2013-05-02 17:12:27 +02:00
{
_appPaths = appPaths;
2014-07-26 19:30:15 +02:00
_fileSystem = fileSystem;
2013-05-02 17:12:27 +02:00
}
2014-05-07 04:28:19 +02:00
public object Get(GetMediaInfoImages request)
{
return ToOptimizedResult(GetImageList(_appPaths.MediaInfoImagesPath, true));
2014-05-07 04:28:19 +02:00
}
public object Get(GetRatingImages request)
{
return ToOptimizedResult(GetImageList(_appPaths.RatingsPath, true));
2014-05-07 04:28:19 +02:00
}
public object Get(GetGeneralImages request)
{
return ToOptimizedResult(GetImageList(_appPaths.GeneralPath, false));
2014-05-07 04:28:19 +02:00
}
private List<ImageByNameInfo> GetImageList(string path, bool supportsThemes)
2014-05-07 04:28:19 +02:00
{
try
{
2015-11-16 21:26:11 +01:00
return _fileSystem.GetFiles(path, true)
2014-05-07 04:28:19 +02:00
.Where(i => BaseItem.SupportedImageExtensions.Contains(i.Extension, StringComparer.Ordinal))
.Select(i => new ImageByNameInfo
{
2014-07-26 19:30:15 +02:00
Name = _fileSystem.GetFileNameWithoutExtension(i),
2014-05-07 04:28:19 +02:00
FileLength = i.Length,
// For themeable images, use the Theme property
// For general images, the same object structure is fine,
// but it's not owned by a theme, so call it Context
Theme = supportsThemes ? GetThemeName(i.FullName, path) : null,
Context = supportsThemes ? null : GetThemeName(i.FullName, path),
2014-05-07 04:28:19 +02:00
Format = i.Extension.ToLower().TrimStart('.')
})
.OrderBy(i => i.Name)
.ToList();
}
catch (DirectoryNotFoundException)
{
return new List<ImageByNameInfo>();
}
}
private string GetThemeName(string path, string rootImagePath)
{
var parentName = Path.GetDirectoryName(path);
if (string.Equals(parentName, rootImagePath, StringComparison.OrdinalIgnoreCase))
{
return null;
}
parentName = Path.GetFileName(parentName);
return string.Equals(parentName, "all", StringComparison.OrdinalIgnoreCase) ?
null :
parentName;
}
2013-05-02 17:12:27 +02:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetGeneralImage request)
{
2013-05-03 21:34:25 +02:00
var filename = string.Equals(request.Type, "primary", StringComparison.OrdinalIgnoreCase)
2013-05-03 20:33:47 +02:00
? "folder"
: request.Type;
var paths = BaseItem.SupportedImageExtensions.Select(i => Path.Combine(_appPaths.GeneralPath, request.Name, filename + i)).ToList();
2013-05-02 17:12:27 +02:00
2015-09-13 23:32:02 +02:00
var path = paths.FirstOrDefault(_fileSystem.FileExists) ?? paths.FirstOrDefault();
return ToStaticFileResult(path);
2013-05-02 17:12:27 +02:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetRatingImage request)
{
2013-05-02 17:31:39 +02:00
var themeFolder = Path.Combine(_appPaths.RatingsPath, request.Theme);
2015-09-13 23:32:02 +02:00
if (_fileSystem.DirectoryExists(themeFolder))
2013-05-02 17:31:39 +02:00
{
2014-05-07 04:28:19 +02:00
var path = BaseItem.SupportedImageExtensions
.Select(i => Path.Combine(themeFolder, request.Name + i))
2015-09-13 23:32:02 +02:00
.FirstOrDefault(_fileSystem.FileExists);
2013-05-02 17:31:39 +02:00
if (!string.IsNullOrEmpty(path))
2013-05-02 17:31:39 +02:00
{
return ToStaticFileResult(path);
2013-05-02 17:31:39 +02:00
}
}
var allFolder = Path.Combine(_appPaths.RatingsPath, "all");
2015-09-13 23:32:02 +02:00
if (_fileSystem.DirectoryExists(allFolder))
2013-05-02 17:31:39 +02:00
{
// Avoid implicitly captured closure
var currentRequest = request;
2013-05-02 17:31:39 +02:00
2014-05-07 04:28:19 +02:00
var path = BaseItem.SupportedImageExtensions
.Select(i => Path.Combine(allFolder, currentRequest.Name + i))
2015-09-13 23:32:02 +02:00
.FirstOrDefault(_fileSystem.FileExists);
2013-05-02 17:31:39 +02:00
if (!string.IsNullOrEmpty(path))
2013-05-02 17:31:39 +02:00
{
return ToStaticFileResult(path);
2013-05-02 17:31:39 +02:00
}
}
throw new ResourceNotFoundException("MediaInfo image not found: " + request.Name);
2013-05-02 17:12:27 +02:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetMediaInfoImage request)
{
2013-05-02 17:31:39 +02:00
var themeFolder = Path.Combine(_appPaths.MediaInfoImagesPath, request.Theme);
2013-05-02 17:12:27 +02:00
2015-09-13 23:32:02 +02:00
if (_fileSystem.DirectoryExists(themeFolder))
2013-05-02 17:31:39 +02:00
{
var path = BaseItem.SupportedImageExtensions.Select(i => Path.Combine(themeFolder, request.Name + i))
2015-09-13 23:32:02 +02:00
.FirstOrDefault(_fileSystem.FileExists);
2013-05-02 17:12:27 +02:00
if (!string.IsNullOrEmpty(path))
2013-05-02 17:31:39 +02:00
{
return ToStaticFileResult(path);
2013-05-02 17:31:39 +02:00
}
}
2013-05-03 20:33:47 +02:00
2013-05-02 17:31:39 +02:00
var allFolder = Path.Combine(_appPaths.MediaInfoImagesPath, "all");
2015-09-13 23:32:02 +02:00
if (_fileSystem.DirectoryExists(allFolder))
2013-05-02 17:31:39 +02:00
{
// Avoid implicitly captured closure
var currentRequest = request;
2013-05-02 17:31:39 +02:00
var path = BaseItem.SupportedImageExtensions.Select(i => Path.Combine(allFolder, currentRequest.Name + i))
2015-09-13 23:32:02 +02:00
.FirstOrDefault(_fileSystem.FileExists);
2014-05-07 04:28:19 +02:00
if (!string.IsNullOrEmpty(path))
2013-05-02 17:31:39 +02:00
{
return ToStaticFileResult(path);
2013-05-02 17:31:39 +02:00
}
}
throw new ResourceNotFoundException("MediaInfo image not found: " + request.Name);
2013-05-02 17:12:27 +02:00
}
}
}