| | 1 | | using System; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | | using System.Diagnostics.CodeAnalysis; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.Linq; |
| | 6 | | using Jellyfin.Api.Helpers; |
| | 7 | | using Jellyfin.Database.Implementations.Entities; |
| | 8 | | using Jellyfin.Database.Implementations.Enums; |
| | 9 | | using MediaBrowser.Common.Extensions; |
| | 10 | | using MediaBrowser.Controller; |
| | 11 | | using MediaBrowser.Model.Dto; |
| | 12 | | using Microsoft.AspNetCore.Authorization; |
| | 13 | | using Microsoft.AspNetCore.Http; |
| | 14 | | using Microsoft.AspNetCore.Mvc; |
| | 15 | | using Microsoft.Extensions.Logging; |
| | 16 | |
|
| | 17 | | namespace Jellyfin.Api.Controllers; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Display Preferences Controller. |
| | 21 | | /// </summary> |
| | 22 | | [Authorize] |
| | 23 | | public class DisplayPreferencesController : BaseJellyfinApiController |
| | 24 | | { |
| | 25 | | private readonly IDisplayPreferencesManager _displayPreferencesManager; |
| | 26 | | private readonly ILogger<DisplayPreferencesController> _logger; |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Initializes a new instance of the <see cref="DisplayPreferencesController"/> class. |
| | 30 | | /// </summary> |
| | 31 | | /// <param name="displayPreferencesManager">Instance of <see cref="IDisplayPreferencesManager"/> interface.</param> |
| | 32 | | /// <param name="logger">Instance of <see cref="ILogger{DisplayPreferencesController}"/> interface.</param> |
| 0 | 33 | | public DisplayPreferencesController(IDisplayPreferencesManager displayPreferencesManager, ILogger<DisplayPreferences |
| | 34 | | { |
| 0 | 35 | | _displayPreferencesManager = displayPreferencesManager; |
| 0 | 36 | | _logger = logger; |
| 0 | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Get Display Preferences. |
| | 41 | | /// </summary> |
| | 42 | | /// <param name="displayPreferencesId">Display preferences id.</param> |
| | 43 | | /// <param name="userId">User id.</param> |
| | 44 | | /// <param name="client">Client.</param> |
| | 45 | | /// <response code="200">Display preferences retrieved.</response> |
| | 46 | | /// <returns>An <see cref="OkResult"/> containing the display preferences on success, or a <see cref="NotFoundResult |
| | 47 | | [HttpGet("{displayPreferencesId}")] |
| | 48 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 49 | | [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "displayPreferencesId", Justi |
| | 50 | | public ActionResult<DisplayPreferencesDto> GetDisplayPreferences( |
| | 51 | | [FromRoute, Required] string displayPreferencesId, |
| | 52 | | [FromQuery] Guid? userId, |
| | 53 | | [FromQuery, Required] string client) |
| | 54 | | { |
| 0 | 55 | | userId = RequestHelpers.GetUserId(User, userId); |
| | 56 | |
|
| 0 | 57 | | if (!Guid.TryParse(displayPreferencesId, out var itemId)) |
| | 58 | | { |
| 0 | 59 | | itemId = displayPreferencesId.GetMD5(); |
| | 60 | | } |
| | 61 | |
|
| 0 | 62 | | var displayPreferences = _displayPreferencesManager.GetDisplayPreferences(userId.Value, itemId, client); |
| 0 | 63 | | var itemPreferences = _displayPreferencesManager.GetItemDisplayPreferences(displayPreferences.UserId, itemId, di |
| 0 | 64 | | itemPreferences.ItemId = itemId; |
| | 65 | |
|
| 0 | 66 | | var dto = new DisplayPreferencesDto |
| 0 | 67 | | { |
| 0 | 68 | | Client = displayPreferences.Client, |
| 0 | 69 | | Id = displayPreferences.ItemId.ToString(), |
| 0 | 70 | | SortBy = itemPreferences.SortBy, |
| 0 | 71 | | SortOrder = itemPreferences.SortOrder, |
| 0 | 72 | | IndexBy = displayPreferences.IndexBy?.ToString(), |
| 0 | 73 | | RememberIndexing = itemPreferences.RememberIndexing, |
| 0 | 74 | | RememberSorting = itemPreferences.RememberSorting, |
| 0 | 75 | | ScrollDirection = displayPreferences.ScrollDirection, |
| 0 | 76 | | ShowBackdrop = displayPreferences.ShowBackdrop, |
| 0 | 77 | | ShowSidebar = displayPreferences.ShowSidebar |
| 0 | 78 | | }; |
| | 79 | |
|
| 0 | 80 | | foreach (var homeSection in displayPreferences.HomeSections) |
| | 81 | | { |
| 0 | 82 | | dto.CustomPrefs["homesection" + homeSection.Order] = homeSection.Type.ToString().ToLowerInvariant(); |
| | 83 | | } |
| | 84 | |
|
| 0 | 85 | | dto.CustomPrefs["chromecastVersion"] = displayPreferences.ChromecastVersion.ToString().ToLowerInvariant(); |
| 0 | 86 | | dto.CustomPrefs["skipForwardLength"] = displayPreferences.SkipForwardLength.ToString(CultureInfo.InvariantCultur |
| 0 | 87 | | dto.CustomPrefs["skipBackLength"] = displayPreferences.SkipBackwardLength.ToString(CultureInfo.InvariantCulture) |
| 0 | 88 | | dto.CustomPrefs["enableNextVideoInfoOverlay"] = displayPreferences.EnableNextVideoInfoOverlay.ToString(CultureIn |
| 0 | 89 | | dto.CustomPrefs["tvhome"] = displayPreferences.TvHome; |
| 0 | 90 | | dto.CustomPrefs["dashboardTheme"] = displayPreferences.DashboardTheme; |
| | 91 | |
|
| | 92 | | // Load all custom display preferences |
| 0 | 93 | | var customDisplayPreferences = _displayPreferencesManager.ListCustomItemDisplayPreferences(displayPreferences.Us |
| 0 | 94 | | foreach (var (key, value) in customDisplayPreferences) |
| | 95 | | { |
| 0 | 96 | | dto.CustomPrefs.TryAdd(key, value); |
| | 97 | | } |
| | 98 | |
|
| | 99 | | // This will essentially be a noop if no changes have been made, but new prefs must be saved at least. |
| 0 | 100 | | _displayPreferencesManager.SaveChanges(); |
| | 101 | |
|
| 0 | 102 | | return dto; |
| | 103 | | } |
| | 104 | |
|
| | 105 | | /// <summary> |
| | 106 | | /// Update Display Preferences. |
| | 107 | | /// </summary> |
| | 108 | | /// <param name="displayPreferencesId">Display preferences id.</param> |
| | 109 | | /// <param name="userId">User Id.</param> |
| | 110 | | /// <param name="client">Client.</param> |
| | 111 | | /// <param name="displayPreferences">New Display Preferences object.</param> |
| | 112 | | /// <response code="204">Display preferences updated.</response> |
| | 113 | | /// <returns>An <see cref="NoContentResult"/> on success.</returns> |
| | 114 | | [HttpPost("{displayPreferencesId}")] |
| | 115 | | [ProducesResponseType(StatusCodes.Status204NoContent)] |
| | 116 | | [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "displayPreferencesId", Justi |
| | 117 | | public ActionResult UpdateDisplayPreferences( |
| | 118 | | [FromRoute, Required] string displayPreferencesId, |
| | 119 | | [FromQuery] Guid? userId, |
| | 120 | | [FromQuery, Required] string client, |
| | 121 | | [FromBody, Required] DisplayPreferencesDto displayPreferences) |
| | 122 | | { |
| 0 | 123 | | userId = RequestHelpers.GetUserId(User, userId); |
| | 124 | |
|
| 0 | 125 | | HomeSectionType[] defaults = |
| 0 | 126 | | { |
| 0 | 127 | | HomeSectionType.SmallLibraryTiles, |
| 0 | 128 | | HomeSectionType.Resume, |
| 0 | 129 | | HomeSectionType.ResumeAudio, |
| 0 | 130 | | HomeSectionType.ResumeBook, |
| 0 | 131 | | HomeSectionType.LiveTv, |
| 0 | 132 | | HomeSectionType.NextUp, |
| 0 | 133 | | HomeSectionType.LatestMedia, |
| 0 | 134 | | HomeSectionType.None, |
| 0 | 135 | | }; |
| | 136 | |
|
| 0 | 137 | | if (!Guid.TryParse(displayPreferencesId, out var itemId)) |
| | 138 | | { |
| 0 | 139 | | itemId = displayPreferencesId.GetMD5(); |
| | 140 | | } |
| | 141 | |
|
| 0 | 142 | | var existingDisplayPreferences = _displayPreferencesManager.GetDisplayPreferences(userId.Value, itemId, client); |
| 0 | 143 | | existingDisplayPreferences.IndexBy = Enum.TryParse<IndexingKind>(displayPreferences.IndexBy, true, out var index |
| 0 | 144 | | existingDisplayPreferences.ShowBackdrop = displayPreferences.ShowBackdrop; |
| 0 | 145 | | existingDisplayPreferences.ShowSidebar = displayPreferences.ShowSidebar; |
| | 146 | |
|
| 0 | 147 | | existingDisplayPreferences.ScrollDirection = displayPreferences.ScrollDirection; |
| 0 | 148 | | existingDisplayPreferences.ChromecastVersion = displayPreferences.CustomPrefs.TryGetValue("chromecastVersion", o |
| 0 | 149 | | && !string.IsNullOrEmpty(chromecastVersion) |
| 0 | 150 | | ? Enum.Parse<ChromecastVersion>(chromecastVersion, true) |
| 0 | 151 | | : ChromecastVersion.Stable; |
| 0 | 152 | | displayPreferences.CustomPrefs.Remove("chromecastVersion"); |
| | 153 | |
|
| 0 | 154 | | existingDisplayPreferences.EnableNextVideoInfoOverlay = !displayPreferences.CustomPrefs.TryGetValue("enableNextV |
| 0 | 155 | | || string.IsNullOrEmpty(enableNextVideoInfoOverlay) |
| 0 | 156 | | || bool.Parse(enableNextVideoInfoOverlay); |
| 0 | 157 | | displayPreferences.CustomPrefs.Remove("enableNextVideoInfoOverlay"); |
| | 158 | |
|
| 0 | 159 | | existingDisplayPreferences.SkipBackwardLength = displayPreferences.CustomPrefs.TryGetValue("skipBackLength", out |
| 0 | 160 | | && !string.IsNullOrEmpty(skipBackLength) |
| 0 | 161 | | ? int.Parse(skipBackLength, CultureInfo.InvariantCulture) |
| 0 | 162 | | : 10000; |
| 0 | 163 | | displayPreferences.CustomPrefs.Remove("skipBackLength"); |
| | 164 | |
|
| 0 | 165 | | existingDisplayPreferences.SkipForwardLength = displayPreferences.CustomPrefs.TryGetValue("skipForwardLength", o |
| 0 | 166 | | && !string.IsNullOrEmpty(skipForwardLength) |
| 0 | 167 | | ? int.Parse(skipForwardLength, CultureInfo.InvariantCulture) |
| 0 | 168 | | : 30000; |
| 0 | 169 | | displayPreferences.CustomPrefs.Remove("skipForwardLength"); |
| | 170 | |
|
| 0 | 171 | | existingDisplayPreferences.DashboardTheme = displayPreferences.CustomPrefs.TryGetValue("dashboardTheme", out var |
| 0 | 172 | | ? theme |
| 0 | 173 | | : string.Empty; |
| 0 | 174 | | displayPreferences.CustomPrefs.Remove("dashboardTheme"); |
| | 175 | |
|
| 0 | 176 | | existingDisplayPreferences.TvHome = displayPreferences.CustomPrefs.TryGetValue("tvhome", out var home) |
| 0 | 177 | | ? home |
| 0 | 178 | | : string.Empty; |
| 0 | 179 | | displayPreferences.CustomPrefs.Remove("tvhome"); |
| | 180 | |
|
| 0 | 181 | | existingDisplayPreferences.HomeSections.Clear(); |
| | 182 | |
|
| 0 | 183 | | foreach (var key in displayPreferences.CustomPrefs.Keys.Where(key => key.StartsWith("homesection", StringCompari |
| | 184 | | { |
| 0 | 185 | | var order = int.Parse(key.AsSpan().Slice("homesection".Length), CultureInfo.InvariantCulture); |
| 0 | 186 | | if (!Enum.TryParse<HomeSectionType>(displayPreferences.CustomPrefs[key], true, out var type)) |
| | 187 | | { |
| 0 | 188 | | type = order < 8 ? defaults[order] : HomeSectionType.None; |
| | 189 | | } |
| | 190 | |
|
| 0 | 191 | | displayPreferences.CustomPrefs.Remove(key); |
| 0 | 192 | | existingDisplayPreferences.HomeSections.Add(new HomeSection { Order = order, Type = type }); |
| | 193 | | } |
| | 194 | |
|
| 0 | 195 | | foreach (var key in displayPreferences.CustomPrefs.Keys.Where(key => key.StartsWith("landing-", StringComparison |
| | 196 | | { |
| 0 | 197 | | if (!Enum.TryParse<ViewType>(displayPreferences.CustomPrefs[key], true, out _)) |
| | 198 | | { |
| 0 | 199 | | _logger.LogError("Invalid ViewType: {LandingScreenOption}", displayPreferences.CustomPrefs[key]); |
| 0 | 200 | | displayPreferences.CustomPrefs.Remove(key); |
| | 201 | | } |
| | 202 | | } |
| | 203 | |
|
| 0 | 204 | | var itemPrefs = _displayPreferencesManager.GetItemDisplayPreferences(existingDisplayPreferences.UserId, itemId, |
| 0 | 205 | | itemPrefs.SortBy = displayPreferences.SortBy ?? "SortName"; |
| 0 | 206 | | itemPrefs.SortOrder = displayPreferences.SortOrder; |
| 0 | 207 | | itemPrefs.RememberIndexing = displayPreferences.RememberIndexing; |
| 0 | 208 | | itemPrefs.RememberSorting = displayPreferences.RememberSorting; |
| 0 | 209 | | itemPrefs.ItemId = itemId; |
| | 210 | |
|
| | 211 | | // Set all remaining custom preferences. |
| 0 | 212 | | _displayPreferencesManager.SetCustomItemDisplayPreferences(userId.Value, itemId, existingDisplayPreferences.Clie |
| 0 | 213 | | _displayPreferencesManager.SaveChanges(); |
| | 214 | |
|
| 0 | 215 | | return NoContent(); |
| | 216 | | } |
| | 217 | | } |