| | 1 | | #pragma warning disable CS1591 |
| | 2 | | #pragma warning disable CA5394 |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Globalization; |
| | 7 | | using System.IO; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Net; |
| | 10 | | using System.Net.Http; |
| | 11 | | using System.Threading; |
| | 12 | | using System.Threading.Tasks; |
| | 13 | | using BitFaster.Caching.Lru; |
| | 14 | | using Emby.Naming.Common; |
| | 15 | | using Emby.Naming.TV; |
| | 16 | | using Emby.Server.Implementations.Library.Resolvers; |
| | 17 | | using Emby.Server.Implementations.Library.Validators; |
| | 18 | | using Emby.Server.Implementations.Playlists; |
| | 19 | | using Emby.Server.Implementations.ScheduledTasks.Tasks; |
| | 20 | | using Emby.Server.Implementations.Sorting; |
| | 21 | | using Jellyfin.Data; |
| | 22 | | using Jellyfin.Data.Enums; |
| | 23 | | using Jellyfin.Database.Implementations.Entities; |
| | 24 | | using Jellyfin.Database.Implementations.Enums; |
| | 25 | | using Jellyfin.Extensions; |
| | 26 | | using MediaBrowser.Common.Extensions; |
| | 27 | | using MediaBrowser.Controller; |
| | 28 | | using MediaBrowser.Controller.Configuration; |
| | 29 | | using MediaBrowser.Controller.Drawing; |
| | 30 | | using MediaBrowser.Controller.Dto; |
| | 31 | | using MediaBrowser.Controller.Entities; |
| | 32 | | using MediaBrowser.Controller.Entities.Audio; |
| | 33 | | using MediaBrowser.Controller.IO; |
| | 34 | | using MediaBrowser.Controller.Library; |
| | 35 | | using MediaBrowser.Controller.LiveTv; |
| | 36 | | using MediaBrowser.Controller.MediaEncoding; |
| | 37 | | using MediaBrowser.Controller.Persistence; |
| | 38 | | using MediaBrowser.Controller.Providers; |
| | 39 | | using MediaBrowser.Controller.Resolvers; |
| | 40 | | using MediaBrowser.Controller.Sorting; |
| | 41 | | using MediaBrowser.Model.Configuration; |
| | 42 | | using MediaBrowser.Model.Dlna; |
| | 43 | | using MediaBrowser.Model.Drawing; |
| | 44 | | using MediaBrowser.Model.Dto; |
| | 45 | | using MediaBrowser.Model.Entities; |
| | 46 | | using MediaBrowser.Model.IO; |
| | 47 | | using MediaBrowser.Model.Library; |
| | 48 | | using MediaBrowser.Model.Querying; |
| | 49 | | using MediaBrowser.Model.Tasks; |
| | 50 | | using Microsoft.Extensions.Logging; |
| | 51 | | using Episode = MediaBrowser.Controller.Entities.TV.Episode; |
| | 52 | | using EpisodeInfo = Emby.Naming.TV.EpisodeInfo; |
| | 53 | | using Genre = MediaBrowser.Controller.Entities.Genre; |
| | 54 | | using Person = MediaBrowser.Controller.Entities.Person; |
| | 55 | | using VideoResolver = Emby.Naming.Video.VideoResolver; |
| | 56 | |
|
| | 57 | | namespace Emby.Server.Implementations.Library |
| | 58 | | { |
| | 59 | | /// <summary> |
| | 60 | | /// Class LibraryManager. |
| | 61 | | /// </summary> |
| | 62 | | public class LibraryManager : ILibraryManager |
| | 63 | | { |
| | 64 | | private const string ShortcutFileExtension = ".mblink"; |
| | 65 | |
|
| | 66 | | private readonly ILogger<LibraryManager> _logger; |
| | 67 | | private readonly ITaskManager _taskManager; |
| | 68 | | private readonly IUserManager _userManager; |
| | 69 | | private readonly IUserDataManager _userDataRepository; |
| | 70 | | private readonly IServerConfigurationManager _configurationManager; |
| | 71 | | private readonly Lazy<ILibraryMonitor> _libraryMonitorFactory; |
| | 72 | | private readonly Lazy<IProviderManager> _providerManagerFactory; |
| | 73 | | private readonly Lazy<IUserViewManager> _userviewManagerFactory; |
| | 74 | | private readonly IServerApplicationHost _appHost; |
| | 75 | | private readonly IMediaEncoder _mediaEncoder; |
| | 76 | | private readonly IFileSystem _fileSystem; |
| | 77 | | private readonly IItemRepository _itemRepository; |
| | 78 | | private readonly IImageProcessor _imageProcessor; |
| | 79 | | private readonly NamingOptions _namingOptions; |
| | 80 | | private readonly IPeopleRepository _peopleRepository; |
| | 81 | | private readonly ExtraResolver _extraResolver; |
| | 82 | | private readonly IPathManager _pathManager; |
| | 83 | | private readonly FastConcurrentLru<Guid, BaseItem> _cache; |
| | 84 | |
|
| | 85 | | /// <summary> |
| | 86 | | /// The _root folder sync lock. |
| | 87 | | /// </summary> |
| 28 | 88 | | private readonly Lock _rootFolderSyncLock = new(); |
| 28 | 89 | | private readonly Lock _userRootFolderSyncLock = new(); |
| | 90 | |
|
| 28 | 91 | | private readonly TimeSpan _viewRefreshInterval = TimeSpan.FromHours(24); |
| | 92 | |
|
| | 93 | | /// <summary> |
| | 94 | | /// The _root folder. |
| | 95 | | /// </summary> |
| | 96 | | private volatile AggregateFolder? _rootFolder; |
| | 97 | | private volatile UserRootFolder? _userRootFolder; |
| | 98 | |
|
| | 99 | | private bool _wizardCompleted; |
| | 100 | |
|
| | 101 | | /// <summary> |
| | 102 | | /// Initializes a new instance of the <see cref="LibraryManager" /> class. |
| | 103 | | /// </summary> |
| | 104 | | /// <param name="appHost">The application host.</param> |
| | 105 | | /// <param name="loggerFactory">The logger factory.</param> |
| | 106 | | /// <param name="taskManager">The task manager.</param> |
| | 107 | | /// <param name="userManager">The user manager.</param> |
| | 108 | | /// <param name="configurationManager">The configuration manager.</param> |
| | 109 | | /// <param name="userDataRepository">The user data repository.</param> |
| | 110 | | /// <param name="libraryMonitorFactory">The library monitor.</param> |
| | 111 | | /// <param name="fileSystem">The file system.</param> |
| | 112 | | /// <param name="providerManagerFactory">The provider manager.</param> |
| | 113 | | /// <param name="userviewManagerFactory">The userview manager.</param> |
| | 114 | | /// <param name="mediaEncoder">The media encoder.</param> |
| | 115 | | /// <param name="itemRepository">The item repository.</param> |
| | 116 | | /// <param name="imageProcessor">The image processor.</param> |
| | 117 | | /// <param name="namingOptions">The naming options.</param> |
| | 118 | | /// <param name="directoryService">The directory service.</param> |
| | 119 | | /// <param name="peopleRepository">The people repository.</param> |
| | 120 | | /// <param name="pathManager">The path manager.</param> |
| | 121 | | public LibraryManager( |
| | 122 | | IServerApplicationHost appHost, |
| | 123 | | ILoggerFactory loggerFactory, |
| | 124 | | ITaskManager taskManager, |
| | 125 | | IUserManager userManager, |
| | 126 | | IServerConfigurationManager configurationManager, |
| | 127 | | IUserDataManager userDataRepository, |
| | 128 | | Lazy<ILibraryMonitor> libraryMonitorFactory, |
| | 129 | | IFileSystem fileSystem, |
| | 130 | | Lazy<IProviderManager> providerManagerFactory, |
| | 131 | | Lazy<IUserViewManager> userviewManagerFactory, |
| | 132 | | IMediaEncoder mediaEncoder, |
| | 133 | | IItemRepository itemRepository, |
| | 134 | | IImageProcessor imageProcessor, |
| | 135 | | NamingOptions namingOptions, |
| | 136 | | IDirectoryService directoryService, |
| | 137 | | IPeopleRepository peopleRepository, |
| | 138 | | IPathManager pathManager) |
| | 139 | | { |
| 28 | 140 | | _appHost = appHost; |
| 28 | 141 | | _logger = loggerFactory.CreateLogger<LibraryManager>(); |
| 28 | 142 | | _taskManager = taskManager; |
| 28 | 143 | | _userManager = userManager; |
| 28 | 144 | | _configurationManager = configurationManager; |
| 28 | 145 | | _userDataRepository = userDataRepository; |
| 28 | 146 | | _libraryMonitorFactory = libraryMonitorFactory; |
| 28 | 147 | | _fileSystem = fileSystem; |
| 28 | 148 | | _providerManagerFactory = providerManagerFactory; |
| 28 | 149 | | _userviewManagerFactory = userviewManagerFactory; |
| 28 | 150 | | _mediaEncoder = mediaEncoder; |
| 28 | 151 | | _itemRepository = itemRepository; |
| 28 | 152 | | _imageProcessor = imageProcessor; |
| | 153 | |
|
| 28 | 154 | | _cache = new FastConcurrentLru<Guid, BaseItem>(_configurationManager.Configuration.CacheSize); |
| | 155 | |
|
| 28 | 156 | | _namingOptions = namingOptions; |
| 28 | 157 | | _peopleRepository = peopleRepository; |
| 28 | 158 | | _pathManager = pathManager; |
| 28 | 159 | | _extraResolver = new ExtraResolver(loggerFactory.CreateLogger<ExtraResolver>(), namingOptions, directoryServ |
| | 160 | |
|
| 28 | 161 | | _configurationManager.ConfigurationUpdated += ConfigurationUpdated; |
| | 162 | |
|
| 28 | 163 | | RecordConfigurationValues(_configurationManager.Configuration); |
| 28 | 164 | | } |
| | 165 | |
|
| | 166 | | /// <summary> |
| | 167 | | /// Occurs when [item added]. |
| | 168 | | /// </summary> |
| | 169 | | public event EventHandler<ItemChangeEventArgs>? ItemAdded; |
| | 170 | |
|
| | 171 | | /// <summary> |
| | 172 | | /// Occurs when [item updated]. |
| | 173 | | /// </summary> |
| | 174 | | public event EventHandler<ItemChangeEventArgs>? ItemUpdated; |
| | 175 | |
|
| | 176 | | /// <summary> |
| | 177 | | /// Occurs when [item removed]. |
| | 178 | | /// </summary> |
| | 179 | | public event EventHandler<ItemChangeEventArgs>? ItemRemoved; |
| | 180 | |
|
| | 181 | | /// <summary> |
| | 182 | | /// Gets the root folder. |
| | 183 | | /// </summary> |
| | 184 | | /// <value>The root folder.</value> |
| | 185 | | public AggregateFolder RootFolder |
| | 186 | | { |
| | 187 | | get |
| | 188 | | { |
| 151 | 189 | | if (_rootFolder is null) |
| 21 | 190 | | { |
| | 191 | | lock (_rootFolderSyncLock) |
| | 192 | | { |
| 21 | 193 | | _rootFolder ??= CreateRootFolder(); |
| 21 | 194 | | } |
| | 195 | | } |
| | 196 | |
|
| 151 | 197 | | return _rootFolder; |
| | 198 | | } |
| | 199 | | } |
| | 200 | |
|
| 41 | 201 | | private ILibraryMonitor LibraryMonitor => _libraryMonitorFactory.Value; |
| | 202 | |
|
| 79 | 203 | | private IProviderManager ProviderManager => _providerManagerFactory.Value; |
| | 204 | |
|
| 1 | 205 | | private IUserViewManager UserViewManager => _userviewManagerFactory.Value; |
| | 206 | |
|
| | 207 | | /// <summary> |
| | 208 | | /// Gets or sets the postscan tasks. |
| | 209 | | /// </summary> |
| | 210 | | /// <value>The postscan tasks.</value> |
| | 211 | | private ILibraryPostScanTask[] PostscanTasks { get; set; } = []; |
| | 212 | |
|
| | 213 | | /// <summary> |
| | 214 | | /// Gets or sets the intro providers. |
| | 215 | | /// </summary> |
| | 216 | | /// <value>The intro providers.</value> |
| | 217 | | private IIntroProvider[] IntroProviders { get; set; } = []; |
| | 218 | |
|
| | 219 | | /// <summary> |
| | 220 | | /// Gets or sets the list of entity resolution ignore rules. |
| | 221 | | /// </summary> |
| | 222 | | /// <value>The entity resolution ignore rules.</value> |
| | 223 | | private IResolverIgnoreRule[] EntityResolutionIgnoreRules { get; set; } = []; |
| | 224 | |
|
| | 225 | | /// <summary> |
| | 226 | | /// Gets or sets the list of currently registered entity resolvers. |
| | 227 | | /// </summary> |
| | 228 | | /// <value>The entity resolvers enumerable.</value> |
| | 229 | | private IItemResolver[] EntityResolvers { get; set; } = []; |
| | 230 | |
|
| | 231 | | private IMultiItemResolver[] MultiItemResolvers { get; set; } = []; |
| | 232 | |
|
| | 233 | | /// <summary> |
| | 234 | | /// Gets or sets the comparers. |
| | 235 | | /// </summary> |
| | 236 | | /// <value>The comparers.</value> |
| | 237 | | private IBaseItemComparer[] Comparers { get; set; } = []; |
| | 238 | |
|
| | 239 | | public bool IsScanRunning { get; private set; } |
| | 240 | |
|
| | 241 | | /// <summary> |
| | 242 | | /// Adds the parts. |
| | 243 | | /// </summary> |
| | 244 | | /// <param name="rules">The rules.</param> |
| | 245 | | /// <param name="resolvers">The resolvers.</param> |
| | 246 | | /// <param name="introProviders">The intro providers.</param> |
| | 247 | | /// <param name="itemComparers">The item comparers.</param> |
| | 248 | | /// <param name="postscanTasks">The post scan tasks.</param> |
| | 249 | | public void AddParts( |
| | 250 | | IEnumerable<IResolverIgnoreRule> rules, |
| | 251 | | IEnumerable<IItemResolver> resolvers, |
| | 252 | | IEnumerable<IIntroProvider> introProviders, |
| | 253 | | IEnumerable<IBaseItemComparer> itemComparers, |
| | 254 | | IEnumerable<ILibraryPostScanTask> postscanTasks) |
| | 255 | | { |
| 28 | 256 | | EntityResolutionIgnoreRules = rules.ToArray(); |
| 28 | 257 | | EntityResolvers = resolvers.OrderBy(i => i.Priority).ToArray(); |
| 28 | 258 | | MultiItemResolvers = EntityResolvers.OfType<IMultiItemResolver>().ToArray(); |
| 28 | 259 | | IntroProviders = introProviders.ToArray(); |
| 28 | 260 | | Comparers = itemComparers.ToArray(); |
| 28 | 261 | | PostscanTasks = postscanTasks.ToArray(); |
| 28 | 262 | | } |
| | 263 | |
|
| | 264 | | /// <summary> |
| | 265 | | /// Records the configuration values. |
| | 266 | | /// </summary> |
| | 267 | | /// <param name="configuration">The configuration.</param> |
| | 268 | | private void RecordConfigurationValues(ServerConfiguration configuration) |
| | 269 | | { |
| 66 | 270 | | _wizardCompleted = configuration.IsStartupWizardCompleted; |
| 66 | 271 | | } |
| | 272 | |
|
| | 273 | | /// <summary> |
| | 274 | | /// Configurations the updated. |
| | 275 | | /// </summary> |
| | 276 | | /// <param name="sender">The sender.</param> |
| | 277 | | /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param> |
| | 278 | | private void ConfigurationUpdated(object? sender, EventArgs e) |
| | 279 | | { |
| 38 | 280 | | var config = _configurationManager.Configuration; |
| | 281 | |
|
| 38 | 282 | | var wizardChanged = config.IsStartupWizardCompleted != _wizardCompleted; |
| | 283 | |
|
| 38 | 284 | | RecordConfigurationValues(config); |
| | 285 | |
|
| 38 | 286 | | if (wizardChanged) |
| | 287 | | { |
| 16 | 288 | | _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>(); |
| | 289 | | } |
| 38 | 290 | | } |
| | 291 | |
|
| | 292 | | public void RegisterItem(BaseItem item) |
| | 293 | | { |
| 146 | 294 | | ArgumentNullException.ThrowIfNull(item); |
| | 295 | |
|
| 146 | 296 | | if (item is IItemByName) |
| | 297 | | { |
| 0 | 298 | | if (item is not MusicArtist) |
| | 299 | | { |
| 0 | 300 | | return; |
| | 301 | | } |
| | 302 | | } |
| 146 | 303 | | else if (!item.IsFolder) |
| | 304 | | { |
| 0 | 305 | | if (item is not Video && item is not LiveTvChannel) |
| | 306 | | { |
| 0 | 307 | | return; |
| | 308 | | } |
| | 309 | | } |
| | 310 | |
|
| 146 | 311 | | _cache.AddOrUpdate(item.Id, item); |
| 146 | 312 | | } |
| | 313 | |
|
| | 314 | | public void DeleteItem(BaseItem item, DeleteOptions options) |
| | 315 | | { |
| 0 | 316 | | DeleteItem(item, options, false); |
| 0 | 317 | | } |
| | 318 | |
|
| | 319 | | public void DeleteItem(BaseItem item, DeleteOptions options, bool notifyParentItem) |
| | 320 | | { |
| 0 | 321 | | ArgumentNullException.ThrowIfNull(item); |
| | 322 | |
|
| 0 | 323 | | var parent = item.GetOwner() ?? item.GetParent(); |
| | 324 | |
|
| 0 | 325 | | DeleteItem(item, options, parent, notifyParentItem); |
| 0 | 326 | | } |
| | 327 | |
|
| | 328 | | public void DeleteItem(BaseItem item, DeleteOptions options, BaseItem parent, bool notifyParentItem) |
| | 329 | | { |
| 2 | 330 | | ArgumentNullException.ThrowIfNull(item); |
| | 331 | |
|
| 2 | 332 | | if (item.SourceType == SourceType.Channel) |
| | 333 | | { |
| 0 | 334 | | if (options.DeleteFromExternalProvider) |
| | 335 | | { |
| | 336 | | try |
| | 337 | | { |
| 0 | 338 | | BaseItem.ChannelManager.DeleteItem(item).GetAwaiter().GetResult(); |
| 0 | 339 | | } |
| 0 | 340 | | catch (ArgumentException) |
| | 341 | | { |
| | 342 | | // channel no longer installed |
| 0 | 343 | | } |
| | 344 | | } |
| | 345 | |
|
| 0 | 346 | | options.DeleteFileLocation = false; |
| | 347 | | } |
| | 348 | |
|
| 2 | 349 | | if (item is LiveTvProgram) |
| | 350 | | { |
| 0 | 351 | | _logger.LogDebug( |
| 0 | 352 | | "Removing item, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}", |
| 0 | 353 | | item.GetType().Name, |
| 0 | 354 | | item.Name ?? "Unknown name", |
| 0 | 355 | | item.Path ?? string.Empty, |
| 0 | 356 | | item.Id); |
| | 357 | | } |
| | 358 | | else |
| | 359 | | { |
| 2 | 360 | | _logger.LogInformation( |
| 2 | 361 | | "Removing item, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}", |
| 2 | 362 | | item.GetType().Name, |
| 2 | 363 | | item.Name ?? "Unknown name", |
| 2 | 364 | | item.Path ?? string.Empty, |
| 2 | 365 | | item.Id); |
| | 366 | | } |
| | 367 | |
|
| 2 | 368 | | var children = item.IsFolder |
| 2 | 369 | | ? ((Folder)item).GetRecursiveChildren(false) |
| 2 | 370 | | : []; |
| | 371 | |
|
| 8 | 372 | | foreach (var metadataPath in GetMetadataPaths(item, children)) |
| | 373 | | { |
| 2 | 374 | | if (!Directory.Exists(metadataPath)) |
| | 375 | | { |
| | 376 | | continue; |
| | 377 | | } |
| | 378 | |
|
| 0 | 379 | | _logger.LogDebug( |
| 0 | 380 | | "Deleting metadata path, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}", |
| 0 | 381 | | item.GetType().Name, |
| 0 | 382 | | item.Name ?? "Unknown name", |
| 0 | 383 | | metadataPath, |
| 0 | 384 | | item.Id); |
| | 385 | |
|
| | 386 | | try |
| | 387 | | { |
| 0 | 388 | | Directory.Delete(metadataPath, true); |
| 0 | 389 | | } |
| 0 | 390 | | catch (Exception ex) |
| | 391 | | { |
| 0 | 392 | | _logger.LogError(ex, "Error deleting {MetadataPath}", metadataPath); |
| 0 | 393 | | } |
| | 394 | | } |
| | 395 | |
|
| 2 | 396 | | if (options.DeleteFileLocation && item.IsFileProtocol) |
| | 397 | | { |
| | 398 | | // Assume only the first is required |
| | 399 | | // Add this flag to GetDeletePaths if required in the future |
| 0 | 400 | | var isRequiredForDelete = true; |
| | 401 | |
|
| 0 | 402 | | foreach (var fileSystemInfo in item.GetDeletePaths()) |
| | 403 | | { |
| 0 | 404 | | if (Directory.Exists(fileSystemInfo.FullName) || File.Exists(fileSystemInfo.FullName)) |
| | 405 | | { |
| | 406 | | try |
| | 407 | | { |
| 0 | 408 | | _logger.LogInformation( |
| 0 | 409 | | "Deleting item path, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}", |
| 0 | 410 | | item.GetType().Name, |
| 0 | 411 | | item.Name ?? "Unknown name", |
| 0 | 412 | | fileSystemInfo.FullName, |
| 0 | 413 | | item.Id); |
| | 414 | |
|
| 0 | 415 | | if (fileSystemInfo.IsDirectory) |
| | 416 | | { |
| 0 | 417 | | Directory.Delete(fileSystemInfo.FullName, true); |
| | 418 | | } |
| | 419 | | else |
| | 420 | | { |
| 0 | 421 | | File.Delete(fileSystemInfo.FullName); |
| | 422 | | } |
| 0 | 423 | | } |
| 0 | 424 | | catch (DirectoryNotFoundException) |
| | 425 | | { |
| 0 | 426 | | _logger.LogInformation( |
| 0 | 427 | | "Directory not found, only removing from database, Type: {Type}, Name: {Name}, Path: {Pa |
| 0 | 428 | | item.GetType().Name, |
| 0 | 429 | | item.Name ?? "Unknown name", |
| 0 | 430 | | fileSystemInfo.FullName, |
| 0 | 431 | | item.Id); |
| 0 | 432 | | } |
| 0 | 433 | | catch (FileNotFoundException) |
| | 434 | | { |
| 0 | 435 | | _logger.LogInformation( |
| 0 | 436 | | "File not found, only removing from database, Type: {Type}, Name: {Name}, Path: {Path}, |
| 0 | 437 | | item.GetType().Name, |
| 0 | 438 | | item.Name ?? "Unknown name", |
| 0 | 439 | | fileSystemInfo.FullName, |
| 0 | 440 | | item.Id); |
| 0 | 441 | | } |
| 0 | 442 | | catch (IOException) |
| | 443 | | { |
| 0 | 444 | | if (isRequiredForDelete) |
| | 445 | | { |
| 0 | 446 | | throw; |
| | 447 | | } |
| 0 | 448 | | } |
| 0 | 449 | | catch (UnauthorizedAccessException) |
| | 450 | | { |
| 0 | 451 | | if (isRequiredForDelete) |
| | 452 | | { |
| 0 | 453 | | throw; |
| | 454 | | } |
| 0 | 455 | | } |
| | 456 | | } |
| | 457 | |
|
| 0 | 458 | | isRequiredForDelete = false; |
| | 459 | | } |
| | 460 | | } |
| | 461 | |
|
| 2 | 462 | | item.SetParent(null); |
| | 463 | |
|
| 2 | 464 | | _itemRepository.DeleteItem(item.Id); |
| 2 | 465 | | _cache.TryRemove(item.Id, out _); |
| 4 | 466 | | foreach (var child in children) |
| | 467 | | { |
| 0 | 468 | | _itemRepository.DeleteItem(child.Id); |
| 0 | 469 | | _cache.TryRemove(child.Id, out _); |
| | 470 | | } |
| | 471 | |
|
| 2 | 472 | | ReportItemRemoved(item, parent); |
| 2 | 473 | | } |
| | 474 | |
|
| | 475 | | private List<string> GetMetadataPaths(BaseItem item, IEnumerable<BaseItem> children) |
| | 476 | | { |
| 2 | 477 | | var list = GetInternalMetadataPaths(item); |
| 4 | 478 | | foreach (var child in children) |
| | 479 | | { |
| 0 | 480 | | list.AddRange(GetInternalMetadataPaths(child)); |
| | 481 | | } |
| | 482 | |
|
| 2 | 483 | | return list; |
| | 484 | | } |
| | 485 | |
|
| | 486 | | private List<string> GetInternalMetadataPaths(BaseItem item) |
| | 487 | | { |
| 2 | 488 | | var list = new List<string> |
| 2 | 489 | | { |
| 2 | 490 | | item.GetInternalMetadataPath() |
| 2 | 491 | | }; |
| | 492 | |
|
| 2 | 493 | | if (item is Video video) |
| | 494 | | { |
| 0 | 495 | | list.Add(_pathManager.GetTrickplayDirectory(video)); |
| | 496 | | } |
| | 497 | |
|
| 2 | 498 | | return list; |
| | 499 | | } |
| | 500 | |
|
| | 501 | | /// <summary> |
| | 502 | | /// Resolves the item. |
| | 503 | | /// </summary> |
| | 504 | | /// <param name="args">The args.</param> |
| | 505 | | /// <param name="resolvers">The resolvers.</param> |
| | 506 | | /// <returns>BaseItem.</returns> |
| | 507 | | private BaseItem? ResolveItem(ItemResolveArgs args, IItemResolver[]? resolvers) |
| | 508 | | { |
| 79 | 509 | | var item = (resolvers ?? EntityResolvers).Select(r => Resolve(args, r)) |
| 79 | 510 | | .FirstOrDefault(i => i is not null); |
| | 511 | |
|
| 79 | 512 | | if (item is not null) |
| | 513 | | { |
| 67 | 514 | | ResolverHelper.SetInitialItemValues(item, args, _fileSystem, this); |
| | 515 | | } |
| | 516 | |
|
| 79 | 517 | | return item; |
| | 518 | | } |
| | 519 | |
|
| | 520 | | private BaseItem? Resolve(ItemResolveArgs args, IItemResolver resolver) |
| | 521 | | { |
| | 522 | | try |
| | 523 | | { |
| 335 | 524 | | return resolver.ResolvePath(args); |
| | 525 | | } |
| 0 | 526 | | catch (Exception ex) |
| | 527 | | { |
| 0 | 528 | | _logger.LogError(ex, "Error in {Resolver} resolving {Path}", resolver.GetType().Name, args.Path); |
| 0 | 529 | | return null; |
| | 530 | | } |
| 335 | 531 | | } |
| | 532 | |
|
| | 533 | | public Guid GetNewItemId(string key, Type type) |
| | 534 | | { |
| 130 | 535 | | return GetNewItemIdInternal(key, type, false); |
| | 536 | | } |
| | 537 | |
|
| | 538 | | private Guid GetNewItemIdInternal(string key, Type type, bool forceCaseInsensitive) |
| | 539 | | { |
| 131 | 540 | | ArgumentException.ThrowIfNullOrEmpty(key); |
| 131 | 541 | | ArgumentNullException.ThrowIfNull(type); |
| | 542 | |
|
| 131 | 543 | | string programDataPath = _configurationManager.ApplicationPaths.ProgramDataPath; |
| 131 | 544 | | if (key.StartsWith(programDataPath, StringComparison.Ordinal)) |
| | 545 | | { |
| | 546 | | // Try to normalize paths located underneath program-data in an attempt to make them more portable |
| 114 | 547 | | key = key.Substring(programDataPath.Length) |
| 114 | 548 | | .TrimStart('/', '\\') |
| 114 | 549 | | .Replace('/', '\\'); |
| | 550 | | } |
| | 551 | |
|
| 131 | 552 | | if (forceCaseInsensitive || !_configurationManager.Configuration.EnableCaseSensitiveItemIds) |
| | 553 | | { |
| 1 | 554 | | key = key.ToLowerInvariant(); |
| | 555 | | } |
| | 556 | |
|
| 131 | 557 | | key = type.FullName + key; |
| | 558 | |
|
| 131 | 559 | | return key.GetMD5(); |
| | 560 | | } |
| | 561 | |
|
| | 562 | | public BaseItem? ResolvePath(FileSystemMetadata fileInfo, Folder? parent = null, IDirectoryService? directorySer |
| 42 | 563 | | => ResolvePath(fileInfo, directoryService ?? new DirectoryService(_fileSystem), null, parent); |
| | 564 | |
|
| | 565 | | private BaseItem? ResolvePath( |
| | 566 | | FileSystemMetadata fileInfo, |
| | 567 | | IDirectoryService directoryService, |
| | 568 | | IItemResolver[]? resolvers, |
| | 569 | | Folder? parent = null, |
| | 570 | | CollectionType? collectionType = null, |
| | 571 | | LibraryOptions? libraryOptions = null) |
| | 572 | | { |
| 79 | 573 | | ArgumentNullException.ThrowIfNull(fileInfo); |
| | 574 | |
|
| 79 | 575 | | var fullPath = fileInfo.FullName; |
| | 576 | |
|
| 79 | 577 | | if (collectionType is null && parent is not null) |
| | 578 | | { |
| 20 | 579 | | collectionType = GetContentTypeOverride(fullPath, true); |
| | 580 | | } |
| | 581 | |
|
| 79 | 582 | | var args = new ItemResolveArgs(_configurationManager.ApplicationPaths, this) |
| 79 | 583 | | { |
| 79 | 584 | | Parent = parent, |
| 79 | 585 | | FileInfo = fileInfo, |
| 79 | 586 | | CollectionType = collectionType, |
| 79 | 587 | | LibraryOptions = libraryOptions |
| 79 | 588 | | }; |
| | 589 | |
|
| | 590 | | // Return null if ignore rules deem that we should do so |
| 79 | 591 | | if (IgnoreFile(args.FileInfo, args.Parent)) |
| | 592 | | { |
| 0 | 593 | | return null; |
| | 594 | | } |
| | 595 | |
|
| | 596 | | // Gather child folder and files |
| 79 | 597 | | if (args.IsDirectory) |
| | 598 | | { |
| 50 | 599 | | var isPhysicalRoot = args.IsPhysicalRoot; |
| | 600 | |
|
| | 601 | | // When resolving the root, we need it's grandchildren (children of user views) |
| 50 | 602 | | var flattenFolderDepth = isPhysicalRoot ? 2 : 0; |
| | 603 | |
|
| | 604 | | FileSystemMetadata[] files; |
| 50 | 605 | | var isVf = args.IsVf; |
| | 606 | |
|
| | 607 | | try |
| | 608 | | { |
| 50 | 609 | | files = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, _fileSystem, _appHost, _l |
| 50 | 610 | | } |
| 0 | 611 | | catch (Exception ex) |
| | 612 | | { |
| 0 | 613 | | if (parent is not null && parent.IsPhysicalRoot) |
| | 614 | | { |
| 0 | 615 | | _logger.LogError(ex, "Error in GetFilteredFileSystemEntries isPhysicalRoot: {0} IsVf: {1}", isPh |
| | 616 | |
|
| 0 | 617 | | files = []; |
| | 618 | | } |
| | 619 | | else |
| | 620 | | { |
| 0 | 621 | | throw; |
| | 622 | | } |
| 0 | 623 | | } |
| | 624 | |
|
| | 625 | | // Need to remove subpaths that may have been resolved from shortcuts |
| | 626 | | // Example: if \\server\movies exists, then strip out \\server\movies\action |
| 50 | 627 | | if (isPhysicalRoot) |
| | 628 | | { |
| 21 | 629 | | files = NormalizeRootPathList(files).ToArray(); |
| | 630 | | } |
| | 631 | |
|
| 50 | 632 | | args.FileSystemChildren = files; |
| | 633 | | } |
| | 634 | |
|
| | 635 | | // Check to see if we should resolve based on our contents |
| 79 | 636 | | if (args.IsDirectory && !ShouldResolvePathContents(args)) |
| | 637 | | { |
| 0 | 638 | | return null; |
| | 639 | | } |
| | 640 | |
|
| 79 | 641 | | return ResolveItem(args, resolvers); |
| | 642 | | } |
| | 643 | |
|
| | 644 | | public bool IgnoreFile(FileSystemMetadata file, BaseItem? parent) |
| 100 | 645 | | => EntityResolutionIgnoreRules.Any(r => r.ShouldIgnore(file, parent)); |
| | 646 | |
|
| | 647 | | public List<FileSystemMetadata> NormalizeRootPathList(IEnumerable<FileSystemMetadata> paths) |
| | 648 | | { |
| 68 | 649 | | var originalList = paths.ToList(); |
| | 650 | |
|
| 68 | 651 | | var list = originalList.Where(i => i.IsDirectory) |
| 68 | 652 | | .Select(i => Path.TrimEndingDirectorySeparator(i.FullName)) |
| 68 | 653 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 68 | 654 | | .ToList(); |
| | 655 | |
|
| 68 | 656 | | var dupes = list.Where(subPath => !subPath.EndsWith(":\\", StringComparison.OrdinalIgnoreCase) && list.Any(i |
| 68 | 657 | | .ToList(); |
| | 658 | |
|
| 136 | 659 | | foreach (var dupe in dupes) |
| | 660 | | { |
| 0 | 661 | | _logger.LogInformation("Found duplicate path: {0}", dupe); |
| | 662 | | } |
| | 663 | |
|
| 68 | 664 | | var newList = list.Except(dupes, StringComparer.OrdinalIgnoreCase).Select(_fileSystem.GetDirectoryInfo).ToLi |
| 68 | 665 | | newList.AddRange(originalList.Where(i => !i.IsDirectory)); |
| 68 | 666 | | return newList; |
| | 667 | | } |
| | 668 | |
|
| | 669 | | /// <summary> |
| | 670 | | /// Determines whether a path should be ignored based on its contents - called after the contents have been read |
| | 671 | | /// </summary> |
| | 672 | | /// <param name="args">The args.</param> |
| | 673 | | /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> |
| | 674 | | private static bool ShouldResolvePathContents(ItemResolveArgs args) |
| | 675 | | { |
| | 676 | | // Ignore any folders containing a file called .ignore |
| 50 | 677 | | return !args.ContainsFileSystemEntryByName(".ignore"); |
| | 678 | | } |
| | 679 | |
|
| | 680 | | public IEnumerable<BaseItem> ResolvePaths(IEnumerable<FileSystemMetadata> files, IDirectoryService directoryServ |
| | 681 | | { |
| 40 | 682 | | return ResolvePaths(files, directoryService, parent, libraryOptions, collectionType, EntityResolvers); |
| | 683 | | } |
| | 684 | |
|
| | 685 | | public IEnumerable<BaseItem> ResolvePaths( |
| | 686 | | IEnumerable<FileSystemMetadata> files, |
| | 687 | | IDirectoryService directoryService, |
| | 688 | | Folder parent, |
| | 689 | | LibraryOptions libraryOptions, |
| | 690 | | CollectionType? collectionType, |
| | 691 | | IItemResolver[] resolvers) |
| | 692 | | { |
| 40 | 693 | | var fileList = files.Where(i => !IgnoreFile(i, parent)).ToList(); |
| | 694 | |
|
| 40 | 695 | | if (parent is not null) |
| | 696 | | { |
| 40 | 697 | | var multiItemResolvers = resolvers is null ? MultiItemResolvers : resolvers.OfType<IMultiItemResolver>() |
| | 698 | |
|
| 240 | 699 | | foreach (var resolver in multiItemResolvers) |
| | 700 | | { |
| 80 | 701 | | var result = resolver.ResolveMultiple(parent, fileList, collectionType, directoryService); |
| | 702 | |
|
| 80 | 703 | | if (result?.Items.Count > 0) |
| | 704 | | { |
| 0 | 705 | | var items = result.Items; |
| 0 | 706 | | items.RemoveAll(item => !ResolverHelper.SetInitialItemValues(item, parent, this, directoryServic |
| 0 | 707 | | items.AddRange(ResolveFileList(result.ExtraFiles, directoryService, parent, collectionType, reso |
| 0 | 708 | | return items; |
| | 709 | | } |
| | 710 | | } |
| | 711 | | } |
| | 712 | |
|
| 40 | 713 | | return ResolveFileList(fileList, directoryService, parent, collectionType, resolvers, libraryOptions); |
| 0 | 714 | | } |
| | 715 | |
|
| | 716 | | private IEnumerable<BaseItem> ResolveFileList( |
| | 717 | | IReadOnlyList<FileSystemMetadata> fileList, |
| | 718 | | IDirectoryService directoryService, |
| | 719 | | Folder? parent, |
| | 720 | | CollectionType? collectionType, |
| | 721 | | IItemResolver[]? resolvers, |
| | 722 | | LibraryOptions libraryOptions) |
| | 723 | | { |
| | 724 | | // Given that fileList is a list we can save enumerator allocations by indexing |
| | 725 | | for (var i = 0; i < fileList.Count; i++) |
| | 726 | | { |
| | 727 | | var file = fileList[i]; |
| | 728 | | BaseItem? result = null; |
| | 729 | | try |
| | 730 | | { |
| | 731 | | result = ResolvePath(file, directoryService, resolvers, parent, collectionType, libraryOptions); |
| | 732 | | } |
| | 733 | | catch (Exception ex) |
| | 734 | | { |
| | 735 | | _logger.LogError(ex, "Error resolving path {Path}", file.FullName); |
| | 736 | | } |
| | 737 | |
|
| | 738 | | if (result is not null) |
| | 739 | | { |
| | 740 | | yield return result; |
| | 741 | | } |
| | 742 | | } |
| | 743 | | } |
| | 744 | |
|
| | 745 | | /// <summary> |
| | 746 | | /// Creates the root media folder. |
| | 747 | | /// </summary> |
| | 748 | | /// <returns>AggregateFolder.</returns> |
| | 749 | | /// <exception cref="InvalidOperationException">Cannot create the root folder until plugins have loaded.</except |
| | 750 | | public AggregateFolder CreateRootFolder() |
| | 751 | | { |
| 21 | 752 | | var rootFolderPath = _configurationManager.ApplicationPaths.RootFolderPath; |
| | 753 | |
|
| 21 | 754 | | Directory.CreateDirectory(rootFolderPath); |
| | 755 | |
|
| 21 | 756 | | var rootFolder = GetItemById(GetNewItemId(rootFolderPath, typeof(AggregateFolder))) as AggregateFolder ?? |
| 21 | 757 | | (ResolvePath(_fileSystem.GetDirectoryInfo(rootFolderPath)) as Folder ?? throw new InvalidOp |
| 21 | 758 | | .DeepCopy<Folder, AggregateFolder>(); |
| | 759 | |
|
| | 760 | | // In case program data folder was moved |
| 21 | 761 | | if (!string.Equals(rootFolder.Path, rootFolderPath, StringComparison.Ordinal)) |
| | 762 | | { |
| 0 | 763 | | _logger.LogInformation("Resetting root folder path to {0}", rootFolderPath); |
| 0 | 764 | | rootFolder.Path = rootFolderPath; |
| | 765 | | } |
| | 766 | |
|
| | 767 | | // Add in the plug-in folders |
| 21 | 768 | | var path = Path.Combine(_configurationManager.ApplicationPaths.DataPath, "playlists"); |
| | 769 | |
|
| 21 | 770 | | Directory.CreateDirectory(path); |
| | 771 | |
|
| 21 | 772 | | Folder folder = new PlaylistsFolder |
| 21 | 773 | | { |
| 21 | 774 | | Path = path |
| 21 | 775 | | }; |
| | 776 | |
|
| 21 | 777 | | if (folder.Id.IsEmpty()) |
| | 778 | | { |
| 21 | 779 | | folder.Id = GetNewItemId(folder.Path, folder.GetType()); |
| | 780 | | } |
| | 781 | |
|
| 21 | 782 | | var dbItem = GetItemById(folder.Id) as BasePluginFolder; |
| | 783 | |
|
| 21 | 784 | | if (dbItem is not null && string.Equals(dbItem.Path, folder.Path, StringComparison.OrdinalIgnoreCase)) |
| | 785 | | { |
| 0 | 786 | | folder = dbItem; |
| | 787 | | } |
| | 788 | |
|
| 21 | 789 | | if (!folder.ParentId.Equals(rootFolder.Id)) |
| | 790 | | { |
| 21 | 791 | | folder.ParentId = rootFolder.Id; |
| 21 | 792 | | folder.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, CancellationToken.None).GetAwaiter().GetRe |
| | 793 | | } |
| | 794 | |
|
| 21 | 795 | | rootFolder.AddVirtualChild(folder); |
| | 796 | |
|
| 21 | 797 | | RegisterItem(folder); |
| | 798 | |
|
| 21 | 799 | | return rootFolder; |
| | 800 | | } |
| | 801 | |
|
| | 802 | | public Folder GetUserRootFolder() |
| | 803 | | { |
| 748 | 804 | | if (_userRootFolder is null) |
| 21 | 805 | | { |
| | 806 | | lock (_userRootFolderSyncLock) |
| | 807 | | { |
| 21 | 808 | | if (_userRootFolder is null) |
| | 809 | | { |
| 21 | 810 | | var userRootPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| | 811 | |
|
| 21 | 812 | | _logger.LogDebug("Creating userRootPath at {Path}", userRootPath); |
| 21 | 813 | | Directory.CreateDirectory(userRootPath); |
| | 814 | |
|
| 21 | 815 | | var newItemId = GetNewItemId(userRootPath, typeof(UserRootFolder)); |
| 21 | 816 | | UserRootFolder? tmpItem = null; |
| | 817 | | try |
| | 818 | | { |
| 21 | 819 | | tmpItem = GetItemById(newItemId) as UserRootFolder; |
| 21 | 820 | | } |
| 0 | 821 | | catch (Exception ex) |
| | 822 | | { |
| 0 | 823 | | _logger.LogError(ex, "Error creating UserRootFolder {Path}", newItemId); |
| 0 | 824 | | } |
| | 825 | |
|
| 21 | 826 | | if (tmpItem is null) |
| | 827 | | { |
| 21 | 828 | | _logger.LogDebug("Creating new userRootFolder with DeepCopy"); |
| 21 | 829 | | tmpItem = (ResolvePath(_fileSystem.GetDirectoryInfo(userRootPath)) as Folder ?? throw new In |
| 21 | 830 | | .DeepCopy<Folder, UserRootFolder>(); |
| | 831 | | } |
| | 832 | |
|
| | 833 | | // In case program data folder was moved |
| 21 | 834 | | if (!string.Equals(tmpItem.Path, userRootPath, StringComparison.Ordinal)) |
| | 835 | | { |
| 0 | 836 | | _logger.LogInformation("Resetting user root folder path to {0}", userRootPath); |
| 0 | 837 | | tmpItem.Path = userRootPath; |
| | 838 | | } |
| | 839 | |
|
| 21 | 840 | | _userRootFolder = tmpItem; |
| 21 | 841 | | _logger.LogDebug("Setting userRootFolder: {Folder}", _userRootFolder); |
| | 842 | | } |
| 21 | 843 | | } |
| | 844 | | } |
| | 845 | |
|
| 748 | 846 | | return _userRootFolder; |
| | 847 | | } |
| | 848 | |
|
| | 849 | | /// <inheritdoc /> |
| | 850 | | public BaseItem? FindByPath(string path, bool? isFolder) |
| | 851 | | { |
| | 852 | | // If this returns multiple items it could be tricky figuring out which one is correct. |
| | 853 | | // In most cases, the newest one will be and the others obsolete but not yet cleaned up |
| 0 | 854 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 855 | |
|
| 0 | 856 | | var query = new InternalItemsQuery |
| 0 | 857 | | { |
| 0 | 858 | | Path = path, |
| 0 | 859 | | IsFolder = isFolder, |
| 0 | 860 | | OrderBy = new[] { (ItemSortBy.DateCreated, SortOrder.Descending) }, |
| 0 | 861 | | Limit = 1, |
| 0 | 862 | | DtoOptions = new DtoOptions(true) |
| 0 | 863 | | }; |
| | 864 | |
|
| 0 | 865 | | return GetItemList(query) |
| 0 | 866 | | .FirstOrDefault(); |
| | 867 | | } |
| | 868 | |
|
| | 869 | | /// <inheritdoc /> |
| | 870 | | public Person? GetPerson(string name) |
| | 871 | | { |
| 1 | 872 | | var path = Person.GetPath(name); |
| 1 | 873 | | var id = GetItemByNameId<Person>(path); |
| 1 | 874 | | if (GetItemById(id) is Person item) |
| | 875 | | { |
| 0 | 876 | | return item; |
| | 877 | | } |
| | 878 | |
|
| 1 | 879 | | return null; |
| | 880 | | } |
| | 881 | |
|
| | 882 | | /// <summary> |
| | 883 | | /// Gets the studio. |
| | 884 | | /// </summary> |
| | 885 | | /// <param name="name">The name.</param> |
| | 886 | | /// <returns>Task{Studio}.</returns> |
| | 887 | | public Studio GetStudio(string name) |
| | 888 | | { |
| 0 | 889 | | return CreateItemByName<Studio>(Studio.GetPath, name, new DtoOptions(true)); |
| | 890 | | } |
| | 891 | |
|
| | 892 | | public Guid GetStudioId(string name) |
| | 893 | | { |
| 0 | 894 | | return GetItemByNameId<Studio>(Studio.GetPath(name)); |
| | 895 | | } |
| | 896 | |
|
| | 897 | | public Guid GetGenreId(string name) |
| | 898 | | { |
| 0 | 899 | | return GetItemByNameId<Genre>(Genre.GetPath(name)); |
| | 900 | | } |
| | 901 | |
|
| | 902 | | public Guid GetMusicGenreId(string name) |
| | 903 | | { |
| 0 | 904 | | return GetItemByNameId<MusicGenre>(MusicGenre.GetPath(name)); |
| | 905 | | } |
| | 906 | |
|
| | 907 | | /// <summary> |
| | 908 | | /// Gets the genre. |
| | 909 | | /// </summary> |
| | 910 | | /// <param name="name">The name.</param> |
| | 911 | | /// <returns>Task{Genre}.</returns> |
| | 912 | | public Genre GetGenre(string name) |
| | 913 | | { |
| 0 | 914 | | return CreateItemByName<Genre>(Genre.GetPath, name, new DtoOptions(true)); |
| | 915 | | } |
| | 916 | |
|
| | 917 | | /// <summary> |
| | 918 | | /// Gets the music genre. |
| | 919 | | /// </summary> |
| | 920 | | /// <param name="name">The name.</param> |
| | 921 | | /// <returns>Task{MusicGenre}.</returns> |
| | 922 | | public MusicGenre GetMusicGenre(string name) |
| | 923 | | { |
| 0 | 924 | | return CreateItemByName<MusicGenre>(MusicGenre.GetPath, name, new DtoOptions(true)); |
| | 925 | | } |
| | 926 | |
|
| | 927 | | /// <summary> |
| | 928 | | /// Gets the year. |
| | 929 | | /// </summary> |
| | 930 | | /// <param name="value">The value.</param> |
| | 931 | | /// <returns>Task{Year}.</returns> |
| | 932 | | public Year GetYear(int value) |
| | 933 | | { |
| 0 | 934 | | if (value <= 0) |
| | 935 | | { |
| 0 | 936 | | throw new ArgumentOutOfRangeException(nameof(value), "Years less than or equal to 0 are invalid."); |
| | 937 | | } |
| | 938 | |
|
| 0 | 939 | | var name = value.ToString(CultureInfo.InvariantCulture); |
| | 940 | |
|
| 0 | 941 | | return CreateItemByName<Year>(Year.GetPath, name, new DtoOptions(true)); |
| | 942 | | } |
| | 943 | |
|
| | 944 | | /// <summary> |
| | 945 | | /// Gets a Genre. |
| | 946 | | /// </summary> |
| | 947 | | /// <param name="name">The name.</param> |
| | 948 | | /// <returns>Task{Genre}.</returns> |
| | 949 | | public MusicArtist GetArtist(string name) |
| | 950 | | { |
| 0 | 951 | | return GetArtist(name, new DtoOptions(true)); |
| | 952 | | } |
| | 953 | |
|
| | 954 | | public MusicArtist GetArtist(string name, DtoOptions options) |
| | 955 | | { |
| 0 | 956 | | return CreateItemByName<MusicArtist>(MusicArtist.GetPath, name, options); |
| | 957 | | } |
| | 958 | |
|
| | 959 | | private T CreateItemByName<T>(Func<string, string> getPathFn, string name, DtoOptions options) |
| | 960 | | where T : BaseItem, new() |
| | 961 | | { |
| 0 | 962 | | if (typeof(T) == typeof(MusicArtist)) |
| | 963 | | { |
| 0 | 964 | | var existing = GetItemList(new InternalItemsQuery |
| 0 | 965 | | { |
| 0 | 966 | | IncludeItemTypes = new[] { BaseItemKind.MusicArtist }, |
| 0 | 967 | | Name = name, |
| 0 | 968 | | DtoOptions = options |
| 0 | 969 | | }).Cast<MusicArtist>() |
| 0 | 970 | | .OrderBy(i => i.IsAccessedByName ? 1 : 0) |
| 0 | 971 | | .Cast<T>() |
| 0 | 972 | | .FirstOrDefault(); |
| | 973 | |
|
| 0 | 974 | | if (existing is not null) |
| | 975 | | { |
| 0 | 976 | | return existing; |
| | 977 | | } |
| | 978 | | } |
| | 979 | |
|
| 0 | 980 | | var path = getPathFn(name); |
| 0 | 981 | | var id = GetItemByNameId<T>(path); |
| 0 | 982 | | var item = GetItemById(id) as T; |
| 0 | 983 | | if (item is null) |
| | 984 | | { |
| 0 | 985 | | item = new T |
| 0 | 986 | | { |
| 0 | 987 | | Name = name, |
| 0 | 988 | | Id = id, |
| 0 | 989 | | DateCreated = DateTime.UtcNow, |
| 0 | 990 | | DateModified = DateTime.UtcNow, |
| 0 | 991 | | Path = path |
| 0 | 992 | | }; |
| | 993 | |
|
| 0 | 994 | | CreateItem(item, null); |
| | 995 | | } |
| | 996 | |
|
| 0 | 997 | | return item; |
| | 998 | | } |
| | 999 | |
|
| | 1000 | | private Guid GetItemByNameId<T>(string path) |
| | 1001 | | where T : BaseItem, new() |
| | 1002 | | { |
| 1 | 1003 | | var forceCaseInsensitiveId = _configurationManager.Configuration.EnableNormalizedItemByNameIds; |
| 1 | 1004 | | return GetNewItemIdInternal(path, typeof(T), forceCaseInsensitiveId); |
| | 1005 | | } |
| | 1006 | |
|
| | 1007 | | /// <inheritdoc /> |
| | 1008 | | public Task ValidatePeopleAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 1009 | | { |
| | 1010 | | // Ensure the location is available. |
| 0 | 1011 | | Directory.CreateDirectory(_configurationManager.ApplicationPaths.PeoplePath); |
| | 1012 | |
|
| 0 | 1013 | | return new PeopleValidator(this, _logger, _fileSystem).ValidatePeople(cancellationToken, progress); |
| | 1014 | | } |
| | 1015 | |
|
| | 1016 | | /// <summary> |
| | 1017 | | /// Reloads the root media folder. |
| | 1018 | | /// </summary> |
| | 1019 | | /// <param name="progress">The progress.</param> |
| | 1020 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 1021 | | /// <returns>Task.</returns> |
| | 1022 | | public Task ValidateMediaLibrary(IProgress<double> progress, CancellationToken cancellationToken) |
| | 1023 | | { |
| | 1024 | | // Just run the scheduled task so that the user can see it |
| 3 | 1025 | | _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>(); |
| | 1026 | |
|
| 3 | 1027 | | return Task.CompletedTask; |
| | 1028 | | } |
| | 1029 | |
|
| | 1030 | | /// <summary> |
| | 1031 | | /// Validates the media library internal. |
| | 1032 | | /// </summary> |
| | 1033 | | /// <param name="progress">The progress.</param> |
| | 1034 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 1035 | | /// <returns>Task.</returns> |
| | 1036 | | public async Task ValidateMediaLibraryInternal(IProgress<double> progress, CancellationToken cancellationToken) |
| | 1037 | | { |
| | 1038 | | IsScanRunning = true; |
| | 1039 | | LibraryMonitor.Stop(); |
| | 1040 | |
|
| | 1041 | | try |
| | 1042 | | { |
| | 1043 | | await PerformLibraryValidation(progress, cancellationToken).ConfigureAwait(false); |
| | 1044 | | } |
| | 1045 | | finally |
| | 1046 | | { |
| | 1047 | | LibraryMonitor.Start(); |
| | 1048 | | IsScanRunning = false; |
| | 1049 | | } |
| | 1050 | | } |
| | 1051 | |
|
| | 1052 | | public async Task ValidateTopLibraryFolders(CancellationToken cancellationToken, bool removeRoot = false) |
| | 1053 | | { |
| | 1054 | | await RootFolder.RefreshMetadata(cancellationToken).ConfigureAwait(false); |
| | 1055 | |
|
| | 1056 | | // Start by just validating the children of the root, but go no further |
| | 1057 | | await RootFolder.ValidateChildren( |
| | 1058 | | new Progress<double>(), |
| | 1059 | | new MetadataRefreshOptions(new DirectoryService(_fileSystem)), |
| | 1060 | | recursive: false, |
| | 1061 | | allowRemoveRoot: removeRoot, |
| | 1062 | | cancellationToken: cancellationToken).ConfigureAwait(false); |
| | 1063 | |
|
| | 1064 | | await GetUserRootFolder().RefreshMetadata(cancellationToken).ConfigureAwait(false); |
| | 1065 | |
|
| | 1066 | | await GetUserRootFolder().ValidateChildren( |
| | 1067 | | new Progress<double>(), |
| | 1068 | | new MetadataRefreshOptions(new DirectoryService(_fileSystem)), |
| | 1069 | | recursive: false, |
| | 1070 | | allowRemoveRoot: removeRoot, |
| | 1071 | | cancellationToken: cancellationToken).ConfigureAwait(false); |
| | 1072 | |
|
| | 1073 | | // Quickly scan CollectionFolders for changes |
| | 1074 | | foreach (var child in GetUserRootFolder().Children.OfType<Folder>()) |
| | 1075 | | { |
| | 1076 | | // If the user has somehow deleted the collection directory, remove the metadata from the database. |
| | 1077 | | if (child is CollectionFolder collectionFolder && !Directory.Exists(collectionFolder.Path)) |
| | 1078 | | { |
| | 1079 | | _itemRepository.DeleteItem(collectionFolder.Id); |
| | 1080 | | } |
| | 1081 | | else |
| | 1082 | | { |
| | 1083 | | await child.RefreshMetadata(cancellationToken).ConfigureAwait(false); |
| | 1084 | | } |
| | 1085 | | } |
| | 1086 | | } |
| | 1087 | |
|
| | 1088 | | private async Task PerformLibraryValidation(IProgress<double> progress, CancellationToken cancellationToken) |
| | 1089 | | { |
| | 1090 | | _logger.LogInformation("Validating media library"); |
| | 1091 | |
|
| | 1092 | | await ValidateTopLibraryFolders(cancellationToken).ConfigureAwait(false); |
| | 1093 | |
|
| | 1094 | | var innerProgress = new Progress<double>(pct => progress.Report(pct * 0.96)); |
| | 1095 | |
|
| | 1096 | | // Validate the entire media library |
| | 1097 | | await RootFolder.ValidateChildren(innerProgress, new MetadataRefreshOptions(new DirectoryService(_fileSystem |
| | 1098 | |
|
| | 1099 | | progress.Report(96); |
| | 1100 | |
|
| | 1101 | | innerProgress = new Progress<double>(pct => progress.Report(96 + (pct * .04))); |
| | 1102 | |
|
| | 1103 | | await RunPostScanTasks(innerProgress, cancellationToken).ConfigureAwait(false); |
| | 1104 | |
|
| | 1105 | | progress.Report(100); |
| | 1106 | | } |
| | 1107 | |
|
| | 1108 | | /// <summary> |
| | 1109 | | /// Runs the post scan tasks. |
| | 1110 | | /// </summary> |
| | 1111 | | /// <param name="progress">The progress.</param> |
| | 1112 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 1113 | | /// <returns>Task.</returns> |
| | 1114 | | private async Task RunPostScanTasks(IProgress<double> progress, CancellationToken cancellationToken) |
| | 1115 | | { |
| | 1116 | | var tasks = PostscanTasks.ToList(); |
| | 1117 | |
|
| | 1118 | | var numComplete = 0; |
| | 1119 | | var numTasks = tasks.Count; |
| | 1120 | |
|
| | 1121 | | foreach (var task in tasks) |
| | 1122 | | { |
| | 1123 | | // Prevent access to modified closure |
| | 1124 | | var currentNumComplete = numComplete; |
| | 1125 | |
|
| | 1126 | | var innerProgress = new Progress<double>(pct => |
| | 1127 | | { |
| | 1128 | | double innerPercent = pct; |
| | 1129 | | innerPercent /= 100; |
| | 1130 | | innerPercent += currentNumComplete; |
| | 1131 | |
|
| | 1132 | | innerPercent /= numTasks; |
| | 1133 | | innerPercent *= 100; |
| | 1134 | |
|
| | 1135 | | progress.Report(innerPercent); |
| | 1136 | | }); |
| | 1137 | |
|
| | 1138 | | _logger.LogDebug("Running post-scan task {0}", task.GetType().Name); |
| | 1139 | |
|
| | 1140 | | try |
| | 1141 | | { |
| | 1142 | | await task.Run(innerProgress, cancellationToken).ConfigureAwait(false); |
| | 1143 | | } |
| | 1144 | | catch (OperationCanceledException) |
| | 1145 | | { |
| | 1146 | | _logger.LogInformation("Post-scan task cancelled: {0}", task.GetType().Name); |
| | 1147 | | throw; |
| | 1148 | | } |
| | 1149 | | catch (Exception ex) |
| | 1150 | | { |
| | 1151 | | _logger.LogError(ex, "Error running post-scan task"); |
| | 1152 | | } |
| | 1153 | |
|
| | 1154 | | numComplete++; |
| | 1155 | | double percent = numComplete; |
| | 1156 | | percent /= numTasks; |
| | 1157 | | progress.Report(percent * 100); |
| | 1158 | | } |
| | 1159 | |
|
| | 1160 | | _itemRepository.UpdateInheritedValues(); |
| | 1161 | |
|
| | 1162 | | progress.Report(100); |
| | 1163 | | } |
| | 1164 | |
|
| | 1165 | | /// <summary> |
| | 1166 | | /// Gets the default view. |
| | 1167 | | /// </summary> |
| | 1168 | | /// <returns>IEnumerable{VirtualFolderInfo}.</returns> |
| | 1169 | | public List<VirtualFolderInfo> GetVirtualFolders() |
| | 1170 | | { |
| 23 | 1171 | | return GetVirtualFolders(false); |
| | 1172 | | } |
| | 1173 | |
|
| | 1174 | | public List<VirtualFolderInfo> GetVirtualFolders(bool includeRefreshState) |
| | 1175 | | { |
| 24 | 1176 | | _logger.LogDebug("Getting topLibraryFolders"); |
| 24 | 1177 | | var topLibraryFolders = GetUserRootFolder().Children.ToList(); |
| | 1178 | |
|
| 24 | 1179 | | _logger.LogDebug("Getting refreshQueue"); |
| 24 | 1180 | | var refreshQueue = includeRefreshState ? ProviderManager.GetRefreshQueue() : null; |
| | 1181 | |
|
| 24 | 1182 | | return _fileSystem.GetDirectoryPaths(_configurationManager.ApplicationPaths.DefaultUserViewsPath) |
| 24 | 1183 | | .Select(dir => GetVirtualFolderInfo(dir, topLibraryFolders, refreshQueue)) |
| 24 | 1184 | | .ToList(); |
| | 1185 | | } |
| | 1186 | |
|
| | 1187 | | private VirtualFolderInfo GetVirtualFolderInfo(string dir, List<BaseItem> allCollectionFolders, HashSet<Guid>? r |
| | 1188 | | { |
| 1 | 1189 | | var info = new VirtualFolderInfo |
| 1 | 1190 | | { |
| 1 | 1191 | | Name = Path.GetFileName(dir), |
| 1 | 1192 | |
|
| 1 | 1193 | | Locations = _fileSystem.GetFilePaths(dir, false) |
| 1 | 1194 | | .Where(i => Path.GetExtension(i.AsSpan()).Equals(ShortcutFileExtension, StringComparison.OrdinalIgnoreCa |
| 1 | 1195 | | .Select(i => |
| 1 | 1196 | | { |
| 1 | 1197 | | try |
| 1 | 1198 | | { |
| 1 | 1199 | | return _appHost.ExpandVirtualPath(_fileSystem.ResolveShortcut(i)); |
| 1 | 1200 | | } |
| 1 | 1201 | | catch (Exception ex) |
| 1 | 1202 | | { |
| 1 | 1203 | | _logger.LogError(ex, "Error resolving shortcut file {File}", i); |
| 1 | 1204 | | return null; |
| 1 | 1205 | | } |
| 1 | 1206 | | }) |
| 1 | 1207 | | .Where(i => i is not null) |
| 1 | 1208 | | .Order() |
| 1 | 1209 | | .ToArray(), |
| 1 | 1210 | |
|
| 1 | 1211 | | CollectionType = GetCollectionType(dir) |
| 1 | 1212 | | }; |
| | 1213 | |
|
| 1 | 1214 | | var libraryFolder = allCollectionFolders.FirstOrDefault(i => string.Equals(i.Path, dir, StringComparison.Ord |
| 1 | 1215 | | if (libraryFolder is not null) |
| | 1216 | | { |
| 1 | 1217 | | var libraryFolderId = libraryFolder.Id.ToString("N", CultureInfo.InvariantCulture); |
| 1 | 1218 | | info.ItemId = libraryFolderId; |
| 1 | 1219 | | if (libraryFolder.HasImage(ImageType.Primary)) |
| | 1220 | | { |
| 0 | 1221 | | info.PrimaryImageItemId = libraryFolderId; |
| | 1222 | | } |
| | 1223 | |
|
| 1 | 1224 | | info.LibraryOptions = GetLibraryOptions(libraryFolder); |
| | 1225 | |
|
| 1 | 1226 | | if (refreshQueue is not null) |
| | 1227 | | { |
| 1 | 1228 | | info.RefreshProgress = libraryFolder.GetRefreshProgress(); |
| | 1229 | |
|
| 1 | 1230 | | info.RefreshStatus = info.RefreshProgress.HasValue ? "Active" : refreshQueue.Contains(libraryFolder. |
| | 1231 | | } |
| | 1232 | | } |
| | 1233 | |
|
| 1 | 1234 | | return info; |
| | 1235 | | } |
| | 1236 | |
|
| | 1237 | | private CollectionTypeOptions? GetCollectionType(string path) |
| | 1238 | | { |
| 1 | 1239 | | var files = _fileSystem.GetFilePaths(path, new[] { ".collection" }, true, false); |
| 2 | 1240 | | foreach (ReadOnlySpan<char> file in files) |
| | 1241 | | { |
| 0 | 1242 | | if (Enum.TryParse<CollectionTypeOptions>(Path.GetFileNameWithoutExtension(file), true, out var res)) |
| | 1243 | | { |
| 0 | 1244 | | return res; |
| | 1245 | | } |
| | 1246 | | } |
| | 1247 | |
|
| 1 | 1248 | | return null; |
| 0 | 1249 | | } |
| | 1250 | |
|
| | 1251 | | /// <inheritdoc /> |
| | 1252 | | public BaseItem? GetItemById(Guid id) |
| | 1253 | | { |
| 811 | 1254 | | if (id.IsEmpty()) |
| | 1255 | | { |
| 0 | 1256 | | throw new ArgumentException("Guid can't be empty", nameof(id)); |
| | 1257 | | } |
| | 1258 | |
|
| 811 | 1259 | | if (_cache.TryGet(id, out var item)) |
| | 1260 | | { |
| 580 | 1261 | | return item; |
| | 1262 | | } |
| | 1263 | |
|
| 231 | 1264 | | item = RetrieveItem(id); |
| | 1265 | |
|
| 231 | 1266 | | if (item is not null) |
| | 1267 | | { |
| 0 | 1268 | | RegisterItem(item); |
| | 1269 | | } |
| | 1270 | |
|
| 231 | 1271 | | return item; |
| | 1272 | | } |
| | 1273 | |
|
| | 1274 | | /// <inheritdoc /> |
| | 1275 | | public T? GetItemById<T>(Guid id) |
| | 1276 | | where T : BaseItem |
| | 1277 | | { |
| 23 | 1278 | | var item = GetItemById(id); |
| 23 | 1279 | | if (item is T typedItem) |
| | 1280 | | { |
| 1 | 1281 | | return typedItem; |
| | 1282 | | } |
| | 1283 | |
|
| 22 | 1284 | | return null; |
| | 1285 | | } |
| | 1286 | |
|
| | 1287 | | /// <inheritdoc /> |
| | 1288 | | public T? GetItemById<T>(Guid id, Guid userId) |
| | 1289 | | where T : BaseItem |
| | 1290 | | { |
| 1 | 1291 | | var user = userId.IsEmpty() ? null : _userManager.GetUserById(userId); |
| 1 | 1292 | | return GetItemById<T>(id, user); |
| | 1293 | | } |
| | 1294 | |
|
| | 1295 | | /// <inheritdoc /> |
| | 1296 | | public T? GetItemById<T>(Guid id, User? user) |
| | 1297 | | where T : BaseItem |
| | 1298 | | { |
| 21 | 1299 | | var item = GetItemById<T>(id); |
| 21 | 1300 | | return ItemIsVisible(item, user) ? item : null; |
| | 1301 | | } |
| | 1302 | |
|
| | 1303 | | public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query, bool allowExternalContent) |
| | 1304 | | { |
| 61 | 1305 | | if (query.Recursive && !query.ParentId.IsEmpty()) |
| | 1306 | | { |
| 38 | 1307 | | var parent = GetItemById(query.ParentId); |
| 38 | 1308 | | if (parent is not null) |
| | 1309 | | { |
| 38 | 1310 | | SetTopParentIdsOrAncestors(query, new[] { parent }); |
| | 1311 | | } |
| | 1312 | | } |
| | 1313 | |
|
| 61 | 1314 | | if (query.User is not null) |
| | 1315 | | { |
| 1 | 1316 | | AddUserToQuery(query, query.User, allowExternalContent); |
| | 1317 | | } |
| | 1318 | |
|
| 61 | 1319 | | var itemList = _itemRepository.GetItemList(query); |
| 60 | 1320 | | var user = query.User; |
| 60 | 1321 | | if (user is not null) |
| | 1322 | | { |
| 1 | 1323 | | return itemList.Where(i => i.IsVisible(user)).ToList(); |
| | 1324 | | } |
| | 1325 | |
|
| 59 | 1326 | | return itemList; |
| | 1327 | | } |
| | 1328 | |
|
| | 1329 | | public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query) |
| | 1330 | | { |
| 61 | 1331 | | return GetItemList(query, true); |
| | 1332 | | } |
| | 1333 | |
|
| | 1334 | | public int GetCount(InternalItemsQuery query) |
| | 1335 | | { |
| 0 | 1336 | | if (query.Recursive && !query.ParentId.IsEmpty()) |
| | 1337 | | { |
| 0 | 1338 | | var parent = GetItemById(query.ParentId); |
| 0 | 1339 | | if (parent is not null) |
| | 1340 | | { |
| 0 | 1341 | | SetTopParentIdsOrAncestors(query, new[] { parent }); |
| | 1342 | | } |
| | 1343 | | } |
| | 1344 | |
|
| 0 | 1345 | | if (query.User is not null) |
| | 1346 | | { |
| 0 | 1347 | | AddUserToQuery(query, query.User); |
| | 1348 | | } |
| | 1349 | |
|
| 0 | 1350 | | return _itemRepository.GetCount(query); |
| | 1351 | | } |
| | 1352 | |
|
| | 1353 | | public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query, List<BaseItem> parents) |
| | 1354 | | { |
| 0 | 1355 | | SetTopParentIdsOrAncestors(query, parents); |
| | 1356 | |
|
| 0 | 1357 | | if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0) |
| | 1358 | | { |
| 0 | 1359 | | if (query.User is not null) |
| | 1360 | | { |
| 0 | 1361 | | AddUserToQuery(query, query.User); |
| | 1362 | | } |
| | 1363 | | } |
| | 1364 | |
|
| 0 | 1365 | | return _itemRepository.GetItemList(query); |
| | 1366 | | } |
| | 1367 | |
|
| | 1368 | | public IReadOnlyList<BaseItem> GetLatestItemList(InternalItemsQuery query, IReadOnlyList<BaseItem> parents, Coll |
| | 1369 | | { |
| 0 | 1370 | | SetTopParentIdsOrAncestors(query, parents); |
| | 1371 | |
|
| 0 | 1372 | | if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0) |
| | 1373 | | { |
| 0 | 1374 | | if (query.User is not null) |
| | 1375 | | { |
| 0 | 1376 | | AddUserToQuery(query, query.User); |
| | 1377 | | } |
| | 1378 | | } |
| | 1379 | |
|
| 0 | 1380 | | return _itemRepository.GetLatestItemList(query, collectionType); |
| | 1381 | | } |
| | 1382 | |
|
| | 1383 | | public IReadOnlyList<string> GetNextUpSeriesKeys(InternalItemsQuery query, IReadOnlyCollection<BaseItem> parents |
| | 1384 | | { |
| 0 | 1385 | | SetTopParentIdsOrAncestors(query, parents); |
| | 1386 | |
|
| 0 | 1387 | | if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0) |
| | 1388 | | { |
| 0 | 1389 | | if (query.User is not null) |
| | 1390 | | { |
| 0 | 1391 | | AddUserToQuery(query, query.User); |
| | 1392 | | } |
| | 1393 | | } |
| | 1394 | |
|
| 0 | 1395 | | return _itemRepository.GetNextUpSeriesKeys(query, dateCutoff); |
| | 1396 | | } |
| | 1397 | |
|
| | 1398 | | public QueryResult<BaseItem> QueryItems(InternalItemsQuery query) |
| | 1399 | | { |
| 0 | 1400 | | if (query.User is not null) |
| | 1401 | | { |
| 0 | 1402 | | AddUserToQuery(query, query.User); |
| | 1403 | | } |
| | 1404 | |
|
| 0 | 1405 | | if (query.EnableTotalRecordCount) |
| | 1406 | | { |
| 0 | 1407 | | return _itemRepository.GetItems(query); |
| | 1408 | | } |
| | 1409 | |
|
| 0 | 1410 | | return new QueryResult<BaseItem>( |
| 0 | 1411 | | query.StartIndex, |
| 0 | 1412 | | null, |
| 0 | 1413 | | _itemRepository.GetItemList(query)); |
| | 1414 | | } |
| | 1415 | |
|
| | 1416 | | public IReadOnlyList<Guid> GetItemIds(InternalItemsQuery query) |
| | 1417 | | { |
| 10 | 1418 | | if (query.User is not null) |
| | 1419 | | { |
| 0 | 1420 | | AddUserToQuery(query, query.User); |
| | 1421 | | } |
| | 1422 | |
|
| 10 | 1423 | | return _itemRepository.GetItemIdsList(query); |
| | 1424 | | } |
| | 1425 | |
|
| | 1426 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetStudios(InternalItemsQuery query) |
| | 1427 | | { |
| 0 | 1428 | | if (query.User is not null) |
| | 1429 | | { |
| 0 | 1430 | | AddUserToQuery(query, query.User); |
| | 1431 | | } |
| | 1432 | |
|
| 0 | 1433 | | SetTopParentOrAncestorIds(query); |
| 0 | 1434 | | return _itemRepository.GetStudios(query); |
| | 1435 | | } |
| | 1436 | |
|
| | 1437 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetGenres(InternalItemsQuery query) |
| | 1438 | | { |
| 0 | 1439 | | if (query.User is not null) |
| | 1440 | | { |
| 0 | 1441 | | AddUserToQuery(query, query.User); |
| | 1442 | | } |
| | 1443 | |
|
| 0 | 1444 | | SetTopParentOrAncestorIds(query); |
| 0 | 1445 | | return _itemRepository.GetGenres(query); |
| | 1446 | | } |
| | 1447 | |
|
| | 1448 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetMusicGenres(InternalItemsQuery query) |
| | 1449 | | { |
| 0 | 1450 | | if (query.User is not null) |
| | 1451 | | { |
| 0 | 1452 | | AddUserToQuery(query, query.User); |
| | 1453 | | } |
| | 1454 | |
|
| 0 | 1455 | | SetTopParentOrAncestorIds(query); |
| 0 | 1456 | | return _itemRepository.GetMusicGenres(query); |
| | 1457 | | } |
| | 1458 | |
|
| | 1459 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetAllArtists(InternalItemsQuery query) |
| | 1460 | | { |
| 0 | 1461 | | if (query.User is not null) |
| | 1462 | | { |
| 0 | 1463 | | AddUserToQuery(query, query.User); |
| | 1464 | | } |
| | 1465 | |
|
| 0 | 1466 | | SetTopParentOrAncestorIds(query); |
| 0 | 1467 | | return _itemRepository.GetAllArtists(query); |
| | 1468 | | } |
| | 1469 | |
|
| | 1470 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetArtists(InternalItemsQuery query) |
| | 1471 | | { |
| 0 | 1472 | | if (query.User is not null) |
| | 1473 | | { |
| 0 | 1474 | | AddUserToQuery(query, query.User); |
| | 1475 | | } |
| | 1476 | |
|
| 0 | 1477 | | SetTopParentOrAncestorIds(query); |
| 0 | 1478 | | return _itemRepository.GetArtists(query); |
| | 1479 | | } |
| | 1480 | |
|
| | 1481 | | private void SetTopParentOrAncestorIds(InternalItemsQuery query) |
| | 1482 | | { |
| 0 | 1483 | | var ancestorIds = query.AncestorIds; |
| 0 | 1484 | | int len = ancestorIds.Length; |
| 0 | 1485 | | if (len == 0) |
| | 1486 | | { |
| 0 | 1487 | | return; |
| | 1488 | | } |
| | 1489 | |
|
| 0 | 1490 | | var parents = new BaseItem[len]; |
| 0 | 1491 | | for (int i = 0; i < len; i++) |
| | 1492 | | { |
| 0 | 1493 | | parents[i] = GetItemById(ancestorIds[i]) ?? throw new ArgumentException($"Failed to find parent with id: |
| 0 | 1494 | | if (parents[i] is not (ICollectionFolder or UserView)) |
| | 1495 | | { |
| 0 | 1496 | | return; |
| | 1497 | | } |
| | 1498 | | } |
| | 1499 | |
|
| | 1500 | | // Optimize by querying against top level views |
| 0 | 1501 | | query.TopParentIds = parents.SelectMany(i => GetTopParentIdsForQuery(i, query.User)).ToArray(); |
| 0 | 1502 | | query.AncestorIds = []; |
| | 1503 | |
|
| | 1504 | | // Prevent searching in all libraries due to empty filter |
| 0 | 1505 | | if (query.TopParentIds.Length == 0) |
| | 1506 | | { |
| 0 | 1507 | | query.TopParentIds = [Guid.NewGuid()]; |
| | 1508 | | } |
| 0 | 1509 | | } |
| | 1510 | |
|
| | 1511 | | public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetAlbumArtists(InternalItemsQuery query) |
| | 1512 | | { |
| 0 | 1513 | | if (query.User is not null) |
| | 1514 | | { |
| 0 | 1515 | | AddUserToQuery(query, query.User); |
| | 1516 | | } |
| | 1517 | |
|
| 0 | 1518 | | SetTopParentOrAncestorIds(query); |
| 0 | 1519 | | return _itemRepository.GetAlbumArtists(query); |
| | 1520 | | } |
| | 1521 | |
|
| | 1522 | | public QueryResult<BaseItem> GetItemsResult(InternalItemsQuery query) |
| | 1523 | | { |
| 17 | 1524 | | if (query.Recursive && !query.ParentId.IsEmpty()) |
| | 1525 | | { |
| 16 | 1526 | | var parent = GetItemById(query.ParentId); |
| 16 | 1527 | | if (parent is not null) |
| | 1528 | | { |
| 16 | 1529 | | SetTopParentIdsOrAncestors(query, new[] { parent }); |
| | 1530 | | } |
| | 1531 | | } |
| | 1532 | |
|
| 17 | 1533 | | if (query.User is not null) |
| | 1534 | | { |
| 1 | 1535 | | AddUserToQuery(query, query.User); |
| | 1536 | | } |
| | 1537 | |
|
| 17 | 1538 | | if (query.EnableTotalRecordCount) |
| | 1539 | | { |
| 1 | 1540 | | return _itemRepository.GetItems(query); |
| | 1541 | | } |
| | 1542 | |
|
| 16 | 1543 | | return new QueryResult<BaseItem>( |
| 16 | 1544 | | query.StartIndex, |
| 16 | 1545 | | null, |
| 16 | 1546 | | _itemRepository.GetItemList(query)); |
| | 1547 | | } |
| | 1548 | |
|
| | 1549 | | private void SetTopParentIdsOrAncestors(InternalItemsQuery query, IReadOnlyCollection<BaseItem> parents) |
| | 1550 | | { |
| 54 | 1551 | | if (parents.All(i => i is ICollectionFolder || i is UserView)) |
| | 1552 | | { |
| | 1553 | | // Optimize by querying against top level views |
| 16 | 1554 | | query.TopParentIds = parents.SelectMany(i => GetTopParentIdsForQuery(i, query.User)).ToArray(); |
| | 1555 | |
|
| | 1556 | | // Prevent searching in all libraries due to empty filter |
| 16 | 1557 | | if (query.TopParentIds.Length == 0) |
| | 1558 | | { |
| 16 | 1559 | | query.TopParentIds = new[] { Guid.NewGuid() }; |
| | 1560 | | } |
| | 1561 | | } |
| | 1562 | | else |
| | 1563 | | { |
| | 1564 | | // We need to be able to query from any arbitrary ancestor up the tree |
| 38 | 1565 | | query.AncestorIds = parents.SelectMany(i => i.GetIdsForAncestorQuery()).ToArray(); |
| | 1566 | |
|
| | 1567 | | // Prevent searching in all libraries due to empty filter |
| 38 | 1568 | | if (query.AncestorIds.Length == 0) |
| | 1569 | | { |
| 0 | 1570 | | query.AncestorIds = new[] { Guid.NewGuid() }; |
| | 1571 | | } |
| | 1572 | | } |
| | 1573 | |
|
| 54 | 1574 | | query.Parent = null; |
| 54 | 1575 | | } |
| | 1576 | |
|
| | 1577 | | private void AddUserToQuery(InternalItemsQuery query, User user, bool allowExternalContent = true) |
| | 1578 | | { |
| 2 | 1579 | | if (query.AncestorIds.Length == 0 && |
| 2 | 1580 | | query.ParentId.IsEmpty() && |
| 2 | 1581 | | query.ChannelIds.Count == 0 && |
| 2 | 1582 | | query.TopParentIds.Length == 0 && |
| 2 | 1583 | | string.IsNullOrEmpty(query.AncestorWithPresentationUniqueKey) && |
| 2 | 1584 | | string.IsNullOrEmpty(query.SeriesPresentationUniqueKey) && |
| 2 | 1585 | | query.ItemIds.Length == 0) |
| | 1586 | | { |
| 1 | 1587 | | var userViews = UserViewManager.GetUserViews(new UserViewQuery |
| 1 | 1588 | | { |
| 1 | 1589 | | User = user, |
| 1 | 1590 | | IncludeHidden = true, |
| 1 | 1591 | | IncludeExternalContent = allowExternalContent |
| 1 | 1592 | | }); |
| | 1593 | |
|
| 1 | 1594 | | query.TopParentIds = userViews.SelectMany(i => GetTopParentIdsForQuery(i, user)).ToArray(); |
| | 1595 | |
|
| | 1596 | | // Prevent searching in all libraries due to empty filter |
| 1 | 1597 | | if (query.TopParentIds.Length == 0) |
| | 1598 | | { |
| 1 | 1599 | | query.TopParentIds = new[] { Guid.NewGuid() }; |
| | 1600 | | } |
| | 1601 | | } |
| 2 | 1602 | | } |
| | 1603 | |
|
| | 1604 | | private IEnumerable<Guid> GetTopParentIdsForQuery(BaseItem item, User? user) |
| | 1605 | | { |
| 16 | 1606 | | if (item is UserView view) |
| | 1607 | | { |
| 0 | 1608 | | if (view.ViewType == CollectionType.livetv) |
| | 1609 | | { |
| 0 | 1610 | | return new[] { view.Id }; |
| | 1611 | | } |
| | 1612 | |
|
| | 1613 | | // Translate view into folders |
| 0 | 1614 | | if (!view.DisplayParentId.IsEmpty()) |
| | 1615 | | { |
| 0 | 1616 | | var displayParent = GetItemById(view.DisplayParentId); |
| 0 | 1617 | | if (displayParent is not null) |
| | 1618 | | { |
| 0 | 1619 | | return GetTopParentIdsForQuery(displayParent, user); |
| | 1620 | | } |
| | 1621 | |
|
| 0 | 1622 | | return []; |
| | 1623 | | } |
| | 1624 | |
|
| 0 | 1625 | | if (!view.ParentId.IsEmpty()) |
| | 1626 | | { |
| 0 | 1627 | | var displayParent = GetItemById(view.ParentId); |
| 0 | 1628 | | if (displayParent is not null) |
| | 1629 | | { |
| 0 | 1630 | | return GetTopParentIdsForQuery(displayParent, user); |
| | 1631 | | } |
| | 1632 | |
|
| 0 | 1633 | | return []; |
| | 1634 | | } |
| | 1635 | |
|
| | 1636 | | // Handle grouping |
| 0 | 1637 | | if (user is not null && view.ViewType != CollectionType.unknown && UserView.IsEligibleForGrouping(view.V |
| 0 | 1638 | | && user.GetPreference(PreferenceKind.GroupedFolders).Length > 0) |
| | 1639 | | { |
| 0 | 1640 | | return GetUserRootFolder() |
| 0 | 1641 | | .GetChildren(user, true) |
| 0 | 1642 | | .OfType<CollectionFolder>() |
| 0 | 1643 | | .Where(i => i.CollectionType is null || i.CollectionType == view.ViewType) |
| 0 | 1644 | | .Where(i => user.IsFolderGrouped(i.Id)) |
| 0 | 1645 | | .SelectMany(i => GetTopParentIdsForQuery(i, user)); |
| | 1646 | | } |
| | 1647 | |
|
| 0 | 1648 | | return []; |
| | 1649 | | } |
| | 1650 | |
|
| 16 | 1651 | | if (item is CollectionFolder collectionFolder) |
| | 1652 | | { |
| 16 | 1653 | | return collectionFolder.PhysicalFolderIds; |
| | 1654 | | } |
| | 1655 | |
|
| 0 | 1656 | | var topParent = item.GetTopParent(); |
| 0 | 1657 | | if (topParent is not null) |
| | 1658 | | { |
| 0 | 1659 | | return new[] { topParent.Id }; |
| | 1660 | | } |
| | 1661 | |
|
| 0 | 1662 | | return []; |
| | 1663 | | } |
| | 1664 | |
|
| | 1665 | | /// <summary> |
| | 1666 | | /// Gets the intros. |
| | 1667 | | /// </summary> |
| | 1668 | | /// <param name="item">The item.</param> |
| | 1669 | | /// <param name="user">The user.</param> |
| | 1670 | | /// <returns>IEnumerable{System.String}.</returns> |
| | 1671 | | public async Task<IEnumerable<Video>> GetIntros(BaseItem item, User user) |
| | 1672 | | { |
| | 1673 | | if (IntroProviders.Length == 0) |
| | 1674 | | { |
| | 1675 | | return []; |
| | 1676 | | } |
| | 1677 | |
|
| | 1678 | | var tasks = IntroProviders |
| | 1679 | | .Select(i => GetIntros(i, item, user)); |
| | 1680 | |
|
| | 1681 | | var items = await Task.WhenAll(tasks).ConfigureAwait(false); |
| | 1682 | |
|
| | 1683 | | return items |
| | 1684 | | .SelectMany(i => i) |
| | 1685 | | .Select(ResolveIntro) |
| | 1686 | | .Where(i => i is not null)!; // null values got filtered out |
| | 1687 | | } |
| | 1688 | |
|
| | 1689 | | /// <summary> |
| | 1690 | | /// Gets the intros. |
| | 1691 | | /// </summary> |
| | 1692 | | /// <param name="provider">The provider.</param> |
| | 1693 | | /// <param name="item">The item.</param> |
| | 1694 | | /// <param name="user">The user.</param> |
| | 1695 | | /// <returns>Task<IEnumerable<IntroInfo>>.</returns> |
| | 1696 | | private async Task<IEnumerable<IntroInfo>> GetIntros(IIntroProvider provider, BaseItem item, User user) |
| | 1697 | | { |
| | 1698 | | try |
| | 1699 | | { |
| | 1700 | | return await provider.GetIntros(item, user).ConfigureAwait(false); |
| | 1701 | | } |
| | 1702 | | catch (Exception ex) |
| | 1703 | | { |
| | 1704 | | _logger.LogError(ex, "Error getting intros"); |
| | 1705 | |
|
| | 1706 | | return []; |
| | 1707 | | } |
| | 1708 | | } |
| | 1709 | |
|
| | 1710 | | /// <summary> |
| | 1711 | | /// Resolves the intro. |
| | 1712 | | /// </summary> |
| | 1713 | | /// <param name="info">The info.</param> |
| | 1714 | | /// <returns>Video.</returns> |
| | 1715 | | private Video? ResolveIntro(IntroInfo info) |
| | 1716 | | { |
| 0 | 1717 | | Video? video = null; |
| | 1718 | |
|
| 0 | 1719 | | if (info.ItemId.HasValue) |
| | 1720 | | { |
| | 1721 | | // Get an existing item by Id |
| 0 | 1722 | | video = GetItemById(info.ItemId.Value) as Video; |
| | 1723 | |
|
| 0 | 1724 | | if (video is null) |
| | 1725 | | { |
| 0 | 1726 | | _logger.LogError("Unable to locate item with Id {ID}.", info.ItemId.Value); |
| | 1727 | | } |
| | 1728 | | } |
| 0 | 1729 | | else if (!string.IsNullOrEmpty(info.Path)) |
| | 1730 | | { |
| | 1731 | | try |
| | 1732 | | { |
| | 1733 | | // Try to resolve the path into a video |
| 0 | 1734 | | video = ResolvePath(_fileSystem.GetFileSystemInfo(info.Path)) as Video; |
| | 1735 | |
|
| 0 | 1736 | | if (video is null) |
| | 1737 | | { |
| 0 | 1738 | | _logger.LogError("Intro resolver returned null for {Path}.", info.Path); |
| | 1739 | | } |
| | 1740 | | else |
| | 1741 | | { |
| | 1742 | | // Pull the saved db item that will include metadata |
| 0 | 1743 | | var dbItem = GetItemById(video.Id) as Video; |
| | 1744 | |
|
| 0 | 1745 | | if (dbItem is not null) |
| | 1746 | | { |
| 0 | 1747 | | video = dbItem; |
| | 1748 | | } |
| | 1749 | | else |
| | 1750 | | { |
| 0 | 1751 | | return null; |
| | 1752 | | } |
| | 1753 | | } |
| 0 | 1754 | | } |
| 0 | 1755 | | catch (Exception ex) |
| | 1756 | | { |
| 0 | 1757 | | _logger.LogError(ex, "Error resolving path {Path}.", info.Path); |
| 0 | 1758 | | } |
| | 1759 | | } |
| | 1760 | | else |
| | 1761 | | { |
| 0 | 1762 | | _logger.LogError("IntroProvider returned an IntroInfo with null Path and ItemId."); |
| | 1763 | | } |
| | 1764 | |
|
| 0 | 1765 | | return video; |
| 0 | 1766 | | } |
| | 1767 | |
|
| | 1768 | | /// <inheritdoc /> |
| | 1769 | | public IEnumerable<BaseItem> Sort(IEnumerable<BaseItem> items, User? user, IEnumerable<ItemSortBy> sortBy, SortO |
| | 1770 | | { |
| 1 | 1771 | | IOrderedEnumerable<BaseItem>? orderedItems = null; |
| | 1772 | |
|
| 4 | 1773 | | foreach (var orderBy in sortBy.Select(o => GetComparer(o, user)).Where(c => c is not null)) |
| | 1774 | | { |
| 1 | 1775 | | if (orderBy is RandomComparer) |
| | 1776 | | { |
| 0 | 1777 | | var randomItems = items.ToArray(); |
| 0 | 1778 | | Random.Shared.Shuffle(randomItems); |
| 0 | 1779 | | items = randomItems; |
| | 1780 | | // Items are no longer ordered at this point, so set orderedItems back to null |
| 0 | 1781 | | orderedItems = null; |
| | 1782 | | } |
| 1 | 1783 | | else if (orderedItems is null) |
| | 1784 | | { |
| 1 | 1785 | | orderedItems = sortOrder == SortOrder.Descending |
| 1 | 1786 | | ? items.OrderByDescending(i => i, orderBy) |
| 1 | 1787 | | : items.OrderBy(i => i, orderBy); |
| | 1788 | | } |
| | 1789 | | else |
| | 1790 | | { |
| 0 | 1791 | | orderedItems = sortOrder == SortOrder.Descending |
| 0 | 1792 | | ? orderedItems!.ThenByDescending(i => i, orderBy) |
| 0 | 1793 | | : orderedItems!.ThenBy(i => i, orderBy); // orderedItems is set during the first iteration |
| | 1794 | | } |
| | 1795 | | } |
| | 1796 | |
|
| 1 | 1797 | | return orderedItems ?? items; |
| | 1798 | | } |
| | 1799 | |
|
| | 1800 | | /// <inheritdoc /> |
| | 1801 | | public IEnumerable<BaseItem> Sort(IEnumerable<BaseItem> items, User? user, IEnumerable<(ItemSortBy OrderBy, Sort |
| | 1802 | | { |
| 0 | 1803 | | IOrderedEnumerable<BaseItem>? orderedItems = null; |
| | 1804 | |
|
| 0 | 1805 | | foreach (var (name, sortOrder) in orderBy) |
| | 1806 | | { |
| 0 | 1807 | | var comparer = GetComparer(name, user); |
| 0 | 1808 | | if (comparer is null) |
| | 1809 | | { |
| | 1810 | | continue; |
| | 1811 | | } |
| | 1812 | |
|
| 0 | 1813 | | if (comparer is RandomComparer) |
| | 1814 | | { |
| 0 | 1815 | | var randomItems = items.ToArray(); |
| 0 | 1816 | | Random.Shared.Shuffle(randomItems); |
| 0 | 1817 | | items = randomItems; |
| | 1818 | | // Items are no longer ordered at this point, so set orderedItems back to null |
| 0 | 1819 | | orderedItems = null; |
| | 1820 | | } |
| 0 | 1821 | | else if (orderedItems is null) |
| | 1822 | | { |
| 0 | 1823 | | orderedItems = sortOrder == SortOrder.Descending |
| 0 | 1824 | | ? items.OrderByDescending(i => i, comparer) |
| 0 | 1825 | | : items.OrderBy(i => i, comparer); |
| | 1826 | | } |
| | 1827 | | else |
| | 1828 | | { |
| 0 | 1829 | | orderedItems = sortOrder == SortOrder.Descending |
| 0 | 1830 | | ? orderedItems!.ThenByDescending(i => i, comparer) |
| 0 | 1831 | | : orderedItems!.ThenBy(i => i, comparer); // orderedItems is set during the first iteration |
| | 1832 | | } |
| | 1833 | | } |
| | 1834 | |
|
| 0 | 1835 | | return orderedItems ?? items; |
| | 1836 | | } |
| | 1837 | |
|
| | 1838 | | /// <summary> |
| | 1839 | | /// Gets the comparer. |
| | 1840 | | /// </summary> |
| | 1841 | | /// <param name="name">The name.</param> |
| | 1842 | | /// <param name="user">The user.</param> |
| | 1843 | | /// <returns>IBaseItemComparer.</returns> |
| | 1844 | | private IBaseItemComparer? GetComparer(ItemSortBy name, User? user) |
| | 1845 | | { |
| 1 | 1846 | | var comparer = Comparers.FirstOrDefault(c => name == c.Type); |
| | 1847 | |
|
| | 1848 | | // If it requires a user, create a new one, and assign the user |
| 1 | 1849 | | if (comparer is IUserBaseItemComparer) |
| | 1850 | | { |
| 0 | 1851 | | var userComparer = (IUserBaseItemComparer)Activator.CreateInstance(comparer.GetType())!; // only null fo |
| | 1852 | |
|
| 0 | 1853 | | userComparer.User = user; |
| 0 | 1854 | | userComparer.UserManager = _userManager; |
| 0 | 1855 | | userComparer.UserDataRepository = _userDataRepository; |
| | 1856 | |
|
| 0 | 1857 | | return userComparer; |
| | 1858 | | } |
| | 1859 | |
|
| 1 | 1860 | | return comparer; |
| | 1861 | | } |
| | 1862 | |
|
| | 1863 | | /// <inheritdoc /> |
| | 1864 | | public void CreateItem(BaseItem item, BaseItem? parent) |
| | 1865 | | { |
| 0 | 1866 | | CreateItems(new[] { item }, parent, CancellationToken.None); |
| 0 | 1867 | | } |
| | 1868 | |
|
| | 1869 | | /// <inheritdoc /> |
| | 1870 | | public void CreateItems(IReadOnlyList<BaseItem> items, BaseItem? parent, CancellationToken cancellationToken) |
| | 1871 | | { |
| 2 | 1872 | | _itemRepository.SaveItems(items, cancellationToken); |
| | 1873 | |
|
| 8 | 1874 | | foreach (var item in items) |
| | 1875 | | { |
| 2 | 1876 | | RegisterItem(item); |
| | 1877 | | } |
| | 1878 | |
|
| 2 | 1879 | | if (ItemAdded is not null) |
| | 1880 | | { |
| 8 | 1881 | | foreach (var item in items) |
| | 1882 | | { |
| | 1883 | | // With the live tv guide this just creates too much noise |
| 2 | 1884 | | if (item.SourceType != SourceType.Library) |
| | 1885 | | { |
| | 1886 | | continue; |
| | 1887 | | } |
| | 1888 | |
|
| | 1889 | | try |
| | 1890 | | { |
| 2 | 1891 | | ItemAdded( |
| 2 | 1892 | | this, |
| 2 | 1893 | | new ItemChangeEventArgs |
| 2 | 1894 | | { |
| 2 | 1895 | | Item = item, |
| 2 | 1896 | | Parent = parent ?? item.GetParent() |
| 2 | 1897 | | }); |
| 2 | 1898 | | } |
| 0 | 1899 | | catch (Exception ex) |
| | 1900 | | { |
| 0 | 1901 | | _logger.LogError(ex, "Error in ItemAdded event handler"); |
| 0 | 1902 | | } |
| | 1903 | | } |
| | 1904 | | } |
| 2 | 1905 | | } |
| | 1906 | |
|
| | 1907 | | private bool ImageNeedsRefresh(ItemImageInfo image) |
| | 1908 | | { |
| 0 | 1909 | | if (image.Path is not null && image.IsLocalFile) |
| | 1910 | | { |
| 0 | 1911 | | if (image.Width == 0 || image.Height == 0 || string.IsNullOrEmpty(image.BlurHash)) |
| | 1912 | | { |
| 0 | 1913 | | return true; |
| | 1914 | | } |
| | 1915 | |
|
| | 1916 | | try |
| | 1917 | | { |
| 0 | 1918 | | return _fileSystem.GetLastWriteTimeUtc(image.Path) != image.DateModified; |
| | 1919 | | } |
| 0 | 1920 | | catch (Exception ex) |
| | 1921 | | { |
| 0 | 1922 | | _logger.LogError(ex, "Cannot get file info for {0}", image.Path); |
| 0 | 1923 | | return false; |
| | 1924 | | } |
| | 1925 | | } |
| | 1926 | |
|
| 0 | 1927 | | return image.Path is not null && !image.IsLocalFile; |
| 0 | 1928 | | } |
| | 1929 | |
|
| | 1930 | | /// <inheritdoc /> |
| | 1931 | | public async Task UpdateImagesAsync(BaseItem item, bool forceUpdate = false) |
| | 1932 | | { |
| | 1933 | | ArgumentNullException.ThrowIfNull(item); |
| | 1934 | |
|
| | 1935 | | var outdated = forceUpdate |
| | 1936 | | ? item.ImageInfos.Where(i => i.Path is not null).ToArray() |
| | 1937 | | : item.ImageInfos.Where(ImageNeedsRefresh).ToArray(); |
| | 1938 | | // Skip image processing if current or live tv source |
| | 1939 | | if (outdated.Length == 0 || item.SourceType != SourceType.Library) |
| | 1940 | | { |
| | 1941 | | RegisterItem(item); |
| | 1942 | | return; |
| | 1943 | | } |
| | 1944 | |
|
| | 1945 | | foreach (var img in outdated) |
| | 1946 | | { |
| | 1947 | | var image = img; |
| | 1948 | | if (!img.IsLocalFile) |
| | 1949 | | { |
| | 1950 | | try |
| | 1951 | | { |
| | 1952 | | var index = item.GetImageIndex(img); |
| | 1953 | | image = await ConvertImageToLocal(item, img, index, true).ConfigureAwait(false); |
| | 1954 | | } |
| | 1955 | | catch (ArgumentException) |
| | 1956 | | { |
| | 1957 | | _logger.LogWarning("Cannot get image index for {ImagePath}", img.Path); |
| | 1958 | | continue; |
| | 1959 | | } |
| | 1960 | | catch (Exception ex) when (ex is InvalidOperationException or IOException) |
| | 1961 | | { |
| | 1962 | | _logger.LogWarning(ex, "Cannot fetch image from {ImagePath}", img.Path); |
| | 1963 | | continue; |
| | 1964 | | } |
| | 1965 | | catch (HttpRequestException ex) |
| | 1966 | | { |
| | 1967 | | _logger.LogWarning(ex, "Cannot fetch image from {ImagePath}. Http status code: {HttpStatus}", im |
| | 1968 | | continue; |
| | 1969 | | } |
| | 1970 | | } |
| | 1971 | |
|
| | 1972 | | ImageDimensions size; |
| | 1973 | | try |
| | 1974 | | { |
| | 1975 | | size = _imageProcessor.GetImageDimensions(item, image); |
| | 1976 | | image.Width = size.Width; |
| | 1977 | | image.Height = size.Height; |
| | 1978 | | } |
| | 1979 | | catch (Exception ex) |
| | 1980 | | { |
| | 1981 | | _logger.LogError(ex, "Cannot get image dimensions for {ImagePath}", image.Path); |
| | 1982 | | size = default; |
| | 1983 | | image.Width = 0; |
| | 1984 | | image.Height = 0; |
| | 1985 | | } |
| | 1986 | |
|
| | 1987 | | try |
| | 1988 | | { |
| | 1989 | | image.BlurHash = _imageProcessor.GetImageBlurHash(image.Path, size); |
| | 1990 | | } |
| | 1991 | | catch (Exception ex) |
| | 1992 | | { |
| | 1993 | | _logger.LogError(ex, "Cannot compute blurhash for {ImagePath}", image.Path); |
| | 1994 | | image.BlurHash = string.Empty; |
| | 1995 | | } |
| | 1996 | |
|
| | 1997 | | try |
| | 1998 | | { |
| | 1999 | | image.DateModified = _fileSystem.GetLastWriteTimeUtc(image.Path); |
| | 2000 | | } |
| | 2001 | | catch (Exception ex) |
| | 2002 | | { |
| | 2003 | | _logger.LogError(ex, "Cannot update DateModified for {ImagePath}", image.Path); |
| | 2004 | | } |
| | 2005 | | } |
| | 2006 | |
|
| | 2007 | | _itemRepository.SaveImages(item); |
| | 2008 | | RegisterItem(item); |
| | 2009 | | } |
| | 2010 | |
|
| | 2011 | | /// <inheritdoc /> |
| | 2012 | | public async Task UpdateItemsAsync(IReadOnlyList<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, |
| | 2013 | | { |
| | 2014 | | _itemRepository.SaveItems(items, cancellationToken); |
| | 2015 | |
|
| | 2016 | | foreach (var item in items) |
| | 2017 | | { |
| | 2018 | | await RunMetadataSavers(item, updateReason).ConfigureAwait(false); |
| | 2019 | | } |
| | 2020 | |
|
| | 2021 | | if (ItemUpdated is not null) |
| | 2022 | | { |
| | 2023 | | foreach (var item in items) |
| | 2024 | | { |
| | 2025 | | // With the live tv guide this just creates too much noise |
| | 2026 | | if (item.SourceType != SourceType.Library) |
| | 2027 | | { |
| | 2028 | | continue; |
| | 2029 | | } |
| | 2030 | |
|
| | 2031 | | try |
| | 2032 | | { |
| | 2033 | | ItemUpdated( |
| | 2034 | | this, |
| | 2035 | | new ItemChangeEventArgs |
| | 2036 | | { |
| | 2037 | | Item = item, |
| | 2038 | | Parent = parent, |
| | 2039 | | UpdateReason = updateReason |
| | 2040 | | }); |
| | 2041 | | } |
| | 2042 | | catch (Exception ex) |
| | 2043 | | { |
| | 2044 | | _logger.LogError(ex, "Error in ItemUpdated event handler"); |
| | 2045 | | } |
| | 2046 | | } |
| | 2047 | | } |
| | 2048 | | } |
| | 2049 | |
|
| | 2050 | | /// <inheritdoc /> |
| | 2051 | | public Task UpdateItemAsync(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cance |
| 79 | 2052 | | => UpdateItemsAsync(new[] { item }, parent, updateReason, cancellationToken); |
| | 2053 | |
|
| | 2054 | | public async Task RunMetadataSavers(BaseItem item, ItemUpdateType updateReason) |
| | 2055 | | { |
| | 2056 | | if (item.IsFileProtocol) |
| | 2057 | | { |
| | 2058 | | await ProviderManager.SaveMetadataAsync(item, updateReason).ConfigureAwait(false); |
| | 2059 | | } |
| | 2060 | |
|
| | 2061 | | item.DateLastSaved = DateTime.UtcNow; |
| | 2062 | |
|
| | 2063 | | await UpdateImagesAsync(item, updateReason >= ItemUpdateType.ImageUpdate).ConfigureAwait(false); |
| | 2064 | | } |
| | 2065 | |
|
| | 2066 | | /// <summary> |
| | 2067 | | /// Reports the item removed. |
| | 2068 | | /// </summary> |
| | 2069 | | /// <param name="item">The item.</param> |
| | 2070 | | /// <param name="parent">The parent item.</param> |
| | 2071 | | public void ReportItemRemoved(BaseItem item, BaseItem parent) |
| | 2072 | | { |
| 2 | 2073 | | if (ItemRemoved is not null) |
| | 2074 | | { |
| | 2075 | | try |
| | 2076 | | { |
| 2 | 2077 | | ItemRemoved( |
| 2 | 2078 | | this, |
| 2 | 2079 | | new ItemChangeEventArgs |
| 2 | 2080 | | { |
| 2 | 2081 | | Item = item, |
| 2 | 2082 | | Parent = parent |
| 2 | 2083 | | }); |
| 2 | 2084 | | } |
| 0 | 2085 | | catch (Exception ex) |
| | 2086 | | { |
| 0 | 2087 | | _logger.LogError(ex, "Error in ItemRemoved event handler"); |
| 0 | 2088 | | } |
| | 2089 | | } |
| 2 | 2090 | | } |
| | 2091 | |
|
| | 2092 | | /// <summary> |
| | 2093 | | /// Retrieves the item. |
| | 2094 | | /// </summary> |
| | 2095 | | /// <param name="id">The id.</param> |
| | 2096 | | /// <returns>BaseItem.</returns> |
| | 2097 | | public BaseItem RetrieveItem(Guid id) |
| | 2098 | | { |
| 231 | 2099 | | return _itemRepository.RetrieveItem(id); |
| | 2100 | | } |
| | 2101 | |
|
| | 2102 | | public List<Folder> GetCollectionFolders(BaseItem item) |
| | 2103 | | { |
| 625 | 2104 | | return GetCollectionFolders(item, GetUserRootFolder().Children.OfType<Folder>()); |
| | 2105 | | } |
| | 2106 | |
|
| | 2107 | | public List<Folder> GetCollectionFolders(BaseItem item, IEnumerable<Folder> allUserRootChildren) |
| | 2108 | | { |
| 669 | 2109 | | while (item is not null) |
| | 2110 | | { |
| 669 | 2111 | | var parent = item.GetParent(); |
| | 2112 | |
|
| 669 | 2113 | | if (parent is AggregateFolder) |
| | 2114 | | { |
| | 2115 | | break; |
| | 2116 | | } |
| | 2117 | |
|
| 646 | 2118 | | if (parent is null) |
| | 2119 | | { |
| 602 | 2120 | | var owner = item.GetOwner(); |
| | 2121 | |
|
| 602 | 2122 | | if (owner is null) |
| | 2123 | | { |
| | 2124 | | break; |
| | 2125 | | } |
| | 2126 | |
|
| 0 | 2127 | | item = owner; |
| | 2128 | | } |
| | 2129 | | else |
| | 2130 | | { |
| 44 | 2131 | | item = parent; |
| | 2132 | | } |
| | 2133 | | } |
| | 2134 | |
|
| 625 | 2135 | | if (item is null) |
| | 2136 | | { |
| 0 | 2137 | | return new List<Folder>(); |
| | 2138 | | } |
| | 2139 | |
|
| 625 | 2140 | | return GetCollectionFoldersInternal(item, allUserRootChildren); |
| | 2141 | | } |
| | 2142 | |
|
| | 2143 | | private static List<Folder> GetCollectionFoldersInternal(BaseItem item, IEnumerable<Folder> allUserRootChildren) |
| | 2144 | | { |
| 625 | 2145 | | return allUserRootChildren |
| 625 | 2146 | | .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations. |
| 625 | 2147 | | .ToList(); |
| | 2148 | | } |
| | 2149 | |
|
| | 2150 | | public LibraryOptions GetLibraryOptions(BaseItem item) |
| | 2151 | | { |
| 415 | 2152 | | if (item is CollectionFolder collectionFolder) |
| | 2153 | | { |
| 69 | 2154 | | return collectionFolder.GetLibraryOptions(); |
| | 2155 | | } |
| | 2156 | |
|
| | 2157 | | // List.Find is more performant than FirstOrDefault due to enumerator allocation |
| 346 | 2158 | | return GetCollectionFolders(item) |
| 346 | 2159 | | .Find(folder => folder is CollectionFolder) is CollectionFolder collectionFolder2 |
| 346 | 2160 | | ? collectionFolder2.GetLibraryOptions() |
| 346 | 2161 | | : new LibraryOptions(); |
| | 2162 | | } |
| | 2163 | |
|
| | 2164 | | public CollectionType? GetContentType(BaseItem item) |
| | 2165 | | { |
| 40 | 2166 | | var configuredContentType = GetConfiguredContentType(item, false); |
| 40 | 2167 | | if (configuredContentType is not null) |
| | 2168 | | { |
| 0 | 2169 | | return configuredContentType; |
| | 2170 | | } |
| | 2171 | |
|
| 40 | 2172 | | configuredContentType = GetConfiguredContentType(item, true); |
| 40 | 2173 | | if (configuredContentType is not null) |
| | 2174 | | { |
| 0 | 2175 | | return configuredContentType; |
| | 2176 | | } |
| | 2177 | |
|
| 40 | 2178 | | return GetInheritedContentType(item); |
| | 2179 | | } |
| | 2180 | |
|
| | 2181 | | public CollectionType? GetInheritedContentType(BaseItem item) |
| | 2182 | | { |
| 40 | 2183 | | var type = GetTopFolderContentType(item); |
| | 2184 | |
|
| 40 | 2185 | | if (type is not null) |
| | 2186 | | { |
| 0 | 2187 | | return type; |
| | 2188 | | } |
| | 2189 | |
|
| 40 | 2190 | | return item.GetParents() |
| 40 | 2191 | | .Select(GetConfiguredContentType) |
| 40 | 2192 | | .LastOrDefault(i => i is not null); |
| | 2193 | | } |
| | 2194 | |
|
| | 2195 | | public CollectionType? GetConfiguredContentType(BaseItem item) |
| | 2196 | | { |
| 0 | 2197 | | return GetConfiguredContentType(item, false); |
| | 2198 | | } |
| | 2199 | |
|
| | 2200 | | public CollectionType? GetConfiguredContentType(string path) |
| | 2201 | | { |
| 0 | 2202 | | return GetContentTypeOverride(path, false); |
| | 2203 | | } |
| | 2204 | |
|
| | 2205 | | public CollectionType? GetConfiguredContentType(BaseItem item, bool inheritConfiguredPath) |
| | 2206 | | { |
| 80 | 2207 | | if (item is ICollectionFolder collectionFolder) |
| | 2208 | | { |
| 0 | 2209 | | return collectionFolder.CollectionType; |
| | 2210 | | } |
| | 2211 | |
|
| 80 | 2212 | | return GetContentTypeOverride(item.ContainingFolderPath, inheritConfiguredPath); |
| | 2213 | | } |
| | 2214 | |
|
| | 2215 | | private CollectionType? GetContentTypeOverride(string path, bool inherit) |
| | 2216 | | { |
| 100 | 2217 | | var nameValuePair = _configurationManager.Configuration.ContentTypes |
| 100 | 2218 | | .FirstOrDefault(i => _fileSystem.AreEqual(i.Name, path) |
| 100 | 2219 | | || (inherit && !string.IsNullOrEmpty(i.Name) |
| 100 | 2220 | | && _fileSystem.ContainsSubPath(i.Name, path))); |
| 100 | 2221 | | if (Enum.TryParse<CollectionType>(nameValuePair?.Value, out var collectionType)) |
| | 2222 | | { |
| 0 | 2223 | | return collectionType; |
| | 2224 | | } |
| | 2225 | |
|
| 100 | 2226 | | return null; |
| | 2227 | | } |
| | 2228 | |
|
| | 2229 | | private CollectionType? GetTopFolderContentType(BaseItem item) |
| | 2230 | | { |
| 40 | 2231 | | if (item is null) |
| | 2232 | | { |
| 0 | 2233 | | return null; |
| | 2234 | | } |
| | 2235 | |
|
| 40 | 2236 | | while (!item.ParentId.IsEmpty()) |
| | 2237 | | { |
| 0 | 2238 | | var parent = item.GetParent(); |
| 0 | 2239 | | if (parent is null || parent is AggregateFolder) |
| | 2240 | | { |
| | 2241 | | break; |
| | 2242 | | } |
| | 2243 | |
|
| 0 | 2244 | | item = parent; |
| | 2245 | | } |
| | 2246 | |
|
| 40 | 2247 | | return GetUserRootFolder().Children |
| 40 | 2248 | | .OfType<ICollectionFolder>() |
| 40 | 2249 | | .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations. |
| 40 | 2250 | | .Select(i => i.CollectionType) |
| 40 | 2251 | | .FirstOrDefault(i => i is not null); |
| | 2252 | | } |
| | 2253 | |
|
| | 2254 | | public UserView GetNamedView( |
| | 2255 | | User user, |
| | 2256 | | string name, |
| | 2257 | | CollectionType? viewType, |
| | 2258 | | string sortName) |
| | 2259 | | { |
| 0 | 2260 | | return GetNamedView(user, name, Guid.Empty, viewType, sortName); |
| | 2261 | | } |
| | 2262 | |
|
| | 2263 | | public UserView GetNamedView( |
| | 2264 | | string name, |
| | 2265 | | CollectionType viewType, |
| | 2266 | | string sortName) |
| | 2267 | | { |
| 0 | 2268 | | var path = Path.Combine( |
| 0 | 2269 | | _configurationManager.ApplicationPaths.InternalMetadataPath, |
| 0 | 2270 | | "views", |
| 0 | 2271 | | _fileSystem.GetValidFilename(viewType.ToString())); |
| | 2272 | |
|
| 0 | 2273 | | var id = GetNewItemId(path + "_namedview_" + name, typeof(UserView)); |
| | 2274 | |
|
| 0 | 2275 | | var item = GetItemById(id) as UserView; |
| | 2276 | |
|
| 0 | 2277 | | var refresh = false; |
| | 2278 | |
|
| 0 | 2279 | | if (item is null || !string.Equals(item.Path, path, StringComparison.OrdinalIgnoreCase)) |
| | 2280 | | { |
| 0 | 2281 | | Directory.CreateDirectory(path); |
| | 2282 | |
|
| 0 | 2283 | | item = new UserView |
| 0 | 2284 | | { |
| 0 | 2285 | | Path = path, |
| 0 | 2286 | | Id = id, |
| 0 | 2287 | | DateCreated = DateTime.UtcNow, |
| 0 | 2288 | | Name = name, |
| 0 | 2289 | | ViewType = viewType, |
| 0 | 2290 | | ForcedSortName = sortName |
| 0 | 2291 | | }; |
| | 2292 | |
|
| 0 | 2293 | | CreateItem(item, null); |
| | 2294 | |
|
| 0 | 2295 | | refresh = true; |
| | 2296 | | } |
| | 2297 | |
|
| 0 | 2298 | | if (refresh) |
| | 2299 | | { |
| 0 | 2300 | | item.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, CancellationToken.None).GetAwaiter().GetResu |
| 0 | 2301 | | ProviderManager.QueueRefresh(item.Id, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), Ref |
| | 2302 | | } |
| | 2303 | |
|
| 0 | 2304 | | return item; |
| | 2305 | | } |
| | 2306 | |
|
| | 2307 | | public UserView GetNamedView( |
| | 2308 | | User user, |
| | 2309 | | string name, |
| | 2310 | | Guid parentId, |
| | 2311 | | CollectionType? viewType, |
| | 2312 | | string sortName) |
| | 2313 | | { |
| 0 | 2314 | | var parentIdString = parentId.IsEmpty() |
| 0 | 2315 | | ? null |
| 0 | 2316 | | : parentId.ToString("N", CultureInfo.InvariantCulture); |
| 0 | 2317 | | var idValues = "38_namedview_" + name + user.Id.ToString("N", CultureInfo.InvariantCulture) + (parentIdStrin |
| | 2318 | |
|
| 0 | 2319 | | var id = GetNewItemId(idValues, typeof(UserView)); |
| | 2320 | |
|
| 0 | 2321 | | var path = Path.Combine(_configurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N |
| | 2322 | |
|
| 0 | 2323 | | var item = GetItemById(id) as UserView; |
| | 2324 | |
|
| 0 | 2325 | | var isNew = false; |
| | 2326 | |
|
| 0 | 2327 | | if (item is null) |
| | 2328 | | { |
| 0 | 2329 | | Directory.CreateDirectory(path); |
| | 2330 | |
|
| 0 | 2331 | | item = new UserView |
| 0 | 2332 | | { |
| 0 | 2333 | | Path = path, |
| 0 | 2334 | | Id = id, |
| 0 | 2335 | | DateCreated = DateTime.UtcNow, |
| 0 | 2336 | | Name = name, |
| 0 | 2337 | | ViewType = viewType, |
| 0 | 2338 | | ForcedSortName = sortName, |
| 0 | 2339 | | UserId = user.Id, |
| 0 | 2340 | | DisplayParentId = parentId |
| 0 | 2341 | | }; |
| | 2342 | |
|
| 0 | 2343 | | CreateItem(item, null); |
| | 2344 | |
|
| 0 | 2345 | | isNew = true; |
| | 2346 | | } |
| | 2347 | |
|
| 0 | 2348 | | var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval; |
| | 2349 | |
|
| 0 | 2350 | | if (!refresh && !item.DisplayParentId.IsEmpty()) |
| | 2351 | | { |
| 0 | 2352 | | var displayParent = GetItemById(item.DisplayParentId); |
| 0 | 2353 | | refresh = displayParent is not null && displayParent.DateLastSaved > item.DateLastRefreshed; |
| | 2354 | | } |
| | 2355 | |
|
| 0 | 2356 | | if (refresh) |
| | 2357 | | { |
| 0 | 2358 | | ProviderManager.QueueRefresh( |
| 0 | 2359 | | item.Id, |
| 0 | 2360 | | new MetadataRefreshOptions(new DirectoryService(_fileSystem)) |
| 0 | 2361 | | { |
| 0 | 2362 | | // Need to force save to increment DateLastSaved |
| 0 | 2363 | | ForceSave = true |
| 0 | 2364 | | }, |
| 0 | 2365 | | RefreshPriority.Normal); |
| | 2366 | | } |
| | 2367 | |
|
| 0 | 2368 | | return item; |
| | 2369 | | } |
| | 2370 | |
|
| | 2371 | | public UserView GetShadowView( |
| | 2372 | | BaseItem parent, |
| | 2373 | | CollectionType? viewType, |
| | 2374 | | string sortName) |
| | 2375 | | { |
| 0 | 2376 | | ArgumentNullException.ThrowIfNull(parent); |
| | 2377 | |
|
| 0 | 2378 | | var name = parent.Name; |
| 0 | 2379 | | var parentId = parent.Id; |
| | 2380 | |
|
| 0 | 2381 | | var idValues = "38_namedview_" + name + parentId + (viewType?.ToString() ?? string.Empty); |
| | 2382 | |
|
| 0 | 2383 | | var id = GetNewItemId(idValues, typeof(UserView)); |
| | 2384 | |
|
| 0 | 2385 | | var path = parent.Path; |
| | 2386 | |
|
| 0 | 2387 | | var item = GetItemById(id) as UserView; |
| | 2388 | |
|
| 0 | 2389 | | var isNew = false; |
| | 2390 | |
|
| 0 | 2391 | | if (item is null) |
| | 2392 | | { |
| 0 | 2393 | | Directory.CreateDirectory(path); |
| | 2394 | |
|
| 0 | 2395 | | item = new UserView |
| 0 | 2396 | | { |
| 0 | 2397 | | Path = path, |
| 0 | 2398 | | Id = id, |
| 0 | 2399 | | DateCreated = DateTime.UtcNow, |
| 0 | 2400 | | Name = name, |
| 0 | 2401 | | ViewType = viewType, |
| 0 | 2402 | | ForcedSortName = sortName |
| 0 | 2403 | | }; |
| | 2404 | |
|
| 0 | 2405 | | item.DisplayParentId = parentId; |
| | 2406 | |
|
| 0 | 2407 | | CreateItem(item, null); |
| | 2408 | |
|
| 0 | 2409 | | isNew = true; |
| | 2410 | | } |
| | 2411 | |
|
| 0 | 2412 | | var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval; |
| | 2413 | |
|
| 0 | 2414 | | if (!refresh && !item.DisplayParentId.IsEmpty()) |
| | 2415 | | { |
| 0 | 2416 | | var displayParent = GetItemById(item.DisplayParentId); |
| 0 | 2417 | | refresh = displayParent is not null && displayParent.DateLastSaved > item.DateLastRefreshed; |
| | 2418 | | } |
| | 2419 | |
|
| 0 | 2420 | | if (refresh) |
| | 2421 | | { |
| 0 | 2422 | | ProviderManager.QueueRefresh( |
| 0 | 2423 | | item.Id, |
| 0 | 2424 | | new MetadataRefreshOptions(new DirectoryService(_fileSystem)) |
| 0 | 2425 | | { |
| 0 | 2426 | | // Need to force save to increment DateLastSaved |
| 0 | 2427 | | ForceSave = true |
| 0 | 2428 | | }, |
| 0 | 2429 | | RefreshPriority.Normal); |
| | 2430 | | } |
| | 2431 | |
|
| 0 | 2432 | | return item; |
| | 2433 | | } |
| | 2434 | |
|
| | 2435 | | public UserView GetNamedView( |
| | 2436 | | string name, |
| | 2437 | | Guid parentId, |
| | 2438 | | CollectionType? viewType, |
| | 2439 | | string sortName, |
| | 2440 | | string uniqueId) |
| | 2441 | | { |
| 0 | 2442 | | ArgumentException.ThrowIfNullOrEmpty(name); |
| | 2443 | |
|
| 0 | 2444 | | var parentIdString = parentId.IsEmpty() |
| 0 | 2445 | | ? null |
| 0 | 2446 | | : parentId.ToString("N", CultureInfo.InvariantCulture); |
| 0 | 2447 | | var idValues = "37_namedview_" + name + (parentIdString ?? string.Empty) + (viewType?.ToString() ?? string.E |
| 0 | 2448 | | if (!string.IsNullOrEmpty(uniqueId)) |
| | 2449 | | { |
| 0 | 2450 | | idValues += uniqueId; |
| | 2451 | | } |
| | 2452 | |
|
| 0 | 2453 | | var id = GetNewItemId(idValues, typeof(UserView)); |
| | 2454 | |
|
| 0 | 2455 | | var path = Path.Combine(_configurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N |
| | 2456 | |
|
| 0 | 2457 | | var item = GetItemById(id) as UserView; |
| | 2458 | |
|
| 0 | 2459 | | var isNew = false; |
| | 2460 | |
|
| 0 | 2461 | | if (item is null) |
| | 2462 | | { |
| 0 | 2463 | | Directory.CreateDirectory(path); |
| | 2464 | |
|
| 0 | 2465 | | item = new UserView |
| 0 | 2466 | | { |
| 0 | 2467 | | Path = path, |
| 0 | 2468 | | Id = id, |
| 0 | 2469 | | DateCreated = DateTime.UtcNow, |
| 0 | 2470 | | Name = name, |
| 0 | 2471 | | ViewType = viewType, |
| 0 | 2472 | | ForcedSortName = sortName |
| 0 | 2473 | | }; |
| | 2474 | |
|
| 0 | 2475 | | item.DisplayParentId = parentId; |
| | 2476 | |
|
| 0 | 2477 | | CreateItem(item, null); |
| | 2478 | |
|
| 0 | 2479 | | isNew = true; |
| | 2480 | | } |
| | 2481 | |
|
| 0 | 2482 | | if (viewType != item.ViewType) |
| | 2483 | | { |
| 0 | 2484 | | item.ViewType = viewType; |
| 0 | 2485 | | item.UpdateToRepositoryAsync(ItemUpdateType.MetadataEdit, CancellationToken.None).GetAwaiter().GetResult |
| | 2486 | | } |
| | 2487 | |
|
| 0 | 2488 | | var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval; |
| | 2489 | |
|
| 0 | 2490 | | if (!refresh && !item.DisplayParentId.IsEmpty()) |
| | 2491 | | { |
| 0 | 2492 | | var displayParent = GetItemById(item.DisplayParentId); |
| 0 | 2493 | | refresh = displayParent is not null && displayParent.DateLastSaved > item.DateLastRefreshed; |
| | 2494 | | } |
| | 2495 | |
|
| 0 | 2496 | | if (refresh) |
| | 2497 | | { |
| 0 | 2498 | | ProviderManager.QueueRefresh( |
| 0 | 2499 | | item.Id, |
| 0 | 2500 | | new MetadataRefreshOptions(new DirectoryService(_fileSystem)) |
| 0 | 2501 | | { |
| 0 | 2502 | | // Need to force save to increment DateLastSaved |
| 0 | 2503 | | ForceSave = true |
| 0 | 2504 | | }, |
| 0 | 2505 | | RefreshPriority.Normal); |
| | 2506 | | } |
| | 2507 | |
|
| 0 | 2508 | | return item; |
| | 2509 | | } |
| | 2510 | |
|
| | 2511 | | public BaseItem GetParentItem(Guid? parentId, Guid? userId) |
| | 2512 | | { |
| 3 | 2513 | | if (parentId.HasValue) |
| | 2514 | | { |
| 0 | 2515 | | return GetItemById(parentId.Value) ?? throw new ArgumentException($"Invalid parent id: {parentId.Value}" |
| | 2516 | | } |
| | 2517 | |
|
| 3 | 2518 | | if (!userId.IsNullOrEmpty()) |
| | 2519 | | { |
| 3 | 2520 | | return GetUserRootFolder(); |
| | 2521 | | } |
| | 2522 | |
|
| 0 | 2523 | | return RootFolder; |
| | 2524 | | } |
| | 2525 | |
|
| | 2526 | | /// <inheritdoc /> |
| | 2527 | | public void QueueLibraryScan() |
| | 2528 | | { |
| 0 | 2529 | | _taskManager.QueueScheduledTask<RefreshMediaLibraryTask>(); |
| 0 | 2530 | | } |
| | 2531 | |
|
| | 2532 | | /// <inheritdoc /> |
| | 2533 | | public int? GetSeasonNumberFromPath(string path, Guid? parentId) |
| | 2534 | | { |
| 0 | 2535 | | var parentPath = parentId.HasValue ? GetItemById(parentId.Value)?.ContainingFolderPath : null; |
| 0 | 2536 | | return SeasonPathParser.Parse(path, parentPath, true, true).SeasonNumber; |
| | 2537 | | } |
| | 2538 | |
|
| | 2539 | | /// <inheritdoc /> |
| | 2540 | | public bool FillMissingEpisodeNumbersFromPath(Episode episode, bool forceRefresh) |
| | 2541 | | { |
| 0 | 2542 | | var series = episode.Series; |
| 0 | 2543 | | bool? isAbsoluteNaming = series is not null && string.Equals(series.DisplayOrder, "absolute", StringComparis |
| 0 | 2544 | | if (!isAbsoluteNaming.Value) |
| | 2545 | | { |
| | 2546 | | // In other words, no filter applied |
| 0 | 2547 | | isAbsoluteNaming = null; |
| | 2548 | | } |
| | 2549 | |
|
| 0 | 2550 | | var resolver = new EpisodeResolver(_namingOptions); |
| | 2551 | |
|
| 0 | 2552 | | var isFolder = episode.VideoType == VideoType.BluRay || episode.VideoType == VideoType.Dvd; |
| | 2553 | |
|
| | 2554 | | // TODO nullable - what are we trying to do there with empty episodeInfo? |
| 0 | 2555 | | EpisodeInfo? episodeInfo = null; |
| 0 | 2556 | | if (episode.IsFileProtocol) |
| | 2557 | | { |
| 0 | 2558 | | episodeInfo = resolver.Resolve(episode.Path, isFolder, null, null, isAbsoluteNaming); |
| | 2559 | | // Resolve from parent folder if it's not the Season folder |
| 0 | 2560 | | var parent = episode.GetParent(); |
| 0 | 2561 | | if (episodeInfo is null && parent.GetType() == typeof(Folder)) |
| | 2562 | | { |
| 0 | 2563 | | episodeInfo = resolver.Resolve(parent.Path, true, null, null, isAbsoluteNaming); |
| 0 | 2564 | | if (episodeInfo is not null) |
| | 2565 | | { |
| | 2566 | | // add the container |
| 0 | 2567 | | episodeInfo.Container = Path.GetExtension(episode.Path)?.TrimStart('.'); |
| | 2568 | | } |
| | 2569 | | } |
| | 2570 | | } |
| | 2571 | |
|
| 0 | 2572 | | episodeInfo ??= new EpisodeInfo(episode.Path); |
| | 2573 | |
|
| | 2574 | | try |
| | 2575 | | { |
| 0 | 2576 | | var libraryOptions = GetLibraryOptions(episode); |
| 0 | 2577 | | if (libraryOptions.EnableEmbeddedEpisodeInfos && string.Equals(episodeInfo.Container, "mp4", StringCompa |
| | 2578 | | { |
| | 2579 | | // Read from metadata |
| 0 | 2580 | | var mediaInfo = _mediaEncoder.GetMediaInfo( |
| 0 | 2581 | | new MediaInfoRequest |
| 0 | 2582 | | { |
| 0 | 2583 | | MediaSource = episode.GetMediaSources(false)[0], |
| 0 | 2584 | | MediaType = DlnaProfileType.Video |
| 0 | 2585 | | }, |
| 0 | 2586 | | CancellationToken.None).GetAwaiter().GetResult(); |
| 0 | 2587 | | if (mediaInfo.ParentIndexNumber > 0) |
| | 2588 | | { |
| 0 | 2589 | | episodeInfo.SeasonNumber = mediaInfo.ParentIndexNumber; |
| | 2590 | | } |
| | 2591 | |
|
| 0 | 2592 | | if (mediaInfo.IndexNumber > 0) |
| | 2593 | | { |
| 0 | 2594 | | episodeInfo.EpisodeNumber = mediaInfo.IndexNumber; |
| | 2595 | | } |
| | 2596 | |
|
| 0 | 2597 | | if (!string.IsNullOrEmpty(mediaInfo.ShowName)) |
| | 2598 | | { |
| 0 | 2599 | | episodeInfo.SeriesName = mediaInfo.ShowName; |
| | 2600 | | } |
| | 2601 | | } |
| 0 | 2602 | | } |
| 0 | 2603 | | catch (Exception ex) |
| | 2604 | | { |
| 0 | 2605 | | _logger.LogError(ex, "Error reading the episode information with ffprobe. Episode: {EpisodeInfo}", episo |
| 0 | 2606 | | } |
| | 2607 | |
|
| 0 | 2608 | | var changed = false; |
| | 2609 | |
|
| 0 | 2610 | | if (episodeInfo.IsByDate) |
| | 2611 | | { |
| 0 | 2612 | | if (episode.IndexNumber.HasValue) |
| | 2613 | | { |
| 0 | 2614 | | episode.IndexNumber = null; |
| 0 | 2615 | | changed = true; |
| | 2616 | | } |
| | 2617 | |
|
| 0 | 2618 | | if (episode.IndexNumberEnd.HasValue) |
| | 2619 | | { |
| 0 | 2620 | | episode.IndexNumberEnd = null; |
| 0 | 2621 | | changed = true; |
| | 2622 | | } |
| | 2623 | |
|
| 0 | 2624 | | if (!episode.PremiereDate.HasValue) |
| | 2625 | | { |
| 0 | 2626 | | if (episodeInfo.Year.HasValue && episodeInfo.Month.HasValue && episodeInfo.Day.HasValue) |
| | 2627 | | { |
| 0 | 2628 | | episode.PremiereDate = new DateTime(episodeInfo.Year.Value, episodeInfo.Month.Value, episodeInfo |
| | 2629 | | } |
| | 2630 | |
|
| 0 | 2631 | | if (episode.PremiereDate.HasValue) |
| | 2632 | | { |
| 0 | 2633 | | changed = true; |
| | 2634 | | } |
| | 2635 | | } |
| | 2636 | |
|
| 0 | 2637 | | if (!episode.ProductionYear.HasValue) |
| | 2638 | | { |
| 0 | 2639 | | episode.ProductionYear = episodeInfo.Year; |
| | 2640 | |
|
| 0 | 2641 | | if (episode.ProductionYear.HasValue) |
| | 2642 | | { |
| 0 | 2643 | | changed = true; |
| | 2644 | | } |
| | 2645 | | } |
| | 2646 | | } |
| | 2647 | | else |
| | 2648 | | { |
| 0 | 2649 | | if (!episode.IndexNumber.HasValue || forceRefresh) |
| | 2650 | | { |
| 0 | 2651 | | if (episode.IndexNumber != episodeInfo.EpisodeNumber) |
| | 2652 | | { |
| 0 | 2653 | | changed = true; |
| | 2654 | | } |
| | 2655 | |
|
| 0 | 2656 | | episode.IndexNumber = episodeInfo.EpisodeNumber; |
| | 2657 | | } |
| | 2658 | |
|
| 0 | 2659 | | if (!episode.IndexNumberEnd.HasValue || forceRefresh) |
| | 2660 | | { |
| 0 | 2661 | | if (episode.IndexNumberEnd != episodeInfo.EndingEpisodeNumber) |
| | 2662 | | { |
| 0 | 2663 | | changed = true; |
| | 2664 | | } |
| | 2665 | |
|
| 0 | 2666 | | episode.IndexNumberEnd = episodeInfo.EndingEpisodeNumber; |
| | 2667 | | } |
| | 2668 | |
|
| 0 | 2669 | | if (!episode.ParentIndexNumber.HasValue || forceRefresh) |
| | 2670 | | { |
| 0 | 2671 | | if (episode.ParentIndexNumber != episodeInfo.SeasonNumber) |
| | 2672 | | { |
| 0 | 2673 | | changed = true; |
| | 2674 | | } |
| | 2675 | |
|
| 0 | 2676 | | episode.ParentIndexNumber = episodeInfo.SeasonNumber; |
| | 2677 | | } |
| | 2678 | | } |
| | 2679 | |
|
| 0 | 2680 | | if (!episode.ParentIndexNumber.HasValue) |
| | 2681 | | { |
| 0 | 2682 | | var season = episode.Season; |
| | 2683 | |
|
| 0 | 2684 | | if (season is not null) |
| | 2685 | | { |
| 0 | 2686 | | episode.ParentIndexNumber = season.IndexNumber; |
| | 2687 | | } |
| | 2688 | |
|
| 0 | 2689 | | if (episode.ParentIndexNumber.HasValue) |
| | 2690 | | { |
| 0 | 2691 | | changed = true; |
| | 2692 | | } |
| | 2693 | | } |
| | 2694 | |
|
| 0 | 2695 | | return changed; |
| | 2696 | | } |
| | 2697 | |
|
| | 2698 | | public ItemLookupInfo ParseName(string name) |
| | 2699 | | { |
| 0 | 2700 | | var namingOptions = _namingOptions; |
| 0 | 2701 | | var result = VideoResolver.CleanDateTime(name, namingOptions); |
| | 2702 | |
|
| 0 | 2703 | | return new ItemLookupInfo |
| 0 | 2704 | | { |
| 0 | 2705 | | Name = VideoResolver.TryCleanString(result.Name, namingOptions, out var newName) ? newName : result.Name |
| 0 | 2706 | | Year = result.Year |
| 0 | 2707 | | }; |
| | 2708 | | } |
| | 2709 | |
|
| | 2710 | | public IEnumerable<BaseItem> FindExtras(BaseItem owner, IReadOnlyList<FileSystemMetadata> fileSystemChildren, ID |
| | 2711 | | { |
| | 2712 | | var ownerVideoInfo = VideoResolver.Resolve(owner.Path, owner.IsFolder, _namingOptions, libraryRoot: owner.Co |
| | 2713 | | if (ownerVideoInfo is null) |
| | 2714 | | { |
| | 2715 | | yield break; |
| | 2716 | | } |
| | 2717 | |
|
| | 2718 | | var count = fileSystemChildren.Count; |
| | 2719 | | for (var i = 0; i < count; i++) |
| | 2720 | | { |
| | 2721 | | var current = fileSystemChildren[i]; |
| | 2722 | | if (current.IsDirectory && _namingOptions.AllExtrasTypesFolderNames.ContainsKey(current.Name)) |
| | 2723 | | { |
| | 2724 | | var filesInSubFolder = _fileSystem.GetFiles(current.FullName, null, false, false); |
| | 2725 | | foreach (var file in filesInSubFolder) |
| | 2726 | | { |
| | 2727 | | if (!_extraResolver.TryGetExtraTypeForOwner(file.FullName, ownerVideoInfo, out var extraType)) |
| | 2728 | | { |
| | 2729 | | continue; |
| | 2730 | | } |
| | 2731 | |
|
| | 2732 | | var extra = GetExtra(file, extraType.Value); |
| | 2733 | | if (extra is not null) |
| | 2734 | | { |
| | 2735 | | yield return extra; |
| | 2736 | | } |
| | 2737 | | } |
| | 2738 | | } |
| | 2739 | | else if (!current.IsDirectory && _extraResolver.TryGetExtraTypeForOwner(current.FullName, ownerVideoInfo |
| | 2740 | | { |
| | 2741 | | var extra = GetExtra(current, extraType.Value); |
| | 2742 | | if (extra is not null) |
| | 2743 | | { |
| | 2744 | | yield return extra; |
| | 2745 | | } |
| | 2746 | | } |
| | 2747 | | } |
| | 2748 | |
|
| | 2749 | | BaseItem? GetExtra(FileSystemMetadata file, ExtraType extraType) |
| | 2750 | | { |
| | 2751 | | var extra = ResolvePath(_fileSystem.GetFileInfo(file.FullName), directoryService, _extraResolver.GetReso |
| | 2752 | | if (extra is not Video && extra is not Audio) |
| | 2753 | | { |
| | 2754 | | return null; |
| | 2755 | | } |
| | 2756 | |
|
| | 2757 | | // Try to retrieve it from the db. If we don't find it, use the resolved version |
| | 2758 | | var itemById = GetItemById(extra.Id); |
| | 2759 | | if (itemById is not null) |
| | 2760 | | { |
| | 2761 | | extra = itemById; |
| | 2762 | | } |
| | 2763 | |
|
| | 2764 | | // Only update extra type if it is more specific then the currently known extra type |
| | 2765 | | if (extra.ExtraType is null or ExtraType.Unknown || extraType != ExtraType.Unknown) |
| | 2766 | | { |
| | 2767 | | extra.ExtraType = extraType; |
| | 2768 | | } |
| | 2769 | |
|
| | 2770 | | extra.ParentId = Guid.Empty; |
| | 2771 | | extra.OwnerId = owner.Id; |
| | 2772 | | return extra; |
| | 2773 | | } |
| | 2774 | | } |
| | 2775 | |
|
| | 2776 | | public string GetPathAfterNetworkSubstitution(string path, BaseItem? ownerItem) |
| | 2777 | | { |
| 12 | 2778 | | foreach (var map in _configurationManager.Configuration.PathSubstitutions) |
| | 2779 | | { |
| 0 | 2780 | | if (path.TryReplaceSubPath(map.From, map.To, out var newPath)) |
| | 2781 | | { |
| 0 | 2782 | | return newPath; |
| | 2783 | | } |
| | 2784 | | } |
| | 2785 | |
|
| 6 | 2786 | | return path; |
| | 2787 | | } |
| | 2788 | |
|
| | 2789 | | public IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery query) |
| | 2790 | | { |
| 0 | 2791 | | return _peopleRepository.GetPeople(query); |
| | 2792 | | } |
| | 2793 | |
|
| | 2794 | | public IReadOnlyList<PersonInfo> GetPeople(BaseItem item) |
| | 2795 | | { |
| 59 | 2796 | | if (item.SupportsPeople) |
| | 2797 | | { |
| 0 | 2798 | | var people = GetPeople(new InternalPeopleQuery |
| 0 | 2799 | | { |
| 0 | 2800 | | ItemId = item.Id |
| 0 | 2801 | | }); |
| | 2802 | |
|
| 0 | 2803 | | if (people.Count > 0) |
| | 2804 | | { |
| 0 | 2805 | | return people; |
| | 2806 | | } |
| | 2807 | | } |
| | 2808 | |
|
| 59 | 2809 | | return []; |
| | 2810 | | } |
| | 2811 | |
|
| | 2812 | | public IReadOnlyList<Person> GetPeopleItems(InternalPeopleQuery query) |
| | 2813 | | { |
| 0 | 2814 | | return _peopleRepository.GetPeopleNames(query) |
| 0 | 2815 | | .Select(i => |
| 0 | 2816 | | { |
| 0 | 2817 | | try |
| 0 | 2818 | | { |
| 0 | 2819 | | return GetPerson(i); |
| 0 | 2820 | | } |
| 0 | 2821 | | catch (Exception ex) |
| 0 | 2822 | | { |
| 0 | 2823 | | _logger.LogError(ex, "Error getting person"); |
| 0 | 2824 | | return null; |
| 0 | 2825 | | } |
| 0 | 2826 | | }) |
| 0 | 2827 | | .Where(i => i is not null) |
| 0 | 2828 | | .Where(i => query.User is null || i!.IsVisible(query.User)) |
| 0 | 2829 | | .ToList()!; // null values are filtered out |
| | 2830 | | } |
| | 2831 | |
|
| | 2832 | | public IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery query) |
| | 2833 | | { |
| 0 | 2834 | | return _peopleRepository.GetPeopleNames(query); |
| | 2835 | | } |
| | 2836 | |
|
| | 2837 | | public void UpdatePeople(BaseItem item, List<PersonInfo> people) |
| | 2838 | | { |
| 0 | 2839 | | UpdatePeopleAsync(item, people, CancellationToken.None).GetAwaiter().GetResult(); |
| 0 | 2840 | | } |
| | 2841 | |
|
| | 2842 | | /// <inheritdoc /> |
| | 2843 | | public async Task UpdatePeopleAsync(BaseItem item, IReadOnlyList<PersonInfo> people, CancellationToken cancellat |
| | 2844 | | { |
| | 2845 | | if (!item.SupportsPeople) |
| | 2846 | | { |
| | 2847 | | return; |
| | 2848 | | } |
| | 2849 | |
|
| | 2850 | | if (people is not null) |
| | 2851 | | { |
| | 2852 | | people = people.Where(e => e is not null).ToArray(); |
| | 2853 | | _peopleRepository.UpdatePeople(item.Id, people); |
| | 2854 | | await SavePeopleMetadataAsync(people, cancellationToken).ConfigureAwait(false); |
| | 2855 | | } |
| | 2856 | | } |
| | 2857 | |
|
| | 2858 | | public async Task<ItemImageInfo> ConvertImageToLocal(BaseItem item, ItemImageInfo image, int imageIndex, bool re |
| | 2859 | | { |
| | 2860 | | foreach (var url in image.Path.Split('|')) |
| | 2861 | | { |
| | 2862 | | try |
| | 2863 | | { |
| | 2864 | | _logger.LogDebug("ConvertImageToLocal item {0} - image url: {1}", item.Id, url); |
| | 2865 | |
|
| | 2866 | | await ProviderManager.SaveImage(item, url, image.Type, imageIndex, CancellationToken.None).Configure |
| | 2867 | |
|
| | 2868 | | await item.UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwai |
| | 2869 | |
|
| | 2870 | | return item.GetImageInfo(image.Type, imageIndex); |
| | 2871 | | } |
| | 2872 | | catch (HttpRequestException ex) |
| | 2873 | | { |
| | 2874 | | if (ex.StatusCode.HasValue |
| | 2875 | | && (ex.StatusCode.Value == HttpStatusCode.NotFound || ex.StatusCode.Value == HttpStatusCode.Forb |
| | 2876 | | { |
| | 2877 | | _logger.LogDebug(ex, "Error downloading image {Url}", url); |
| | 2878 | | continue; |
| | 2879 | | } |
| | 2880 | |
|
| | 2881 | | throw; |
| | 2882 | | } |
| | 2883 | | } |
| | 2884 | |
|
| | 2885 | | if (removeOnFailure) |
| | 2886 | | { |
| | 2887 | | // Remove this image to prevent it from retrying over and over |
| | 2888 | | item.RemoveImage(image); |
| | 2889 | | await item.UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(fa |
| | 2890 | | } |
| | 2891 | |
|
| | 2892 | | throw new InvalidOperationException("Unable to convert any images to local"); |
| | 2893 | | } |
| | 2894 | |
|
| | 2895 | | public async Task AddVirtualFolder(string name, CollectionTypeOptions? collectionType, LibraryOptions options, b |
| | 2896 | | { |
| | 2897 | | if (string.IsNullOrWhiteSpace(name)) |
| | 2898 | | { |
| | 2899 | | throw new ArgumentNullException(nameof(name)); |
| | 2900 | | } |
| | 2901 | |
|
| | 2902 | | name = _fileSystem.GetValidFilename(name); |
| | 2903 | |
|
| | 2904 | | var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| | 2905 | |
|
| | 2906 | | var existingNameCount = 1; // first numbered name will be 2 |
| | 2907 | | var virtualFolderPath = Path.Combine(rootFolderPath, name); |
| | 2908 | | var originalName = name; |
| | 2909 | | while (Directory.Exists(virtualFolderPath)) |
| | 2910 | | { |
| | 2911 | | existingNameCount++; |
| | 2912 | | name = originalName + existingNameCount; |
| | 2913 | | virtualFolderPath = Path.Combine(rootFolderPath, name); |
| | 2914 | | } |
| | 2915 | |
|
| | 2916 | | var mediaPathInfos = options.PathInfos; |
| | 2917 | | if (mediaPathInfos is not null) |
| | 2918 | | { |
| | 2919 | | var invalidpath = mediaPathInfos.FirstOrDefault(i => !Directory.Exists(i.Path)); |
| | 2920 | | if (invalidpath is not null) |
| | 2921 | | { |
| | 2922 | | throw new ArgumentException("The specified path does not exist: " + invalidpath.Path + "."); |
| | 2923 | | } |
| | 2924 | | } |
| | 2925 | |
|
| | 2926 | | LibraryMonitor.Stop(); |
| | 2927 | |
|
| | 2928 | | try |
| | 2929 | | { |
| | 2930 | | Directory.CreateDirectory(virtualFolderPath); |
| | 2931 | |
|
| | 2932 | | if (collectionType is not null) |
| | 2933 | | { |
| | 2934 | | var path = Path.Combine(virtualFolderPath, collectionType.ToString()!.ToLowerInvariant() + ".collect |
| | 2935 | |
|
| | 2936 | | await File.WriteAllBytesAsync(path, []).ConfigureAwait(false); |
| | 2937 | | } |
| | 2938 | |
|
| | 2939 | | CollectionFolder.SaveLibraryOptions(virtualFolderPath, options); |
| | 2940 | |
|
| | 2941 | | if (mediaPathInfos is not null) |
| | 2942 | | { |
| | 2943 | | foreach (var path in mediaPathInfos) |
| | 2944 | | { |
| | 2945 | | AddMediaPathInternal(name, path, false); |
| | 2946 | | } |
| | 2947 | | } |
| | 2948 | | } |
| | 2949 | | finally |
| | 2950 | | { |
| | 2951 | | if (refreshLibrary) |
| | 2952 | | { |
| | 2953 | | await ValidateTopLibraryFolders(CancellationToken.None).ConfigureAwait(false); |
| | 2954 | |
|
| | 2955 | | StartScanInBackground(); |
| | 2956 | | } |
| | 2957 | | else |
| | 2958 | | { |
| | 2959 | | // Need to add a delay here or directory watchers may still pick up the changes |
| | 2960 | | await Task.Delay(1000).ConfigureAwait(false); |
| | 2961 | | LibraryMonitor.Start(); |
| | 2962 | | } |
| | 2963 | | } |
| | 2964 | | } |
| | 2965 | |
|
| | 2966 | | private async Task SavePeopleMetadataAsync(IEnumerable<PersonInfo> people, CancellationToken cancellationToken) |
| | 2967 | | { |
| | 2968 | | foreach (var person in people) |
| | 2969 | | { |
| | 2970 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 2971 | |
|
| | 2972 | | var itemUpdateType = ItemUpdateType.MetadataDownload; |
| | 2973 | | var saveEntity = false; |
| | 2974 | | var createEntity = false; |
| | 2975 | | var personEntity = GetPerson(person.Name); |
| | 2976 | |
|
| | 2977 | | if (personEntity is null) |
| | 2978 | | { |
| | 2979 | | var path = Person.GetPath(person.Name); |
| | 2980 | | personEntity = new Person() |
| | 2981 | | { |
| | 2982 | | Name = person.Name, |
| | 2983 | | Id = GetItemByNameId<Person>(path), |
| | 2984 | | DateCreated = DateTime.UtcNow, |
| | 2985 | | DateModified = DateTime.UtcNow, |
| | 2986 | | Path = path |
| | 2987 | | }; |
| | 2988 | |
|
| | 2989 | | personEntity.PresentationUniqueKey = personEntity.CreatePresentationUniqueKey(); |
| | 2990 | | saveEntity = true; |
| | 2991 | | createEntity = true; |
| | 2992 | | } |
| | 2993 | |
|
| | 2994 | | foreach (var id in person.ProviderIds) |
| | 2995 | | { |
| | 2996 | | if (!string.Equals(personEntity.GetProviderId(id.Key), id.Value, StringComparison.OrdinalIgnoreCase) |
| | 2997 | | { |
| | 2998 | | personEntity.SetProviderId(id.Key, id.Value); |
| | 2999 | | saveEntity = true; |
| | 3000 | | } |
| | 3001 | | } |
| | 3002 | |
|
| | 3003 | | if (!string.IsNullOrWhiteSpace(person.ImageUrl) && !personEntity.HasImage(ImageType.Primary)) |
| | 3004 | | { |
| | 3005 | | personEntity.SetImage( |
| | 3006 | | new ItemImageInfo |
| | 3007 | | { |
| | 3008 | | Path = person.ImageUrl, |
| | 3009 | | Type = ImageType.Primary |
| | 3010 | | }, |
| | 3011 | | 0); |
| | 3012 | |
|
| | 3013 | | saveEntity = true; |
| | 3014 | | itemUpdateType = ItemUpdateType.ImageUpdate; |
| | 3015 | | } |
| | 3016 | |
|
| | 3017 | | if (saveEntity) |
| | 3018 | | { |
| | 3019 | | if (createEntity) |
| | 3020 | | { |
| | 3021 | | CreateItems([personEntity], null, CancellationToken.None); |
| | 3022 | | } |
| | 3023 | |
|
| | 3024 | | await RunMetadataSavers(personEntity, itemUpdateType).ConfigureAwait(false); |
| | 3025 | | CreateItems([personEntity], null, CancellationToken.None); |
| | 3026 | | } |
| | 3027 | | } |
| | 3028 | | } |
| | 3029 | |
|
| | 3030 | | private void StartScanInBackground() |
| | 3031 | | { |
| 3 | 3032 | | Task.Run(() => |
| 3 | 3033 | | { |
| 3 | 3034 | | // No need to start if scanning the library because it will handle it |
| 3 | 3035 | | ValidateMediaLibrary(new Progress<double>(), CancellationToken.None); |
| 3 | 3036 | | }); |
| 3 | 3037 | | } |
| | 3038 | |
|
| | 3039 | | public void AddMediaPath(string virtualFolderName, MediaPathInfo mediaPath) |
| | 3040 | | { |
| 1 | 3041 | | AddMediaPathInternal(virtualFolderName, mediaPath, true); |
| 0 | 3042 | | } |
| | 3043 | |
|
| | 3044 | | private void AddMediaPathInternal(string virtualFolderName, MediaPathInfo pathInfo, bool saveLibraryOptions) |
| | 3045 | | { |
| 1 | 3046 | | ArgumentNullException.ThrowIfNull(pathInfo); |
| | 3047 | |
|
| 1 | 3048 | | var path = pathInfo.Path; |
| | 3049 | |
|
| 1 | 3050 | | if (string.IsNullOrWhiteSpace(path)) |
| | 3051 | | { |
| 0 | 3052 | | throw new ArgumentException(nameof(path)); |
| | 3053 | | } |
| | 3054 | |
|
| 1 | 3055 | | if (!Directory.Exists(path)) |
| | 3056 | | { |
| 1 | 3057 | | throw new FileNotFoundException("The path does not exist."); |
| | 3058 | | } |
| | 3059 | |
|
| 0 | 3060 | | var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| 0 | 3061 | | var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName); |
| | 3062 | |
|
| 0 | 3063 | | var shortcutFilename = Path.GetFileNameWithoutExtension(path); |
| | 3064 | |
|
| 0 | 3065 | | var lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension); |
| | 3066 | |
|
| 0 | 3067 | | while (File.Exists(lnk)) |
| | 3068 | | { |
| 0 | 3069 | | shortcutFilename += "1"; |
| 0 | 3070 | | lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension); |
| | 3071 | | } |
| | 3072 | |
|
| 0 | 3073 | | _fileSystem.CreateShortcut(lnk, _appHost.ReverseVirtualPath(path)); |
| | 3074 | |
|
| 0 | 3075 | | RemoveContentTypeOverrides(path); |
| | 3076 | |
|
| 0 | 3077 | | if (saveLibraryOptions) |
| | 3078 | | { |
| 0 | 3079 | | var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath); |
| | 3080 | |
|
| 0 | 3081 | | libraryOptions.PathInfos = [.. libraryOptions.PathInfos, pathInfo]; |
| | 3082 | |
|
| 0 | 3083 | | SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions); |
| | 3084 | |
|
| 0 | 3085 | | CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions); |
| | 3086 | | } |
| 0 | 3087 | | } |
| | 3088 | |
|
| | 3089 | | public void UpdateMediaPath(string virtualFolderName, MediaPathInfo mediaPath) |
| | 3090 | | { |
| 0 | 3091 | | ArgumentNullException.ThrowIfNull(mediaPath); |
| | 3092 | |
|
| 0 | 3093 | | var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| 0 | 3094 | | var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName); |
| | 3095 | |
|
| 0 | 3096 | | var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath); |
| | 3097 | |
|
| 0 | 3098 | | SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions); |
| | 3099 | |
|
| 0 | 3100 | | CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions); |
| 0 | 3101 | | } |
| | 3102 | |
|
| | 3103 | | private void SyncLibraryOptionsToLocations(string virtualFolderPath, LibraryOptions options) |
| | 3104 | | { |
| 0 | 3105 | | var topLibraryFolders = GetUserRootFolder().Children.ToList(); |
| 0 | 3106 | | var info = GetVirtualFolderInfo(virtualFolderPath, topLibraryFolders, null); |
| | 3107 | |
|
| 0 | 3108 | | if (info.Locations.Length > 0 && info.Locations.Length != options.PathInfos.Length) |
| | 3109 | | { |
| 0 | 3110 | | var list = options.PathInfos.ToList(); |
| | 3111 | |
|
| 0 | 3112 | | foreach (var location in info.Locations) |
| | 3113 | | { |
| 0 | 3114 | | if (!list.Any(i => string.Equals(i.Path, location, StringComparison.Ordinal))) |
| | 3115 | | { |
| 0 | 3116 | | list.Add(new MediaPathInfo(location)); |
| | 3117 | | } |
| | 3118 | | } |
| | 3119 | |
|
| 0 | 3120 | | options.PathInfos = list.ToArray(); |
| | 3121 | | } |
| 0 | 3122 | | } |
| | 3123 | |
|
| | 3124 | | public async Task RemoveVirtualFolder(string name, bool refreshLibrary) |
| | 3125 | | { |
| | 3126 | | if (string.IsNullOrWhiteSpace(name)) |
| | 3127 | | { |
| | 3128 | | throw new ArgumentNullException(nameof(name)); |
| | 3129 | | } |
| | 3130 | |
|
| | 3131 | | var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| | 3132 | |
|
| | 3133 | | var path = Path.Combine(rootFolderPath, name); |
| | 3134 | |
|
| | 3135 | | if (!Directory.Exists(path)) |
| | 3136 | | { |
| | 3137 | | throw new FileNotFoundException("The media folder does not exist"); |
| | 3138 | | } |
| | 3139 | |
|
| | 3140 | | LibraryMonitor.Stop(); |
| | 3141 | |
|
| | 3142 | | try |
| | 3143 | | { |
| | 3144 | | Directory.Delete(path, true); |
| | 3145 | | } |
| | 3146 | | finally |
| | 3147 | | { |
| | 3148 | | CollectionFolder.OnCollectionFolderChange(); |
| | 3149 | |
|
| | 3150 | | if (refreshLibrary) |
| | 3151 | | { |
| | 3152 | | await ValidateTopLibraryFolders(CancellationToken.None, true).ConfigureAwait(false); |
| | 3153 | |
|
| | 3154 | | StartScanInBackground(); |
| | 3155 | | } |
| | 3156 | | else |
| | 3157 | | { |
| | 3158 | | // Need to add a delay here or directory watchers may still pick up the changes |
| | 3159 | | await Task.Delay(1000).ConfigureAwait(false); |
| | 3160 | | LibraryMonitor.Start(); |
| | 3161 | | } |
| | 3162 | | } |
| | 3163 | | } |
| | 3164 | |
|
| | 3165 | | private void RemoveContentTypeOverrides(string path) |
| | 3166 | | { |
| 0 | 3167 | | if (string.IsNullOrWhiteSpace(path)) |
| | 3168 | | { |
| 0 | 3169 | | throw new ArgumentNullException(nameof(path)); |
| | 3170 | | } |
| | 3171 | |
|
| 0 | 3172 | | List<NameValuePair>? removeList = null; |
| | 3173 | |
|
| 0 | 3174 | | foreach (var contentType in _configurationManager.Configuration.ContentTypes) |
| | 3175 | | { |
| 0 | 3176 | | if (string.IsNullOrWhiteSpace(contentType.Name) |
| 0 | 3177 | | || _fileSystem.AreEqual(path, contentType.Name) |
| 0 | 3178 | | || _fileSystem.ContainsSubPath(path, contentType.Name)) |
| | 3179 | | { |
| 0 | 3180 | | (removeList ??= new()).Add(contentType); |
| | 3181 | | } |
| | 3182 | | } |
| | 3183 | |
|
| 0 | 3184 | | if (removeList is not null) |
| | 3185 | | { |
| 0 | 3186 | | _configurationManager.Configuration.ContentTypes = _configurationManager.Configuration.ContentTypes |
| 0 | 3187 | | .Except(removeList) |
| 0 | 3188 | | .ToArray(); |
| | 3189 | |
|
| 0 | 3190 | | _configurationManager.SaveConfiguration(); |
| | 3191 | | } |
| 0 | 3192 | | } |
| | 3193 | |
|
| | 3194 | | public void RemoveMediaPath(string virtualFolderName, string mediaPath) |
| | 3195 | | { |
| 1 | 3196 | | ArgumentException.ThrowIfNullOrEmpty(mediaPath); |
| | 3197 | |
|
| 1 | 3198 | | var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath; |
| 1 | 3199 | | var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName); |
| | 3200 | |
|
| 1 | 3201 | | if (!Directory.Exists(virtualFolderPath)) |
| | 3202 | | { |
| 1 | 3203 | | throw new FileNotFoundException( |
| 1 | 3204 | | string.Format(CultureInfo.InvariantCulture, "The media collection {0} does not exist", virtualFolder |
| | 3205 | | } |
| | 3206 | |
|
| 0 | 3207 | | var shortcut = _fileSystem.GetFilePaths(virtualFolderPath, true) |
| 0 | 3208 | | .Where(i => Path.GetExtension(i.AsSpan()).Equals(ShortcutFileExtension, StringComparison.OrdinalIgnoreCa |
| 0 | 3209 | | .FirstOrDefault(f => _appHost.ExpandVirtualPath(_fileSystem.ResolveShortcut(f)).Equals(mediaPath, String |
| | 3210 | |
|
| 0 | 3211 | | if (!string.IsNullOrEmpty(shortcut)) |
| | 3212 | | { |
| 0 | 3213 | | _fileSystem.DeleteFile(shortcut); |
| | 3214 | | } |
| | 3215 | |
|
| 0 | 3216 | | var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath); |
| | 3217 | |
|
| 0 | 3218 | | libraryOptions.PathInfos = libraryOptions |
| 0 | 3219 | | .PathInfos |
| 0 | 3220 | | .Where(i => !string.Equals(i.Path, mediaPath, StringComparison.Ordinal)) |
| 0 | 3221 | | .ToArray(); |
| | 3222 | |
|
| 0 | 3223 | | CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions); |
| 0 | 3224 | | } |
| | 3225 | |
|
| | 3226 | | private static bool ItemIsVisible(BaseItem? item, User? user) |
| | 3227 | | { |
| 21 | 3228 | | if (item is null) |
| | 3229 | | { |
| 21 | 3230 | | return false; |
| | 3231 | | } |
| | 3232 | |
|
| 0 | 3233 | | if (user is null) |
| | 3234 | | { |
| 0 | 3235 | | return true; |
| | 3236 | | } |
| | 3237 | |
|
| 0 | 3238 | | return item is UserRootFolder || item.IsVisibleStandalone(user); |
| | 3239 | | } |
| | 3240 | | } |
| | 3241 | | } |