| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.ComponentModel.DataAnnotations;
 
- using System.Diagnostics.CodeAnalysis;
 
- using System.Globalization;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Net.Mime;
 
- using System.Threading;
 
- using System.Threading.Tasks;
 
- using Jellyfin.Api.Attributes;
 
- using Jellyfin.Api.Constants;
 
- using Jellyfin.Api.Helpers;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Drawing;
 
- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.Net;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Model.Drawing;
 
- using MediaBrowser.Model.Dto;
 
- using MediaBrowser.Model.Entities;
 
- using MediaBrowser.Model.IO;
 
- using MediaBrowser.Model.Net;
 
- using Microsoft.AspNetCore.Authorization;
 
- using Microsoft.AspNetCore.Http;
 
- using Microsoft.AspNetCore.Mvc;
 
- using Microsoft.Extensions.Logging;
 
- using Microsoft.Net.Http.Headers;
 
- namespace Jellyfin.Api.Controllers
 
- {
 
-     /// <summary>
 
-     /// Image controller.
 
-     /// </summary>
 
-     [Route("")]
 
-     public class ImageController : BaseJellyfinApiController
 
-     {
 
-         private readonly IUserManager _userManager;
 
-         private readonly ILibraryManager _libraryManager;
 
-         private readonly IProviderManager _providerManager;
 
-         private readonly IImageProcessor _imageProcessor;
 
-         private readonly IFileSystem _fileSystem;
 
-         private readonly IAuthorizationContext _authContext;
 
-         private readonly ILogger<ImageController> _logger;
 
-         private readonly IServerConfigurationManager _serverConfigurationManager;
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="ImageController"/> class.
 
-         /// </summary>
 
-         /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
 
-         /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
 
-         /// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
 
-         /// <param name="imageProcessor">Instance of the <see cref="IImageProcessor"/> interface.</param>
 
-         /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
 
-         /// <param name="authContext">Instance of the <see cref="IAuthorizationContext"/> interface.</param>
 
-         /// <param name="logger">Instance of the <see cref="ILogger{ImageController}"/> interface.</param>
 
-         /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
 
-         public ImageController(
 
-             IUserManager userManager,
 
-             ILibraryManager libraryManager,
 
-             IProviderManager providerManager,
 
-             IImageProcessor imageProcessor,
 
-             IFileSystem fileSystem,
 
-             IAuthorizationContext authContext,
 
-             ILogger<ImageController> logger,
 
-             IServerConfigurationManager serverConfigurationManager)
 
-         {
 
-             _userManager = userManager;
 
-             _libraryManager = libraryManager;
 
-             _providerManager = providerManager;
 
-             _imageProcessor = imageProcessor;
 
-             _fileSystem = fileSystem;
 
-             _authContext = authContext;
 
-             _logger = logger;
 
-             _serverConfigurationManager = serverConfigurationManager;
 
-         }
 
-         /// <summary>
 
-         /// Sets the user image.
 
-         /// </summary>
 
-         /// <param name="userId">User Id.</param>
 
-         /// <param name="imageType">(Unused) Image type.</param>
 
-         /// <param name="index">(Unused) Image index.</param>
 
-         /// <response code="204">Image updated.</response>
 
-         /// <response code="403">User does not have permission to delete the image.</response>
 
-         /// <returns>A <see cref="NoContentResult"/>.</returns>
 
-         [HttpPost("Users/{userId}/Images/{imageType}")]
 
-         [HttpPost("Users/{userId}/Images/{imageType}/{index?}", Name = "PostUserImage_2")]
 
-         [Authorize(Policy = Policies.DefaultAuthorization)]
 
-         [ProducesResponseType(StatusCodes.Status204NoContent)]
 
-         [ProducesResponseType(StatusCodes.Status403Forbidden)]
 
-         [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "imageType", Justification = "Imported from ServiceStack")]
 
-         [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "index", Justification = "Imported from ServiceStack")]
 
-         public async Task<ActionResult> PostUserImage(
 
-             [FromRoute, Required] Guid userId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute] int? index = null)
 
-         {
 
-             if (!RequestHelpers.AssertCanUpdateUser(_authContext, HttpContext.Request, userId, true))
 
-             {
 
-                 return Forbid("User is not allowed to update the image.");
 
-             }
 
-             var user = _userManager.GetUserById(userId);
 
-             await using var memoryStream = await GetMemoryStream(Request.Body).ConfigureAwait(false);
 
-             // Handle image/png; charset=utf-8
 
-             var mimeType = Request.ContentType.Split(';').FirstOrDefault();
 
-             var userDataPath = Path.Combine(_serverConfigurationManager.ApplicationPaths.UserConfigurationDirectoryPath, user.Username);
 
-             if (user.ProfileImage != null)
 
-             {
 
-                 await _userManager.ClearProfileImageAsync(user).ConfigureAwait(false);
 
-             }
 
-             user.ProfileImage = new Data.Entities.ImageInfo(Path.Combine(userDataPath, "profile" + MimeTypes.ToExtension(mimeType)));
 
-             await _providerManager
 
-                 .SaveImage(memoryStream, mimeType, user.ProfileImage.Path)
 
-                 .ConfigureAwait(false);
 
-             await _userManager.UpdateUserAsync(user).ConfigureAwait(false);
 
-             return NoContent();
 
-         }
 
-         /// <summary>
 
-         /// Delete the user's image.
 
-         /// </summary>
 
-         /// <param name="userId">User Id.</param>
 
-         /// <param name="imageType">(Unused) Image type.</param>
 
-         /// <param name="index">(Unused) Image index.</param>
 
-         /// <response code="204">Image deleted.</response>
 
-         /// <response code="403">User does not have permission to delete the image.</response>
 
-         /// <returns>A <see cref="NoContentResult"/>.</returns>
 
-         [HttpDelete("Users/{userId}/Images/{itemType}")]
 
-         [HttpDelete("Users/{userId}/Images/{itemType}/{index?}", Name = "DeleteUserImage_2")]
 
-         [Authorize(Policy = Policies.DefaultAuthorization)]
 
-         [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "imageType", Justification = "Imported from ServiceStack")]
 
-         [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "index", Justification = "Imported from ServiceStack")]
 
-         [ProducesResponseType(StatusCodes.Status204NoContent)]
 
-         [ProducesResponseType(StatusCodes.Status403Forbidden)]
 
-         public async Task<ActionResult> DeleteUserImage(
 
-             [FromRoute, Required] Guid userId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute] int? index = null)
 
-         {
 
-             if (!RequestHelpers.AssertCanUpdateUser(_authContext, HttpContext.Request, userId, true))
 
-             {
 
-                 return Forbid("User is not allowed to delete the image.");
 
-             }
 
-             var user = _userManager.GetUserById(userId);
 
-             try
 
-             {
 
-                 System.IO.File.Delete(user.ProfileImage.Path);
 
-             }
 
-             catch (IOException e)
 
-             {
 
-                 _logger.LogError(e, "Error deleting user profile image:");
 
-             }
 
-             await _userManager.ClearProfileImageAsync(user).ConfigureAwait(false);
 
-             return NoContent();
 
-         }
 
-         /// <summary>
 
-         /// Delete an item's image.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="imageIndex">The image index.</param>
 
-         /// <response code="204">Image deleted.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>A <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if item not found.</returns>
 
-         [HttpDelete("Items/{itemId}/Images/{imageType}")]
 
-         [HttpDelete("Items/{itemId}/Images/{imageType}/{imageIndex?}", Name = "DeleteItemImage_2")]
 
-         [Authorize(Policy = Policies.RequiresElevation)]
 
-         [ProducesResponseType(StatusCodes.Status204NoContent)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         public async Task<ActionResult> DeleteItemImage(
 
-             [FromRoute, Required] Guid itemId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             await item.DeleteImageAsync(imageType, imageIndex ?? 0).ConfigureAwait(false);
 
-             return NoContent();
 
-         }
 
-         /// <summary>
 
-         /// Set item image.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="imageIndex">(Unused) Image index.</param>
 
-         /// <response code="204">Image saved.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>A <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if item not found.</returns>
 
-         [HttpPost("Items/{itemId}/Images/{imageType}")]
 
-         [HttpPost("Items/{itemId}/Images/{imageType}/{imageIndex?}", Name = "SetItemImage_2")]
 
-         [Authorize(Policy = Policies.RequiresElevation)]
 
-         [ProducesResponseType(StatusCodes.Status204NoContent)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "index", Justification = "Imported from ServiceStack")]
 
-         public async Task<ActionResult> SetItemImage(
 
-             [FromRoute, Required] Guid itemId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             // Handle image/png; charset=utf-8
 
-             var mimeType = Request.ContentType.Split(';').FirstOrDefault();
 
-             await _providerManager.SaveImage(item, Request.Body, mimeType, imageType, null, CancellationToken.None).ConfigureAwait(false);
 
-             await item.UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
 
-             return NoContent();
 
-         }
 
-         /// <summary>
 
-         /// Updates the index for an item image.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="imageIndex">Old image index.</param>
 
-         /// <param name="newIndex">New image index.</param>
 
-         /// <response code="204">Image index updated.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>A <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if item not found.</returns>
 
-         [HttpPost("Items/{itemId}/Images/{imageType}/{imageIndex}/Index")]
 
-         [Authorize(Policy = Policies.RequiresElevation)]
 
-         [ProducesResponseType(StatusCodes.Status204NoContent)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         public async Task<ActionResult> UpdateItemImageIndex(
 
-             [FromRoute, Required] Guid itemId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute, Required] int imageIndex,
 
-             [FromQuery] int newIndex)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             await item.SwapImagesAsync(imageType, imageIndex, newIndex).ConfigureAwait(false);
 
-             return NoContent();
 
-         }
 
-         /// <summary>
 
-         /// Get item image infos.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <response code="200">Item images returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>The list of image infos on success, or <see cref="NotFoundResult"/> if item not found.</returns>
 
-         [HttpGet("Items/{itemId}/Images")]
 
-         [Authorize(Policy = Policies.DefaultAuthorization)]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         public async Task<ActionResult<IEnumerable<ImageInfo>>> GetItemImageInfos([FromRoute, Required] Guid itemId)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             var list = new List<ImageInfo>();
 
-             var itemImages = item.ImageInfos;
 
-             if (itemImages.Length == 0)
 
-             {
 
-                 // short-circuit
 
-                 return list;
 
-             }
 
-             await _libraryManager.UpdateImagesAsync(item).ConfigureAwait(false); // this makes sure dimensions and hashes are correct
 
-             foreach (var image in itemImages)
 
-             {
 
-                 if (!item.AllowsMultipleImages(image.Type))
 
-                 {
 
-                     var info = GetImageInfo(item, image, null);
 
-                     if (info != null)
 
-                     {
 
-                         list.Add(info);
 
-                     }
 
-                 }
 
-             }
 
-             foreach (var imageType in itemImages.Select(i => i.Type).Distinct().Where(item.AllowsMultipleImages))
 
-             {
 
-                 var index = 0;
 
-                 // Prevent implicitly captured closure
 
-                 var currentImageType = imageType;
 
-                 foreach (var image in itemImages.Where(i => i.Type == currentImageType))
 
-                 {
 
-                     var info = GetImageInfo(item, image, index);
 
-                     if (info != null)
 
-                     {
 
-                         list.Add(info);
 
-                     }
 
-                     index++;
 
-                 }
 
-             }
 
-             return list;
 
-         }
 
-         /// <summary>
 
-         /// Gets the item's image.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="format">Optional. The <see cref="ImageFormat"/> of the returned image.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Items/{itemId}/Images/{imageType}")]
 
-         [HttpHead("Items/{itemId}/Images/{imageType}", Name = "HeadItemImage")]
 
-         [HttpGet("Items/{itemId}/Images/{imageType}/{imageIndex?}", Name = "GetItemImage_2")]
 
-         [HttpHead("Items/{itemId}/Images/{imageType}/{imageIndex?}", Name = "HeadItemImage_2")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetItemImage(
 
-             [FromRoute, Required] Guid itemId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] string? tag,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     itemId,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Gets the item's image.
 
-         /// </summary>
 
-         /// <param name="itemId">Item id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}")]
 
-         [HttpHead("Items/{itemId}/Images/{imageType}/{imageIndex}/{tag}/{format}/{maxWidth}/{maxHeight}/{percentPlayed}/{unplayedCount}", Name = "HeadItemImage2")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetItemImage2(
 
-             [FromRoute, Required] Guid itemId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute, Required] int maxWidth,
 
-             [FromRoute, Required] int maxHeight,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromRoute, Required] string tag,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromRoute, Required] ImageFormat format,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromRoute, Required] double percentPlayed,
 
-             [FromRoute, Required] int unplayedCount,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute, Required] int imageIndex)
 
-         {
 
-             var item = _libraryManager.GetItemById(itemId);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     itemId,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get artist image by name.
 
-         /// </summary>
 
-         /// <param name="name">Artist name.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Artists/{name}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("Artists/{name}/Images/{imageType}/{imageIndex?}", Name = "HeadArtistImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetArtistImage(
 
-             [FromRoute, Required] string name,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] string tag,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute, Required] int imageIndex)
 
-         {
 
-             var item = _libraryManager.GetArtist(name);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     item.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get genre image by name.
 
-         /// </summary>
 
-         /// <param name="name">Genre name.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Genres/{name}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("Genres/{name}/Images/{imageType}/{imageIndex?}", Name = "HeadGenreImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetGenreImage(
 
-             [FromRoute, Required] string name,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] string tag,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetGenre(name);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     item.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get music genre image by name.
 
-         /// </summary>
 
-         /// <param name="name">Music genre name.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("MusicGenres/{name}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("MusicGenres/{name}/Images/{imageType}/{imageIndex?}", Name = "HeadMusicGenreImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetMusicGenreImage(
 
-             [FromRoute, Required] string name,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] string tag,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetMusicGenre(name);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     item.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get person image by name.
 
-         /// </summary>
 
-         /// <param name="name">Person name.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Persons/{name}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("Persons/{name}/Images/{imageType}/{imageIndex?}", Name = "HeadPersonImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetPersonImage(
 
-             [FromRoute, Required] string name,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] string tag,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetPerson(name);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     item.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get studio image by name.
 
-         /// </summary>
 
-         /// <param name="name">Studio name.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Studios/{name}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("Studios/{name}/Images/{imageType}/{imageIndex?}", Name = "HeadStudioImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetStudioImage(
 
-             [FromRoute, Required] string name,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromRoute, Required] string tag,
 
-             [FromRoute, Required] ImageFormat format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var item = _libraryManager.GetStudio(name);
 
-             if (item == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             return await GetImageInternal(
 
-                     item.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     item,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase))
 
-                 .ConfigureAwait(false);
 
-         }
 
-         /// <summary>
 
-         /// Get user profile image.
 
-         /// </summary>
 
-         /// <param name="userId">User id.</param>
 
-         /// <param name="imageType">Image type.</param>
 
-         /// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
 
-         /// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
 
-         /// <param name="maxWidth">The maximum image width to return.</param>
 
-         /// <param name="maxHeight">The maximum image height to return.</param>
 
-         /// <param name="percentPlayed">Optional. Percent to render for the percent played overlay.</param>
 
-         /// <param name="unplayedCount">Optional. Unplayed count overlay to render.</param>
 
-         /// <param name="width">The fixed image width to return.</param>
 
-         /// <param name="height">The fixed image height to return.</param>
 
-         /// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
 
-         /// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
 
-         /// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
 
-         /// <param name="blur">Optional. Blur image.</param>
 
-         /// <param name="backgroundColor">Optional. Apply a background color for transparent images.</param>
 
-         /// <param name="foregroundLayer">Optional. Apply a foreground layer on top of the image.</param>
 
-         /// <param name="imageIndex">Image index.</param>
 
-         /// <response code="200">Image stream returned.</response>
 
-         /// <response code="404">Item not found.</response>
 
-         /// <returns>
 
-         /// A <see cref="FileStreamResult"/> containing the file stream on success,
 
-         /// or a <see cref="NotFoundResult"/> if item not found.
 
-         /// </returns>
 
-         [HttpGet("Users/{userId}/Images/{imageType}/{imageIndex?}")]
 
-         [HttpHead("Users/{userId}/Images/{imageType}/{imageIndex?}", Name = "HeadUserImage")]
 
-         [ProducesResponseType(StatusCodes.Status200OK)]
 
-         [ProducesResponseType(StatusCodes.Status404NotFound)]
 
-         [ProducesImageFile]
 
-         public async Task<ActionResult> GetUserImage(
 
-             [FromRoute, Required] Guid userId,
 
-             [FromRoute, Required] ImageType imageType,
 
-             [FromQuery] string? tag,
 
-             [FromQuery] ImageFormat? format,
 
-             [FromQuery] int? maxWidth,
 
-             [FromQuery] int? maxHeight,
 
-             [FromQuery] double? percentPlayed,
 
-             [FromQuery] int? unplayedCount,
 
-             [FromQuery] int? width,
 
-             [FromQuery] int? height,
 
-             [FromQuery] int? quality,
 
-             [FromQuery] bool? cropWhitespace,
 
-             [FromQuery] bool? addPlayedIndicator,
 
-             [FromQuery] int? blur,
 
-             [FromQuery] string? backgroundColor,
 
-             [FromQuery] string? foregroundLayer,
 
-             [FromRoute] int? imageIndex = null)
 
-         {
 
-             var user = _userManager.GetUserById(userId);
 
-             if (user == null)
 
-             {
 
-                 return NotFound();
 
-             }
 
-             var info = new ItemImageInfo
 
-             {
 
-                 Path = user.ProfileImage.Path,
 
-                 Type = ImageType.Profile,
 
-                 DateModified = user.ProfileImage.LastModified
 
-             };
 
-             if (width.HasValue)
 
-             {
 
-                 info.Width = width.Value;
 
-             }
 
-             if (height.HasValue)
 
-             {
 
-                 info.Height = height.Value;
 
-             }
 
-             return await GetImageInternal(
 
-                     user.Id,
 
-                     imageType,
 
-                     imageIndex,
 
-                     tag,
 
-                     format,
 
-                     maxWidth,
 
-                     maxHeight,
 
-                     percentPlayed,
 
-                     unplayedCount,
 
-                     width,
 
-                     height,
 
-                     quality,
 
-                     cropWhitespace,
 
-                     addPlayedIndicator,
 
-                     blur,
 
-                     backgroundColor,
 
-                     foregroundLayer,
 
-                     null,
 
-                     Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase),
 
-                     info)
 
-                 .ConfigureAwait(false);
 
-         }
 
-         private static async Task<MemoryStream> GetMemoryStream(Stream inputStream)
 
-         {
 
-             using var reader = new StreamReader(inputStream);
 
-             var text = await reader.ReadToEndAsync().ConfigureAwait(false);
 
-             var bytes = Convert.FromBase64String(text);
 
-             return new MemoryStream(bytes, 0, bytes.Length, false, true);
 
-         }
 
-         private ImageInfo? GetImageInfo(BaseItem item, ItemImageInfo info, int? imageIndex)
 
-         {
 
-             int? width = null;
 
-             int? height = null;
 
-             string? blurhash = null;
 
-             long length = 0;
 
-             try
 
-             {
 
-                 if (info.IsLocalFile)
 
-                 {
 
-                     var fileInfo = _fileSystem.GetFileInfo(info.Path);
 
-                     length = fileInfo.Length;
 
-                     blurhash = info.BlurHash;
 
-                     width = info.Width;
 
-                     height = info.Height;
 
-                     if (width <= 0 || height <= 0)
 
-                     {
 
-                         width = null;
 
-                         height = null;
 
-                     }
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 _logger.LogError(ex, "Error getting image information for {Item}", item.Name);
 
-             }
 
-             try
 
-             {
 
-                 return new ImageInfo
 
-                 {
 
-                     Path = info.Path,
 
-                     ImageIndex = imageIndex,
 
-                     ImageType = info.Type,
 
-                     ImageTag = _imageProcessor.GetImageCacheTag(item, info),
 
-                     Size = length,
 
-                     BlurHash = blurhash,
 
-                     Width = width,
 
-                     Height = height
 
-                 };
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 _logger.LogError(ex, "Error getting image information for {Path}", info.Path);
 
-                 return null;
 
-             }
 
-         }
 
-         private async Task<ActionResult> GetImageInternal(
 
-             Guid itemId,
 
-             ImageType imageType,
 
-             int? imageIndex,
 
-             string? tag,
 
-             ImageFormat? format,
 
-             int? maxWidth,
 
-             int? maxHeight,
 
-             double? percentPlayed,
 
-             int? unplayedCount,
 
-             int? width,
 
-             int? height,
 
-             int? quality,
 
-             bool? cropWhitespace,
 
-             bool? addPlayedIndicator,
 
-             int? blur,
 
-             string? backgroundColor,
 
-             string? foregroundLayer,
 
-             BaseItem? item,
 
-             bool isHeadRequest,
 
-             ItemImageInfo? imageInfo = null)
 
-         {
 
-             if (percentPlayed.HasValue)
 
-             {
 
-                 if (percentPlayed.Value <= 0)
 
-                 {
 
-                     percentPlayed = null;
 
-                 }
 
-                 else if (percentPlayed.Value >= 100)
 
-                 {
 
-                     percentPlayed = null;
 
-                     addPlayedIndicator = true;
 
-                 }
 
-             }
 
-             if (percentPlayed.HasValue)
 
-             {
 
-                 unplayedCount = null;
 
-             }
 
-             if (unplayedCount.HasValue
 
-                 && unplayedCount.Value <= 0)
 
-             {
 
-                 unplayedCount = null;
 
-             }
 
-             if (imageInfo == null)
 
-             {
 
-                 imageInfo = item?.GetImageInfo(imageType, imageIndex ?? 0);
 
-                 if (imageInfo == null)
 
-                 {
 
-                     return NotFound(string.Format(NumberFormatInfo.InvariantInfo, "{0} does not have an image of type {1}", item?.Name, imageType));
 
-                 }
 
-             }
 
-             cropWhitespace ??= imageType == ImageType.Logo || imageType == ImageType.Art;
 
-             var outputFormats = GetOutputFormats(format);
 
-             TimeSpan? cacheDuration = null;
 
-             if (!string.IsNullOrEmpty(tag))
 
-             {
 
-                 cacheDuration = TimeSpan.FromDays(365);
 
-             }
 
-             var responseHeaders = new Dictionary<string, string>
 
-             {
 
-                 { "transferMode.dlna.org", "Interactive" },
 
-                 { "realTimeInfo.dlna.org", "DLNA.ORG_TLAG=*" }
 
-             };
 
-             return await GetImageResult(
 
-                 item,
 
-                 itemId,
 
-                 imageIndex,
 
-                 height,
 
-                 maxHeight,
 
-                 maxWidth,
 
-                 quality,
 
-                 width,
 
-                 addPlayedIndicator,
 
-                 percentPlayed,
 
-                 unplayedCount,
 
-                 blur,
 
-                 backgroundColor,
 
-                 foregroundLayer,
 
-                 imageInfo,
 
-                 cropWhitespace.Value,
 
-                 outputFormats,
 
-                 cacheDuration,
 
-                 responseHeaders,
 
-                 isHeadRequest).ConfigureAwait(false);
 
-         }
 
-         private ImageFormat[] GetOutputFormats(ImageFormat? format)
 
-         {
 
-             if (format.HasValue)
 
-             {
 
-                 return new[] { format.Value };
 
-             }
 
-             return GetClientSupportedFormats();
 
-         }
 
-         private ImageFormat[] GetClientSupportedFormats()
 
-         {
 
-             var acceptTypes = Request.Headers[HeaderNames.Accept];
 
-             var supportedFormats = new List<string>();
 
-             if (acceptTypes.Count > 0)
 
-             {
 
-                 foreach (var type in acceptTypes)
 
-                 {
 
-                     int index = type.IndexOf(';', StringComparison.Ordinal);
 
-                     if (index != -1)
 
-                     {
 
-                         supportedFormats.Add(type.Substring(0, index));
 
-                     }
 
-                 }
 
-             }
 
-             var acceptParam = Request.Query[HeaderNames.Accept];
 
-             var supportsWebP = SupportsFormat(supportedFormats, acceptParam, ImageFormat.Webp, false);
 
-             if (!supportsWebP)
 
-             {
 
-                 var userAgent = Request.Headers[HeaderNames.UserAgent].ToString();
 
-                 if (userAgent.IndexOf("crosswalk", StringComparison.OrdinalIgnoreCase) != -1 &&
 
-                     userAgent.IndexOf("android", StringComparison.OrdinalIgnoreCase) != -1)
 
-                 {
 
-                     supportsWebP = true;
 
-                 }
 
-             }
 
-             var formats = new List<ImageFormat>(4);
 
-             if (supportsWebP)
 
-             {
 
-                 formats.Add(ImageFormat.Webp);
 
-             }
 
-             formats.Add(ImageFormat.Jpg);
 
-             formats.Add(ImageFormat.Png);
 
-             if (SupportsFormat(supportedFormats, acceptParam, ImageFormat.Gif, true))
 
-             {
 
-                 formats.Add(ImageFormat.Gif);
 
-             }
 
-             return formats.ToArray();
 
-         }
 
-         private bool SupportsFormat(IReadOnlyCollection<string> requestAcceptTypes, string acceptParam, ImageFormat format, bool acceptAll)
 
-         {
 
-             var normalized = format.ToString().ToLowerInvariant();
 
-             var mimeType = "image/" + normalized;
 
-             if (requestAcceptTypes.Contains(mimeType))
 
-             {
 
-                 return true;
 
-             }
 
-             if (acceptAll && requestAcceptTypes.Contains("*/*"))
 
-             {
 
-                 return true;
 
-             }
 
-             return string.Equals(acceptParam, normalized, StringComparison.OrdinalIgnoreCase);
 
-         }
 
-         private async Task<ActionResult> GetImageResult(
 
-             BaseItem? item,
 
-             Guid itemId,
 
-             int? index,
 
-             int? height,
 
-             int? maxHeight,
 
-             int? maxWidth,
 
-             int? quality,
 
-             int? width,
 
-             bool? addPlayedIndicator,
 
-             double? percentPlayed,
 
-             int? unplayedCount,
 
-             int? blur,
 
-             string? backgroundColor,
 
-             string? foregroundLayer,
 
-             ItemImageInfo imageInfo,
 
-             bool cropWhitespace,
 
-             IReadOnlyCollection<ImageFormat> supportedFormats,
 
-             TimeSpan? cacheDuration,
 
-             IDictionary<string, string> headers,
 
-             bool isHeadRequest)
 
-         {
 
-             if (!imageInfo.IsLocalFile && item != null)
 
-             {
 
-                 imageInfo = await _libraryManager.ConvertImageToLocal(item, imageInfo, index ?? 0).ConfigureAwait(false);
 
-             }
 
-             var options = new ImageProcessingOptions
 
-             {
 
-                 CropWhiteSpace = cropWhitespace,
 
-                 Height = height,
 
-                 ImageIndex = index ?? 0,
 
-                 Image = imageInfo,
 
-                 Item = item,
 
-                 ItemId = itemId,
 
-                 MaxHeight = maxHeight,
 
-                 MaxWidth = maxWidth,
 
-                 Quality = quality ?? 100,
 
-                 Width = width,
 
-                 AddPlayedIndicator = addPlayedIndicator ?? false,
 
-                 PercentPlayed = percentPlayed ?? 0,
 
-                 UnplayedCount = unplayedCount,
 
-                 Blur = blur,
 
-                 BackgroundColor = backgroundColor,
 
-                 ForegroundLayer = foregroundLayer,
 
-                 SupportedOutputFormats = supportedFormats
 
-             };
 
-             var (imagePath, imageContentType, dateImageModified) = await _imageProcessor.ProcessImage(options).ConfigureAwait(false);
 
-             var disableCaching = Request.Headers[HeaderNames.CacheControl].Contains("no-cache");
 
-             var parsingSuccessful = DateTime.TryParse(Request.Headers[HeaderNames.IfModifiedSince], out var ifModifiedSinceHeader);
 
-             // if the parsing of the IfModifiedSince header was not successful, disable caching
 
-             if (!parsingSuccessful)
 
-             {
 
-                 // disableCaching = true;
 
-             }
 
-             foreach (var (key, value) in headers)
 
-             {
 
-                 Response.Headers.Add(key, value);
 
-             }
 
-             Response.ContentType = imageContentType ?? MediaTypeNames.Text.Plain;
 
-             Response.Headers.Add(HeaderNames.Age, Convert.ToInt64((DateTime.UtcNow - dateImageModified).TotalSeconds).ToString(CultureInfo.InvariantCulture));
 
-             Response.Headers.Add(HeaderNames.Vary, HeaderNames.Accept);
 
-             if (disableCaching)
 
-             {
 
-                 Response.Headers.Add(HeaderNames.CacheControl, "no-cache, no-store, must-revalidate");
 
-                 Response.Headers.Add(HeaderNames.Pragma, "no-cache, no-store, must-revalidate");
 
-             }
 
-             else
 
-             {
 
-                 if (cacheDuration.HasValue)
 
-                 {
 
-                     Response.Headers.Add(HeaderNames.CacheControl, "public, max-age=" + cacheDuration.Value.TotalSeconds);
 
-                 }
 
-                 else
 
-                 {
 
-                     Response.Headers.Add(HeaderNames.CacheControl, "public");
 
-                 }
 
-                 Response.Headers.Add(HeaderNames.LastModified, dateImageModified.ToUniversalTime().ToString("ddd, dd MMM yyyy HH:mm:ss \"GMT\"", new CultureInfo("en-US", false)));
 
-                 // if the image was not modified since "ifModifiedSinceHeader"-header, return a HTTP status code 304 not modified
 
-                 if (!(dateImageModified > ifModifiedSinceHeader) && cacheDuration.HasValue)
 
-                 {
 
-                     if (ifModifiedSinceHeader.Add(cacheDuration.Value) < DateTime.UtcNow)
 
-                     {
 
-                         Response.StatusCode = StatusCodes.Status304NotModified;
 
-                         return new ContentResult();
 
-                     }
 
-                 }
 
-             }
 
-             // if the request is a head request, return a NoContent result with the same headers as it would with a GET request
 
-             if (isHeadRequest)
 
-             {
 
-                 return NoContent();
 
-             }
 
-             return PhysicalFile(imagePath, imageContentType);
 
-         }
 
-     }
 
- }
 
 
  |