jellyfin/Jellyfin.Api/Controllers/DisplayPreferencesController.cs

215 lines
11 KiB
C#
Raw Normal View History

2020-08-03 20:01:24 +02:00
using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
2020-08-03 20:01:24 +02:00
using System.Globalization;
using System.Linq;
2020-06-22 15:44:11 +02:00
using Jellyfin.Api.Constants;
2020-08-03 20:01:24 +02:00
using Jellyfin.Data.Entities;
using Jellyfin.Data.Enums;
2020-12-05 00:27:31 +01:00
using MediaBrowser.Common.Extensions;
2020-08-03 20:01:24 +02:00
using MediaBrowser.Controller;
using MediaBrowser.Model.Dto;
2020-04-23 18:07:21 +02:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
2020-04-19 20:06:18 +02:00
using Microsoft.AspNetCore.Mvc;
2020-12-10 15:41:00 +01:00
using Microsoft.Extensions.Logging;
2020-04-19 20:06:18 +02:00
namespace Jellyfin.Api.Controllers
{
/// <summary>
/// Display Preferences Controller.
/// </summary>
2020-06-22 15:44:11 +02:00
[Authorize(Policy = Policies.DefaultAuthorization)]
2020-04-19 20:06:18 +02:00
public class DisplayPreferencesController : BaseJellyfinApiController
{
2020-08-03 20:01:24 +02:00
private readonly IDisplayPreferencesManager _displayPreferencesManager;
2020-12-10 15:41:00 +01:00
private readonly ILogger<DisplayPreferencesController> _logger;
/// <summary>
/// Initializes a new instance of the <see cref="DisplayPreferencesController"/> class.
/// </summary>
2020-08-03 20:01:24 +02:00
/// <param name="displayPreferencesManager">Instance of <see cref="IDisplayPreferencesManager"/> interface.</param>
2020-12-10 15:41:00 +01:00
/// <param name="logger">Instance of <see cref="ILogger{DisplayPreferencesController}"/> interface.</param>
public DisplayPreferencesController(IDisplayPreferencesManager displayPreferencesManager, ILogger<DisplayPreferencesController> logger)
{
2020-08-03 20:01:24 +02:00
_displayPreferencesManager = displayPreferencesManager;
2020-12-10 15:41:00 +01:00
_logger = logger;
}
/// <summary>
2020-04-19 20:30:10 +02:00
/// Get Display Preferences.
/// </summary>
/// <param name="displayPreferencesId">Display preferences id.</param>
/// <param name="userId">User id.</param>
/// <param name="client">Client.</param>
2020-05-03 01:06:29 +02:00
/// <response code="200">Display preferences retrieved.</response>
/// <returns>An <see cref="OkResult"/> containing the display preferences on success, or a <see cref="NotFoundResult"/> if the display preferences could not be found.</returns>
[HttpGet("{displayPreferencesId}")]
2020-04-21 22:01:47 +02:00
[ProducesResponseType(StatusCodes.Status200OK)]
2020-08-03 20:01:24 +02:00
[SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "displayPreferencesId", Justification = "Imported from ServiceStack")]
public ActionResult<DisplayPreferencesDto> GetDisplayPreferences(
2020-09-08 02:45:06 +02:00
[FromRoute, Required] string displayPreferencesId,
2020-09-08 02:46:14 +02:00
[FromQuery, Required] Guid userId,
2020-09-09 22:28:30 +02:00
[FromQuery, Required] string client)
{
2020-12-05 00:27:31 +01:00
if (!Guid.TryParse(displayPreferencesId, out var itemId))
{
itemId = displayPreferencesId.GetMD5();
}
2020-12-05 00:00:11 +01:00
var displayPreferences = _displayPreferencesManager.GetDisplayPreferences(userId, itemId, client);
2020-12-04 17:16:38 +01:00
var itemPreferences = _displayPreferencesManager.GetItemDisplayPreferences(displayPreferences.UserId, itemId, displayPreferences.Client);
itemPreferences.ItemId = itemId;
2020-08-03 20:01:24 +02:00
var dto = new DisplayPreferencesDto
{
Client = displayPreferences.Client,
2020-12-05 00:00:11 +01:00
Id = displayPreferences.ItemId.ToString(),
2020-08-03 20:01:24 +02:00
SortBy = itemPreferences.SortBy,
SortOrder = itemPreferences.SortOrder,
IndexBy = displayPreferences.IndexBy?.ToString(),
RememberIndexing = itemPreferences.RememberIndexing,
RememberSorting = itemPreferences.RememberSorting,
ScrollDirection = displayPreferences.ScrollDirection,
ShowBackdrop = displayPreferences.ShowBackdrop,
ShowSidebar = displayPreferences.ShowSidebar
};
foreach (var homeSection in displayPreferences.HomeSections)
{
dto.CustomPrefs["homesection" + homeSection.Order] = homeSection.Type.ToString().ToLowerInvariant();
}
dto.CustomPrefs["chromecastVersion"] = displayPreferences.ChromecastVersion.ToString().ToLowerInvariant();
dto.CustomPrefs["skipForwardLength"] = displayPreferences.SkipForwardLength.ToString(CultureInfo.InvariantCulture);
dto.CustomPrefs["skipBackLength"] = displayPreferences.SkipBackwardLength.ToString(CultureInfo.InvariantCulture);
dto.CustomPrefs["enableNextVideoInfoOverlay"] = displayPreferences.EnableNextVideoInfoOverlay.ToString(CultureInfo.InvariantCulture);
dto.CustomPrefs["tvhome"] = displayPreferences.TvHome;
dto.CustomPrefs["dashboardTheme"] = displayPreferences.DashboardTheme;
2020-08-03 20:01:24 +02:00
// Load all custom display preferences
2020-12-05 00:00:11 +01:00
var customDisplayPreferences = _displayPreferencesManager.ListCustomItemDisplayPreferences(displayPreferences.UserId, itemId, displayPreferences.Client);
2022-08-12 20:37:31 +02:00
foreach (var (key, value) in customDisplayPreferences)
{
2022-08-12 20:37:31 +02:00
dto.CustomPrefs.TryAdd(key, value);
}
2020-11-02 09:23:29 +01:00
// This will essentially be a noop if no changes have been made, but new prefs must be saved at least.
_displayPreferencesManager.SaveChanges();
2020-08-03 20:01:24 +02:00
return dto;
}
/// <summary>
2020-04-19 20:30:10 +02:00
/// Update Display Preferences.
/// </summary>
/// <param name="displayPreferencesId">Display preferences id.</param>
/// <param name="userId">User Id.</param>
/// <param name="client">Client.</param>
/// <param name="displayPreferences">New Display Preferences object.</param>
/// <response code="204">Display preferences updated.</response>
/// <returns>An <see cref="NoContentResult"/> on success.</returns>
[HttpPost("{displayPreferencesId}")]
[ProducesResponseType(StatusCodes.Status204NoContent)]
[SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "displayPreferencesId", Justification = "Imported from ServiceStack")]
2020-04-21 22:01:47 +02:00
public ActionResult UpdateDisplayPreferences(
2020-09-08 02:45:06 +02:00
[FromRoute, Required] string displayPreferencesId,
2020-08-06 16:17:45 +02:00
[FromQuery, Required] Guid userId,
2020-09-09 22:28:30 +02:00
[FromQuery, Required] string client,
2020-08-06 16:17:45 +02:00
[FromBody, Required] DisplayPreferencesDto displayPreferences)
{
2020-08-03 20:01:24 +02:00
HomeSectionType[] defaults =
{
HomeSectionType.SmallLibraryTiles,
HomeSectionType.Resume,
HomeSectionType.ResumeAudio,
HomeSectionType.ResumeBook,
2020-08-03 20:01:24 +02:00
HomeSectionType.LiveTv,
HomeSectionType.NextUp,
HomeSectionType.LatestMedia,
HomeSectionType.None,
2020-08-03 20:01:24 +02:00
};
2020-12-05 00:27:31 +01:00
if (!Guid.TryParse(displayPreferencesId, out var itemId))
{
itemId = displayPreferencesId.GetMD5();
}
2020-12-05 00:00:11 +01:00
var existingDisplayPreferences = _displayPreferencesManager.GetDisplayPreferences(userId, itemId, client);
existingDisplayPreferences.IndexBy = Enum.TryParse<IndexingKind>(displayPreferences.IndexBy, true, out var indexBy) ? indexBy : null;
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.ShowBackdrop = displayPreferences.ShowBackdrop;
existingDisplayPreferences.ShowSidebar = displayPreferences.ShowSidebar;
existingDisplayPreferences.ScrollDirection = displayPreferences.ScrollDirection;
existingDisplayPreferences.ChromecastVersion = displayPreferences.CustomPrefs.TryGetValue("chromecastVersion", out var chromecastVersion)
&& !string.IsNullOrEmpty(chromecastVersion)
2020-08-03 20:01:24 +02:00
? Enum.Parse<ChromecastVersion>(chromecastVersion, true)
: ChromecastVersion.Stable;
displayPreferences.CustomPrefs.Remove("chromecastVersion");
existingDisplayPreferences.EnableNextVideoInfoOverlay = !displayPreferences.CustomPrefs.TryGetValue("enableNextVideoInfoOverlay", out var enableNextVideoInfoOverlay)
|| string.IsNullOrEmpty(enableNextVideoInfoOverlay)
|| bool.Parse(enableNextVideoInfoOverlay);
displayPreferences.CustomPrefs.Remove("enableNextVideoInfoOverlay");
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.SkipBackwardLength = displayPreferences.CustomPrefs.TryGetValue("skipBackLength", out var skipBackLength)
&& !string.IsNullOrEmpty(skipBackLength)
2020-08-03 20:01:24 +02:00
? int.Parse(skipBackLength, CultureInfo.InvariantCulture)
: 10000;
displayPreferences.CustomPrefs.Remove("skipBackLength");
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.SkipForwardLength = displayPreferences.CustomPrefs.TryGetValue("skipForwardLength", out var skipForwardLength)
&& !string.IsNullOrEmpty(skipForwardLength)
2020-08-03 20:01:24 +02:00
? int.Parse(skipForwardLength, CultureInfo.InvariantCulture)
: 30000;
displayPreferences.CustomPrefs.Remove("skipForwardLength");
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.DashboardTheme = displayPreferences.CustomPrefs.TryGetValue("dashboardTheme", out var theme)
? theme
: string.Empty;
displayPreferences.CustomPrefs.Remove("dashboardTheme");
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.TvHome = displayPreferences.CustomPrefs.TryGetValue("tvhome", out var home)
? home
: string.Empty;
displayPreferences.CustomPrefs.Remove("tvhome");
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.HomeSections.Clear();
foreach (var key in displayPreferences.CustomPrefs.Keys.Where(key => key.StartsWith("homesection", StringComparison.OrdinalIgnoreCase)))
{
2022-10-13 18:10:55 +02:00
var order = int.Parse(key.AsSpan().Slice("homesection".Length), CultureInfo.InvariantCulture);
2020-08-03 20:01:24 +02:00
if (!Enum.TryParse<HomeSectionType>(displayPreferences.CustomPrefs[key], true, out var type))
{
type = order < 8 ? defaults[order] : HomeSectionType.None;
2020-08-03 20:01:24 +02:00
}
displayPreferences.CustomPrefs.Remove(key);
2020-08-03 20:01:24 +02:00
existingDisplayPreferences.HomeSections.Add(new HomeSection { Order = order, Type = type });
}
foreach (var key in displayPreferences.CustomPrefs.Keys.Where(key => key.StartsWith("landing-", StringComparison.OrdinalIgnoreCase)))
{
2020-12-10 15:41:00 +01:00
if (!Enum.TryParse<ViewType>(displayPreferences.CustomPrefs[key], true, out var type))
{
_logger.LogError("Invalid ViewType: {LandingScreenOption}", displayPreferences.CustomPrefs[key]);
displayPreferences.CustomPrefs.Remove(key);
}
2020-08-03 20:01:24 +02:00
}
2020-12-04 17:16:38 +01:00
var itemPrefs = _displayPreferencesManager.GetItemDisplayPreferences(existingDisplayPreferences.UserId, itemId, existingDisplayPreferences.Client);
itemPrefs.SortBy = displayPreferences.SortBy ?? "SortName";
2020-08-03 20:01:24 +02:00
itemPrefs.SortOrder = displayPreferences.SortOrder;
itemPrefs.RememberIndexing = displayPreferences.RememberIndexing;
itemPrefs.RememberSorting = displayPreferences.RememberSorting;
2020-12-04 17:16:38 +01:00
itemPrefs.ItemId = itemId;
2020-08-03 20:01:24 +02:00
// Set all remaining custom preferences.
2020-12-05 00:00:11 +01:00
_displayPreferencesManager.SetCustomItemDisplayPreferences(userId, itemId, existingDisplayPreferences.Client, displayPreferences.CustomPrefs);
2020-08-08 19:39:49 +02:00
_displayPreferencesManager.SaveChanges();
2020-04-21 15:55:57 +02:00
return NoContent();
}
2020-04-19 20:06:18 +02:00
}
}