| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Globalization; |
| | 6 | | using System.IO; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Text; |
| | 9 | | using System.Text.RegularExpressions; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using System.Xml; |
| | 13 | | using Jellyfin.Data.Enums; |
| | 14 | | using Jellyfin.Extensions; |
| | 15 | | using MediaBrowser.Common.Extensions; |
| | 16 | | using MediaBrowser.Controller.Configuration; |
| | 17 | | using MediaBrowser.Controller.Entities; |
| | 18 | | using MediaBrowser.Controller.Entities.Audio; |
| | 19 | | using MediaBrowser.Controller.Entities.Movies; |
| | 20 | | using MediaBrowser.Controller.Entities.TV; |
| | 21 | | using MediaBrowser.Controller.Library; |
| | 22 | | using MediaBrowser.Model.Configuration; |
| | 23 | | using MediaBrowser.Model.Entities; |
| | 24 | | using MediaBrowser.Model.IO; |
| | 25 | | using MediaBrowser.XbmcMetadata.Configuration; |
| | 26 | | using Microsoft.Extensions.Logging; |
| | 27 | |
|
| | 28 | | namespace MediaBrowser.XbmcMetadata.Savers |
| | 29 | | { |
| | 30 | | public abstract partial class BaseNfoSaver : IMetadataFileSaver |
| | 31 | | { |
| | 32 | | public const string DateAddedFormat = "yyyy-MM-dd HH:mm:ss"; |
| | 33 | |
|
| | 34 | | public const string YouTubeWatchUrl = "https://www.youtube.com/watch?v="; |
| | 35 | |
|
| 0 | 36 | | private static readonly HashSet<string> _commonTags = new HashSet<string>(StringComparer.OrdinalIgnoreCase) |
| 0 | 37 | | { |
| 0 | 38 | | "plot", |
| 0 | 39 | | "customrating", |
| 0 | 40 | | "lockdata", |
| 0 | 41 | | "dateadded", |
| 0 | 42 | | "title", |
| 0 | 43 | | "rating", |
| 0 | 44 | | "year", |
| 0 | 45 | | "sorttitle", |
| 0 | 46 | | "mpaa", |
| 0 | 47 | | "aspectratio", |
| 0 | 48 | | "collectionnumber", |
| 0 | 49 | | "tmdbid", |
| 0 | 50 | | "rottentomatoesid", |
| 0 | 51 | | "language", |
| 0 | 52 | | "tvcomid", |
| 0 | 53 | | "tagline", |
| 0 | 54 | | "studio", |
| 0 | 55 | | "genre", |
| 0 | 56 | | "tag", |
| 0 | 57 | | "runtime", |
| 0 | 58 | | "actor", |
| 0 | 59 | | "criticrating", |
| 0 | 60 | | "fileinfo", |
| 0 | 61 | | "director", |
| 0 | 62 | | "writer", |
| 0 | 63 | | "trailer", |
| 0 | 64 | | "premiered", |
| 0 | 65 | | "releasedate", |
| 0 | 66 | | "outline", |
| 0 | 67 | | "id", |
| 0 | 68 | | "credits", |
| 0 | 69 | | "originaltitle", |
| 0 | 70 | | "watched", |
| 0 | 71 | | "playcount", |
| 0 | 72 | | "lastplayed", |
| 0 | 73 | | "art", |
| 0 | 74 | | "resume", |
| 0 | 75 | | "biography", |
| 0 | 76 | | "formed", |
| 0 | 77 | | "review", |
| 0 | 78 | | "style", |
| 0 | 79 | | "imdbid", |
| 0 | 80 | | "imdb_id", |
| 0 | 81 | | "country", |
| 0 | 82 | | "audiodbalbumid", |
| 0 | 83 | | "audiodbartistid", |
| 0 | 84 | | "enddate", |
| 0 | 85 | | "lockedfields", |
| 0 | 86 | | "zap2itid", |
| 0 | 87 | | "tvrageid", |
| 0 | 88 | |
|
| 0 | 89 | | "musicbrainzartistid", |
| 0 | 90 | | "musicbrainzalbumartistid", |
| 0 | 91 | | "musicbrainzalbumid", |
| 0 | 92 | | "musicbrainzreleasegroupid", |
| 0 | 93 | | "tvdbid", |
| 0 | 94 | | "collectionitem", |
| 0 | 95 | |
|
| 0 | 96 | | "isuserfavorite", |
| 0 | 97 | | "userrating", |
| 0 | 98 | |
|
| 0 | 99 | | "countrycode" |
| 0 | 100 | | }; |
| | 101 | |
|
| | 102 | | protected BaseNfoSaver( |
| | 103 | | IFileSystem fileSystem, |
| | 104 | | IServerConfigurationManager configurationManager, |
| | 105 | | ILibraryManager libraryManager, |
| | 106 | | IUserManager userManager, |
| | 107 | | IUserDataManager userDataManager, |
| | 108 | | ILogger<BaseNfoSaver> logger) |
| | 109 | | { |
| | 110 | | Logger = logger; |
| | 111 | | UserDataManager = userDataManager; |
| | 112 | | UserManager = userManager; |
| | 113 | | LibraryManager = libraryManager; |
| | 114 | | ConfigurationManager = configurationManager; |
| | 115 | | FileSystem = fileSystem; |
| 126 | 116 | | } |
| | 117 | |
|
| | 118 | | protected IFileSystem FileSystem { get; } |
| | 119 | |
|
| | 120 | | protected IServerConfigurationManager ConfigurationManager { get; } |
| | 121 | |
|
| | 122 | | protected ILibraryManager LibraryManager { get; } |
| | 123 | |
|
| | 124 | | protected IUserManager UserManager { get; } |
| | 125 | |
|
| | 126 | | protected IUserDataManager UserDataManager { get; } |
| | 127 | |
|
| | 128 | | protected ILogger<BaseNfoSaver> Logger { get; } |
| | 129 | |
|
| | 130 | | protected ItemUpdateType MinimumUpdateType |
| | 131 | | { |
| | 132 | | get |
| | 133 | | { |
| 0 | 134 | | if (ConfigurationManager.GetNfoConfiguration().SaveImagePathsInNfo) |
| | 135 | | { |
| 0 | 136 | | return ItemUpdateType.ImageUpdate; |
| | 137 | | } |
| | 138 | |
|
| 0 | 139 | | return ItemUpdateType.MetadataDownload; |
| | 140 | | } |
| | 141 | | } |
| | 142 | |
|
| | 143 | | /// <inheritdoc /> |
| 0 | 144 | | public string Name => SaverName; |
| | 145 | |
|
| 0 | 146 | | public static string SaverName => "Nfo"; |
| | 147 | |
|
| | 148 | | // filters control characters but allows only properly-formed surrogate sequences |
| | 149 | | // http://web.archive.org/web/20181230211547/https://emby.media/community/index.php?/topic/49071-nfo-not-generat |
| | 150 | | // Web Archive version of link since it's not really explained in the thread. |
| | 151 | | [GeneratedRegex(@"(?<![\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|[\x00-\x08\x0B\x0C\x0E- |
| | 152 | | private static partial Regex InvalidXMLCharsRegexRegex(); |
| | 153 | |
|
| | 154 | | /// <inheritdoc /> |
| | 155 | | public string GetSavePath(BaseItem item) |
| 0 | 156 | | => GetLocalSavePath(item); |
| | 157 | |
|
| | 158 | | /// <summary> |
| | 159 | | /// Gets the save path. |
| | 160 | | /// </summary> |
| | 161 | | /// <param name="item">The item.</param> |
| | 162 | | /// <returns><see cref="string" />.</returns> |
| | 163 | | protected abstract string GetLocalSavePath(BaseItem item); |
| | 164 | |
|
| | 165 | | /// <summary> |
| | 166 | | /// Gets the name of the root element. |
| | 167 | | /// </summary> |
| | 168 | | /// <param name="item">The item.</param> |
| | 169 | | /// <returns><see cref="string" />.</returns> |
| | 170 | | protected abstract string GetRootElementName(BaseItem item); |
| | 171 | |
|
| | 172 | | /// <inheritdoc /> |
| | 173 | | public abstract bool IsEnabledFor(BaseItem item, ItemUpdateType updateType); |
| | 174 | |
|
| | 175 | | protected virtual IEnumerable<string> GetTagsUsed(BaseItem item) |
| | 176 | | { |
| | 177 | | foreach (var providerKey in item.ProviderIds.Keys) |
| | 178 | | { |
| | 179 | | var providerIdTagName = GetTagForProviderKey(providerKey); |
| | 180 | | if (!_commonTags.Contains(providerIdTagName)) |
| | 181 | | { |
| | 182 | | yield return providerIdTagName; |
| | 183 | | } |
| | 184 | | } |
| | 185 | | } |
| | 186 | |
|
| | 187 | | /// <inheritdoc /> |
| | 188 | | public async Task SaveAsync(BaseItem item, CancellationToken cancellationToken) |
| | 189 | | { |
| | 190 | | var path = GetSavePath(item); |
| | 191 | |
|
| | 192 | | using (var memoryStream = new MemoryStream()) |
| | 193 | | { |
| | 194 | | Save(item, memoryStream, path); |
| | 195 | |
|
| | 196 | | memoryStream.Position = 0; |
| | 197 | |
|
| | 198 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 199 | |
|
| | 200 | | await SaveToFileAsync(memoryStream, path).ConfigureAwait(false); |
| | 201 | | } |
| | 202 | | } |
| | 203 | |
|
| | 204 | | private async Task SaveToFileAsync(Stream stream, string path) |
| | 205 | | { |
| | 206 | | var directory = Path.GetDirectoryName(path) ?? throw new ArgumentException($"Provided path ({path}) is not v |
| | 207 | | Directory.CreateDirectory(directory); |
| | 208 | |
|
| | 209 | | // On Windows, saving the file will fail if the file is hidden or readonly |
| | 210 | | FileSystem.SetAttributes(path, false, false); |
| | 211 | |
|
| | 212 | | var fileStreamOptions = new FileStreamOptions() |
| | 213 | | { |
| | 214 | | Mode = FileMode.Create, |
| | 215 | | Access = FileAccess.Write, |
| | 216 | | Share = FileShare.None, |
| | 217 | | PreallocationSize = stream.Length, |
| | 218 | | Options = FileOptions.Asynchronous |
| | 219 | | }; |
| | 220 | |
|
| | 221 | | var filestream = new FileStream(path, fileStreamOptions); |
| | 222 | | await using (filestream.ConfigureAwait(false)) |
| | 223 | | { |
| | 224 | | await stream.CopyToAsync(filestream).ConfigureAwait(false); |
| | 225 | | } |
| | 226 | |
|
| | 227 | | if (ConfigurationManager.Configuration.SaveMetadataHidden) |
| | 228 | | { |
| | 229 | | SetHidden(path, true); |
| | 230 | | } |
| | 231 | | } |
| | 232 | |
|
| | 233 | | private void SetHidden(string path, bool hidden) |
| | 234 | | { |
| | 235 | | try |
| | 236 | | { |
| 0 | 237 | | FileSystem.SetHidden(path, hidden); |
| 0 | 238 | | } |
| 0 | 239 | | catch (IOException ex) |
| | 240 | | { |
| 0 | 241 | | Logger.LogError(ex, "Error setting hidden attribute on {Path}", path); |
| 0 | 242 | | } |
| 0 | 243 | | } |
| | 244 | |
|
| | 245 | | private void Save(BaseItem item, Stream stream, string xmlPath) |
| | 246 | | { |
| 0 | 247 | | var settings = new XmlWriterSettings |
| 0 | 248 | | { |
| 0 | 249 | | Indent = true, |
| 0 | 250 | | Encoding = Encoding.UTF8, |
| 0 | 251 | | CloseOutput = false |
| 0 | 252 | | }; |
| | 253 | |
|
| 0 | 254 | | using (var writer = XmlWriter.Create(stream, settings)) |
| | 255 | | { |
| 0 | 256 | | var root = GetRootElementName(item); |
| | 257 | |
|
| 0 | 258 | | writer.WriteStartDocument(true); |
| | 259 | |
|
| 0 | 260 | | writer.WriteStartElement(root); |
| | 261 | |
|
| 0 | 262 | | var baseItem = item; |
| | 263 | |
|
| 0 | 264 | | if (baseItem is not null) |
| | 265 | | { |
| 0 | 266 | | AddCommonNodes(baseItem, writer, LibraryManager, UserManager, UserDataManager, ConfigurationManager) |
| | 267 | | } |
| | 268 | |
|
| 0 | 269 | | WriteCustomElements(item, writer); |
| | 270 | |
|
| 0 | 271 | | if (baseItem is IHasMediaSources hasMediaSources) |
| | 272 | | { |
| 0 | 273 | | AddMediaInfo(hasMediaSources, writer); |
| | 274 | | } |
| | 275 | |
|
| 0 | 276 | | var tagsUsed = GetTagsUsed(item).ToList(); |
| | 277 | |
|
| | 278 | | try |
| | 279 | | { |
| 0 | 280 | | AddCustomTags(xmlPath, tagsUsed, writer, Logger); |
| 0 | 281 | | } |
| 0 | 282 | | catch (FileNotFoundException) |
| | 283 | | { |
| 0 | 284 | | } |
| 0 | 285 | | catch (IOException) |
| | 286 | | { |
| 0 | 287 | | } |
| 0 | 288 | | catch (XmlException ex) |
| | 289 | | { |
| 0 | 290 | | Logger.LogError(ex, "Error reading existing nfo"); |
| 0 | 291 | | } |
| | 292 | |
|
| 0 | 293 | | writer.WriteEndElement(); |
| | 294 | |
|
| 0 | 295 | | writer.WriteEndDocument(); |
| 0 | 296 | | } |
| 0 | 297 | | } |
| | 298 | |
|
| | 299 | | protected abstract void WriteCustomElements(BaseItem item, XmlWriter writer); |
| | 300 | |
|
| | 301 | | public static void AddMediaInfo<T>(T item, XmlWriter writer) |
| | 302 | | where T : IHasMediaSources |
| | 303 | | { |
| 0 | 304 | | writer.WriteStartElement("fileinfo"); |
| 0 | 305 | | writer.WriteStartElement("streamdetails"); |
| | 306 | |
|
| 0 | 307 | | var mediaStreams = item.GetMediaStreams(); |
| | 308 | |
|
| 0 | 309 | | foreach (var stream in mediaStreams) |
| | 310 | | { |
| 0 | 311 | | writer.WriteStartElement(stream.Type.ToString().ToLowerInvariant()); |
| | 312 | |
|
| 0 | 313 | | if (!string.IsNullOrEmpty(stream.Codec)) |
| | 314 | | { |
| 0 | 315 | | var codec = stream.Codec; |
| | 316 | |
|
| 0 | 317 | | if ((stream.CodecTag ?? string.Empty).Contains("xvid", StringComparison.OrdinalIgnoreCase)) |
| | 318 | | { |
| 0 | 319 | | codec = "xvid"; |
| | 320 | | } |
| 0 | 321 | | else if ((stream.CodecTag ?? string.Empty).Contains("divx", StringComparison.OrdinalIgnoreCase)) |
| | 322 | | { |
| 0 | 323 | | codec = "divx"; |
| | 324 | | } |
| | 325 | |
|
| 0 | 326 | | writer.WriteElementString("codec", codec); |
| 0 | 327 | | writer.WriteElementString("micodec", codec); |
| | 328 | | } |
| | 329 | |
|
| 0 | 330 | | if (stream.BitRate.HasValue) |
| | 331 | | { |
| 0 | 332 | | writer.WriteElementString("bitrate", stream.BitRate.Value.ToString(CultureInfo.InvariantCulture)); |
| | 333 | | } |
| | 334 | |
|
| 0 | 335 | | if (stream.Width.HasValue) |
| | 336 | | { |
| 0 | 337 | | writer.WriteElementString("width", stream.Width.Value.ToString(CultureInfo.InvariantCulture)); |
| | 338 | | } |
| | 339 | |
|
| 0 | 340 | | if (stream.Height.HasValue) |
| | 341 | | { |
| 0 | 342 | | writer.WriteElementString("height", stream.Height.Value.ToString(CultureInfo.InvariantCulture)); |
| | 343 | | } |
| | 344 | |
|
| 0 | 345 | | if (!string.IsNullOrEmpty(stream.AspectRatio)) |
| | 346 | | { |
| 0 | 347 | | writer.WriteElementString("aspect", stream.AspectRatio); |
| 0 | 348 | | writer.WriteElementString("aspectratio", stream.AspectRatio); |
| | 349 | | } |
| | 350 | |
|
| 0 | 351 | | var framerate = stream.ReferenceFrameRate; |
| | 352 | |
|
| 0 | 353 | | if (framerate.HasValue) |
| | 354 | | { |
| 0 | 355 | | writer.WriteElementString("framerate", framerate.Value.ToString(CultureInfo.InvariantCulture)); |
| | 356 | | } |
| | 357 | |
|
| 0 | 358 | | if (!string.IsNullOrEmpty(stream.Language)) |
| | 359 | | { |
| 0 | 360 | | writer.WriteElementString("language", InvalidXMLCharsRegexRegex().Replace(stream.Language, string.Em |
| | 361 | | } |
| | 362 | |
|
| 0 | 363 | | var scanType = stream.IsInterlaced ? "interlaced" : "progressive"; |
| 0 | 364 | | writer.WriteElementString("scantype", scanType); |
| | 365 | |
|
| 0 | 366 | | if (stream.Channels.HasValue) |
| | 367 | | { |
| 0 | 368 | | writer.WriteElementString("channels", stream.Channels.Value.ToString(CultureInfo.InvariantCulture)); |
| | 369 | | } |
| | 370 | |
|
| 0 | 371 | | if (stream.SampleRate.HasValue) |
| | 372 | | { |
| 0 | 373 | | writer.WriteElementString("samplingrate", stream.SampleRate.Value.ToString(CultureInfo.InvariantCult |
| | 374 | | } |
| | 375 | |
|
| 0 | 376 | | writer.WriteElementString("default", stream.IsDefault.ToString(CultureInfo.InvariantCulture)); |
| 0 | 377 | | writer.WriteElementString("forced", stream.IsForced.ToString(CultureInfo.InvariantCulture)); |
| | 378 | |
|
| 0 | 379 | | if (stream.Type == MediaStreamType.Video) |
| | 380 | | { |
| 0 | 381 | | var runtimeTicks = item.RunTimeTicks; |
| 0 | 382 | | if (runtimeTicks.HasValue) |
| | 383 | | { |
| 0 | 384 | | var timespan = TimeSpan.FromTicks(runtimeTicks.Value); |
| | 385 | |
|
| 0 | 386 | | writer.WriteElementString( |
| 0 | 387 | | "duration", |
| 0 | 388 | | Math.Floor(timespan.TotalMinutes).ToString(CultureInfo.InvariantCulture)); |
| 0 | 389 | | writer.WriteElementString( |
| 0 | 390 | | "durationinseconds", |
| 0 | 391 | | Math.Floor(timespan.TotalSeconds).ToString(CultureInfo.InvariantCulture)); |
| | 392 | | } |
| | 393 | |
|
| 0 | 394 | | if (item is Video video) |
| | 395 | | { |
| | 396 | | // AddChapters(video, builder, itemRepository); |
| | 397 | |
|
| 0 | 398 | | if (video.Video3DFormat.HasValue) |
| | 399 | | { |
| 0 | 400 | | switch (video.Video3DFormat.Value) |
| | 401 | | { |
| | 402 | | case Video3DFormat.FullSideBySide: |
| 0 | 403 | | writer.WriteElementString("format3d", "FSBS"); |
| 0 | 404 | | break; |
| | 405 | | case Video3DFormat.FullTopAndBottom: |
| 0 | 406 | | writer.WriteElementString("format3d", "FTAB"); |
| 0 | 407 | | break; |
| | 408 | | case Video3DFormat.HalfSideBySide: |
| 0 | 409 | | writer.WriteElementString("format3d", "HSBS"); |
| 0 | 410 | | break; |
| | 411 | | case Video3DFormat.HalfTopAndBottom: |
| 0 | 412 | | writer.WriteElementString("format3d", "HTAB"); |
| 0 | 413 | | break; |
| | 414 | | case Video3DFormat.MVC: |
| 0 | 415 | | writer.WriteElementString("format3d", "MVC"); |
| | 416 | | break; |
| | 417 | | } |
| | 418 | | } |
| | 419 | | } |
| | 420 | | } |
| | 421 | |
|
| 0 | 422 | | writer.WriteEndElement(); |
| | 423 | | } |
| | 424 | |
|
| 0 | 425 | | writer.WriteEndElement(); |
| 0 | 426 | | writer.WriteEndElement(); |
| 0 | 427 | | } |
| | 428 | |
|
| | 429 | | /// <summary> |
| | 430 | | /// Adds the common nodes. |
| | 431 | | /// </summary> |
| | 432 | | private void AddCommonNodes( |
| | 433 | | BaseItem item, |
| | 434 | | XmlWriter writer, |
| | 435 | | ILibraryManager libraryManager, |
| | 436 | | IUserManager userManager, |
| | 437 | | IUserDataManager userDataRepo, |
| | 438 | | IServerConfigurationManager config) |
| | 439 | | { |
| 0 | 440 | | var writtenProviderIds = new HashSet<string>(StringComparer.OrdinalIgnoreCase); |
| | 441 | |
|
| 0 | 442 | | var overview = (item.Overview ?? string.Empty) |
| 0 | 443 | | .StripHtml() |
| 0 | 444 | | .Replace(""", "'", StringComparison.Ordinal); |
| | 445 | |
|
| 0 | 446 | | var options = config.GetNfoConfiguration(); |
| | 447 | |
|
| 0 | 448 | | if (item is MusicArtist) |
| | 449 | | { |
| 0 | 450 | | writer.WriteElementString("biography", overview); |
| | 451 | | } |
| 0 | 452 | | else if (item is MusicAlbum) |
| | 453 | | { |
| 0 | 454 | | writer.WriteElementString("review", overview); |
| | 455 | | } |
| | 456 | | else |
| | 457 | | { |
| 0 | 458 | | writer.WriteElementString("plot", overview); |
| | 459 | | } |
| | 460 | |
|
| 0 | 461 | | if (item is not Video) |
| | 462 | | { |
| 0 | 463 | | writer.WriteElementString("outline", overview); |
| | 464 | | } |
| | 465 | |
|
| 0 | 466 | | if (!string.IsNullOrWhiteSpace(item.CustomRating)) |
| | 467 | | { |
| 0 | 468 | | writer.WriteElementString("customrating", item.CustomRating); |
| | 469 | | } |
| | 470 | |
|
| 0 | 471 | | writer.WriteElementString("lockdata", item.IsLocked.ToString(CultureInfo.InvariantCulture).ToLowerInvariant( |
| | 472 | |
|
| 0 | 473 | | if (item.LockedFields.Length > 0) |
| | 474 | | { |
| 0 | 475 | | writer.WriteElementString("lockedfields", string.Join('|', item.LockedFields)); |
| | 476 | | } |
| | 477 | |
|
| 0 | 478 | | writer.WriteElementString("dateadded", item.DateCreated.ToString(DateAddedFormat, CultureInfo.InvariantCultu |
| | 479 | |
|
| 0 | 480 | | writer.WriteElementString("title", item.Name ?? string.Empty); |
| | 481 | |
|
| 0 | 482 | | if (!string.IsNullOrWhiteSpace(item.OriginalTitle)) |
| | 483 | | { |
| 0 | 484 | | writer.WriteElementString("originaltitle", item.OriginalTitle); |
| | 485 | | } |
| | 486 | |
|
| 0 | 487 | | var people = libraryManager.GetPeople(item); |
| | 488 | |
|
| 0 | 489 | | var directors = people |
| 0 | 490 | | .Where(i => i.IsType(PersonKind.Director)) |
| 0 | 491 | | .Select(i => i.Name?.Trim()) |
| 0 | 492 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 493 | | .OrderBy(i => i) |
| 0 | 494 | | .ToList(); |
| | 495 | |
|
| 0 | 496 | | foreach (var person in directors) |
| | 497 | | { |
| 0 | 498 | | writer.WriteElementString("director", person); |
| | 499 | | } |
| | 500 | |
|
| 0 | 501 | | var writers = people |
| 0 | 502 | | .Where(i => i.IsType(PersonKind.Writer)) |
| 0 | 503 | | .Select(i => i.Name?.Trim()) |
| 0 | 504 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 505 | | .OrderBy(i => i) |
| 0 | 506 | | .ToList(); |
| | 507 | |
|
| 0 | 508 | | foreach (var person in writers) |
| | 509 | | { |
| 0 | 510 | | writer.WriteElementString("writer", person); |
| | 511 | | } |
| | 512 | |
|
| 0 | 513 | | foreach (var person in writers) |
| | 514 | | { |
| 0 | 515 | | writer.WriteElementString("credits", person); |
| | 516 | | } |
| | 517 | |
|
| 0 | 518 | | foreach (var trailer in item.RemoteTrailers.OrderBy(t => t.Url?.Trim())) |
| | 519 | | { |
| 0 | 520 | | writer.WriteElementString("trailer", GetOutputTrailerUrl(trailer.Url)); |
| | 521 | | } |
| | 522 | |
|
| 0 | 523 | | if (item.CommunityRating.HasValue) |
| | 524 | | { |
| 0 | 525 | | writer.WriteElementString("rating", item.CommunityRating.Value.ToString(CultureInfo.InvariantCulture)); |
| | 526 | | } |
| | 527 | |
|
| 0 | 528 | | if (item.ProductionYear.HasValue) |
| | 529 | | { |
| 0 | 530 | | writer.WriteElementString("year", item.ProductionYear.Value.ToString(CultureInfo.InvariantCulture)); |
| | 531 | | } |
| | 532 | |
|
| 0 | 533 | | var forcedSortName = item.ForcedSortName; |
| 0 | 534 | | if (!string.IsNullOrEmpty(forcedSortName)) |
| | 535 | | { |
| 0 | 536 | | writer.WriteElementString("sorttitle", forcedSortName); |
| | 537 | | } |
| | 538 | |
|
| 0 | 539 | | if (!string.IsNullOrEmpty(item.OfficialRating)) |
| | 540 | | { |
| 0 | 541 | | writer.WriteElementString("mpaa", item.OfficialRating); |
| | 542 | | } |
| | 543 | |
|
| 0 | 544 | | if (item is IHasAspectRatio hasAspectRatio |
| 0 | 545 | | && !string.IsNullOrEmpty(hasAspectRatio.AspectRatio)) |
| | 546 | | { |
| 0 | 547 | | writer.WriteElementString("aspectratio", hasAspectRatio.AspectRatio); |
| | 548 | | } |
| | 549 | |
|
| 0 | 550 | | if (item.TryGetProviderId(MetadataProvider.Tmdb, out var tmdbCollection)) |
| | 551 | | { |
| 0 | 552 | | writer.WriteElementString("collectionnumber", tmdbCollection); |
| 0 | 553 | | writtenProviderIds.Add(MetadataProvider.TmdbCollection.ToString()); |
| | 554 | | } |
| | 555 | |
|
| 0 | 556 | | if (item.TryGetProviderId(MetadataProvider.Imdb, out var imdb)) |
| | 557 | | { |
| 0 | 558 | | if (item is Series) |
| | 559 | | { |
| 0 | 560 | | writer.WriteElementString("imdb_id", imdb); |
| | 561 | | } |
| | 562 | | else |
| | 563 | | { |
| 0 | 564 | | writer.WriteElementString("imdbid", imdb); |
| | 565 | | } |
| | 566 | |
|
| 0 | 567 | | writtenProviderIds.Add(MetadataProvider.Imdb.ToString()); |
| | 568 | | } |
| | 569 | |
|
| | 570 | | // Series xml saver already saves this |
| 0 | 571 | | if (item is not Series) |
| | 572 | | { |
| 0 | 573 | | if (item.TryGetProviderId(MetadataProvider.Tvdb, out var tvdb)) |
| | 574 | | { |
| 0 | 575 | | writer.WriteElementString("tvdbid", tvdb); |
| 0 | 576 | | writtenProviderIds.Add(MetadataProvider.Tvdb.ToString()); |
| | 577 | | } |
| | 578 | | } |
| | 579 | |
|
| 0 | 580 | | if (item.TryGetProviderId(MetadataProvider.Tmdb, out var tmdb)) |
| | 581 | | { |
| 0 | 582 | | writer.WriteElementString("tmdbid", tmdb); |
| 0 | 583 | | writtenProviderIds.Add(MetadataProvider.Tmdb.ToString()); |
| | 584 | | } |
| | 585 | |
|
| 0 | 586 | | if (!string.IsNullOrEmpty(item.PreferredMetadataLanguage)) |
| | 587 | | { |
| 0 | 588 | | writer.WriteElementString("language", item.PreferredMetadataLanguage); |
| | 589 | | } |
| | 590 | |
|
| 0 | 591 | | if (!string.IsNullOrEmpty(item.PreferredMetadataCountryCode)) |
| | 592 | | { |
| 0 | 593 | | writer.WriteElementString("countrycode", item.PreferredMetadataCountryCode); |
| | 594 | | } |
| | 595 | |
|
| 0 | 596 | | if (item.PremiereDate.HasValue && item is not Episode) |
| | 597 | | { |
| 0 | 598 | | var formatString = options.ReleaseDateFormat; |
| | 599 | |
|
| 0 | 600 | | if (item is MusicArtist) |
| | 601 | | { |
| 0 | 602 | | writer.WriteElementString( |
| 0 | 603 | | "formed", |
| 0 | 604 | | item.PremiereDate.Value.ToString(formatString, CultureInfo.InvariantCulture)); |
| | 605 | | } |
| | 606 | | else |
| | 607 | | { |
| 0 | 608 | | writer.WriteElementString( |
| 0 | 609 | | "premiered", |
| 0 | 610 | | item.PremiereDate.Value.ToString(formatString, CultureInfo.InvariantCulture)); |
| 0 | 611 | | writer.WriteElementString( |
| 0 | 612 | | "releasedate", |
| 0 | 613 | | item.PremiereDate.Value.ToString(formatString, CultureInfo.InvariantCulture)); |
| | 614 | | } |
| | 615 | | } |
| | 616 | |
|
| 0 | 617 | | if (item.EndDate.HasValue) |
| | 618 | | { |
| 0 | 619 | | if (item is not Episode) |
| | 620 | | { |
| 0 | 621 | | var formatString = options.ReleaseDateFormat; |
| | 622 | |
|
| 0 | 623 | | writer.WriteElementString( |
| 0 | 624 | | "enddate", |
| 0 | 625 | | item.EndDate.Value.ToString(formatString, CultureInfo.InvariantCulture)); |
| | 626 | | } |
| | 627 | | } |
| | 628 | |
|
| 0 | 629 | | if (item.CriticRating.HasValue) |
| | 630 | | { |
| 0 | 631 | | writer.WriteElementString( |
| 0 | 632 | | "criticrating", |
| 0 | 633 | | item.CriticRating.Value.ToString(CultureInfo.InvariantCulture)); |
| | 634 | | } |
| | 635 | |
|
| 0 | 636 | | if (item is IHasDisplayOrder hasDisplayOrder) |
| | 637 | | { |
| 0 | 638 | | if (!string.IsNullOrEmpty(hasDisplayOrder.DisplayOrder)) |
| | 639 | | { |
| 0 | 640 | | writer.WriteElementString("displayorder", hasDisplayOrder.DisplayOrder); |
| | 641 | | } |
| | 642 | | } |
| | 643 | |
|
| | 644 | | // Use original runtime here, actual file runtime later in MediaInfo |
| 0 | 645 | | var runTimeTicks = item.RunTimeTicks; |
| | 646 | |
|
| 0 | 647 | | if (runTimeTicks.HasValue) |
| | 648 | | { |
| 0 | 649 | | var timespan = TimeSpan.FromTicks(runTimeTicks.Value); |
| | 650 | |
|
| 0 | 651 | | writer.WriteElementString( |
| 0 | 652 | | "runtime", |
| 0 | 653 | | Convert.ToInt64(timespan.TotalMinutes).ToString(CultureInfo.InvariantCulture)); |
| | 654 | | } |
| | 655 | |
|
| 0 | 656 | | if (!string.IsNullOrWhiteSpace(item.Tagline)) |
| | 657 | | { |
| 0 | 658 | | writer.WriteElementString("tagline", item.Tagline); |
| | 659 | | } |
| | 660 | |
|
| 0 | 661 | | foreach (var country in item.ProductionLocations.Trimmed().OrderBy(country => country)) |
| | 662 | | { |
| 0 | 663 | | writer.WriteElementString("country", country); |
| | 664 | | } |
| | 665 | |
|
| 0 | 666 | | foreach (var genre in item.Genres.Trimmed().OrderBy(genre => genre)) |
| | 667 | | { |
| 0 | 668 | | writer.WriteElementString("genre", genre); |
| | 669 | | } |
| | 670 | |
|
| 0 | 671 | | foreach (var studio in item.Studios.Trimmed().OrderBy(studio => studio)) |
| | 672 | | { |
| 0 | 673 | | writer.WriteElementString("studio", studio); |
| | 674 | | } |
| | 675 | |
|
| 0 | 676 | | foreach (var tag in item.Tags.Trimmed().OrderBy(tag => tag)) |
| | 677 | | { |
| 0 | 678 | | if (item is MusicAlbum || item is MusicArtist) |
| | 679 | | { |
| 0 | 680 | | writer.WriteElementString("style", tag); |
| | 681 | | } |
| | 682 | | else |
| | 683 | | { |
| 0 | 684 | | writer.WriteElementString("tag", tag); |
| | 685 | | } |
| | 686 | | } |
| | 687 | |
|
| 0 | 688 | | if (item.TryGetProviderId(MetadataProvider.AudioDbArtist, out var externalId)) |
| | 689 | | { |
| 0 | 690 | | writer.WriteElementString("audiodbartistid", externalId); |
| 0 | 691 | | writtenProviderIds.Add(MetadataProvider.AudioDbArtist.ToString()); |
| | 692 | | } |
| | 693 | |
|
| 0 | 694 | | if (item.TryGetProviderId(MetadataProvider.AudioDbAlbum, out externalId)) |
| | 695 | | { |
| 0 | 696 | | writer.WriteElementString("audiodbalbumid", externalId); |
| 0 | 697 | | writtenProviderIds.Add(MetadataProvider.AudioDbAlbum.ToString()); |
| | 698 | | } |
| | 699 | |
|
| 0 | 700 | | if (item.TryGetProviderId(MetadataProvider.Zap2It, out externalId)) |
| | 701 | | { |
| 0 | 702 | | writer.WriteElementString("zap2itid", externalId); |
| 0 | 703 | | writtenProviderIds.Add(MetadataProvider.Zap2It.ToString()); |
| | 704 | | } |
| | 705 | |
|
| 0 | 706 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzAlbum, out externalId)) |
| | 707 | | { |
| 0 | 708 | | writer.WriteElementString("musicbrainzalbumid", externalId); |
| 0 | 709 | | writtenProviderIds.Add(MetadataProvider.MusicBrainzAlbum.ToString()); |
| | 710 | | } |
| | 711 | |
|
| 0 | 712 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzAlbumArtist, out externalId)) |
| | 713 | | { |
| 0 | 714 | | writer.WriteElementString("musicbrainzalbumartistid", externalId); |
| 0 | 715 | | writtenProviderIds.Add(MetadataProvider.MusicBrainzAlbumArtist.ToString()); |
| | 716 | | } |
| | 717 | |
|
| 0 | 718 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzArtist, out externalId)) |
| | 719 | | { |
| 0 | 720 | | writer.WriteElementString("musicbrainzartistid", externalId); |
| 0 | 721 | | writtenProviderIds.Add(MetadataProvider.MusicBrainzArtist.ToString()); |
| | 722 | | } |
| | 723 | |
|
| 0 | 724 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzReleaseGroup, out externalId)) |
| | 725 | | { |
| 0 | 726 | | writer.WriteElementString("musicbrainzreleasegroupid", externalId); |
| 0 | 727 | | writtenProviderIds.Add(MetadataProvider.MusicBrainzReleaseGroup.ToString()); |
| | 728 | | } |
| | 729 | |
|
| 0 | 730 | | if (item.TryGetProviderId(MetadataProvider.TvRage, out externalId)) |
| | 731 | | { |
| 0 | 732 | | writer.WriteElementString("tvrageid", externalId); |
| 0 | 733 | | writtenProviderIds.Add(MetadataProvider.TvRage.ToString()); |
| | 734 | | } |
| | 735 | |
|
| 0 | 736 | | if (item.ProviderIds is not null) |
| | 737 | | { |
| 0 | 738 | | foreach (var providerKey in item.ProviderIds.Keys.OrderBy(providerKey => providerKey)) |
| | 739 | | { |
| 0 | 740 | | var providerId = item.ProviderIds[providerKey]; |
| 0 | 741 | | if (!string.IsNullOrEmpty(providerId) && !writtenProviderIds.Contains(providerKey)) |
| | 742 | | { |
| | 743 | | try |
| | 744 | | { |
| 0 | 745 | | var tagName = GetTagForProviderKey(providerKey); |
| 0 | 746 | | Logger.LogDebug("Verifying custom provider tagname {0}", tagName); |
| 0 | 747 | | XmlConvert.VerifyName(tagName); |
| 0 | 748 | | Logger.LogDebug("Saving custom provider tagname {0}", tagName); |
| | 749 | |
|
| 0 | 750 | | writer.WriteElementString(tagName, providerId); |
| 0 | 751 | | } |
| 0 | 752 | | catch (ArgumentException) |
| | 753 | | { |
| | 754 | | // catch invalid names without failing the entire operation |
| 0 | 755 | | } |
| 0 | 756 | | catch (XmlException) |
| | 757 | | { |
| | 758 | | // catch invalid names without failing the entire operation |
| 0 | 759 | | } |
| | 760 | | } |
| | 761 | | } |
| | 762 | | } |
| | 763 | |
|
| 0 | 764 | | if (options.SaveImagePathsInNfo) |
| | 765 | | { |
| 0 | 766 | | AddImages(item, writer, libraryManager); |
| | 767 | | } |
| | 768 | |
|
| 0 | 769 | | AddUserData(item, writer, userManager, userDataRepo, options); |
| | 770 | |
|
| 0 | 771 | | if (item is not MusicAlbum && item is not MusicArtist) |
| | 772 | | { |
| 0 | 773 | | AddActors(people, writer, libraryManager, options.SaveImagePathsInNfo); |
| | 774 | | } |
| | 775 | |
|
| 0 | 776 | | if (item is BoxSet folder) |
| | 777 | | { |
| 0 | 778 | | AddCollectionItems(folder, writer); |
| | 779 | | } |
| 0 | 780 | | } |
| | 781 | |
|
| | 782 | | private void AddCollectionItems(Folder item, XmlWriter writer) |
| | 783 | | { |
| 0 | 784 | | var items = item.LinkedChildren |
| 0 | 785 | | .Where(i => i.Type == LinkedChildType.Manual) |
| 0 | 786 | | .OrderBy(i => i.Path?.Trim()) |
| 0 | 787 | | .ThenBy(i => i.LibraryItemId?.Trim()) |
| 0 | 788 | | .ToList(); |
| | 789 | |
|
| 0 | 790 | | foreach (var link in items) |
| | 791 | | { |
| 0 | 792 | | writer.WriteStartElement("collectionitem"); |
| | 793 | |
|
| 0 | 794 | | if (!string.IsNullOrWhiteSpace(link.Path)) |
| | 795 | | { |
| 0 | 796 | | writer.WriteElementString("path", link.Path); |
| | 797 | | } |
| | 798 | |
|
| 0 | 799 | | if (!string.IsNullOrWhiteSpace(link.LibraryItemId)) |
| | 800 | | { |
| 0 | 801 | | writer.WriteElementString("ItemId", link.LibraryItemId); |
| | 802 | | } |
| | 803 | |
|
| 0 | 804 | | writer.WriteEndElement(); |
| | 805 | | } |
| 0 | 806 | | } |
| | 807 | |
|
| | 808 | | /// <summary> |
| | 809 | | /// Gets the output trailer URL. |
| | 810 | | /// </summary> |
| | 811 | | /// <param name="url">The URL.</param> |
| | 812 | | /// <returns>System.String.</returns> |
| | 813 | | private string GetOutputTrailerUrl(string url) |
| | 814 | | { |
| | 815 | | // This is what xbmc expects |
| 0 | 816 | | return url.Replace(YouTubeWatchUrl, "plugin://plugin.video.youtube/play/?video_id=", StringComparison.Ordina |
| | 817 | | } |
| | 818 | |
|
| | 819 | | private void AddImages(BaseItem item, XmlWriter writer, ILibraryManager libraryManager) |
| | 820 | | { |
| 0 | 821 | | writer.WriteStartElement("art"); |
| | 822 | |
|
| 0 | 823 | | var image = item.GetImageInfo(ImageType.Primary, 0); |
| | 824 | |
|
| 0 | 825 | | if (image is not null) |
| | 826 | | { |
| 0 | 827 | | writer.WriteElementString("poster", GetImagePathToSave(image, libraryManager)); |
| | 828 | | } |
| | 829 | |
|
| 0 | 830 | | foreach (var backdrop in item.GetImages(ImageType.Backdrop).OrderBy(b => b.Path?.Trim())) |
| | 831 | | { |
| 0 | 832 | | writer.WriteElementString("fanart", GetImagePathToSave(backdrop, libraryManager)); |
| | 833 | | } |
| | 834 | |
|
| 0 | 835 | | writer.WriteEndElement(); |
| 0 | 836 | | } |
| | 837 | |
|
| | 838 | | private void AddUserData(BaseItem item, XmlWriter writer, IUserManager userManager, IUserDataManager userDataRep |
| | 839 | | { |
| 0 | 840 | | var userId = options.UserId; |
| 0 | 841 | | if (string.IsNullOrWhiteSpace(userId)) |
| | 842 | | { |
| 0 | 843 | | return; |
| | 844 | | } |
| | 845 | |
|
| 0 | 846 | | var user = userManager.GetUserById(Guid.Parse(userId)); |
| | 847 | |
|
| 0 | 848 | | if (user is null) |
| | 849 | | { |
| 0 | 850 | | return; |
| | 851 | | } |
| | 852 | |
|
| 0 | 853 | | if (item.IsFolder) |
| | 854 | | { |
| 0 | 855 | | return; |
| | 856 | | } |
| | 857 | |
|
| 0 | 858 | | var userdata = userDataRepo.GetUserData(user, item); |
| | 859 | |
|
| 0 | 860 | | if (userdata is not null) |
| | 861 | | { |
| 0 | 862 | | writer.WriteElementString( |
| 0 | 863 | | "isuserfavorite", |
| 0 | 864 | | userdata.IsFavorite.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()); |
| | 865 | |
|
| 0 | 866 | | if (userdata.Rating.HasValue) |
| | 867 | | { |
| 0 | 868 | | writer.WriteElementString( |
| 0 | 869 | | "userrating", |
| 0 | 870 | | userdata.Rating.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()); |
| | 871 | | } |
| | 872 | |
|
| 0 | 873 | | if (!item.IsFolder) |
| | 874 | | { |
| 0 | 875 | | writer.WriteElementString( |
| 0 | 876 | | "playcount", |
| 0 | 877 | | userdata.PlayCount.ToString(CultureInfo.InvariantCulture)); |
| 0 | 878 | | writer.WriteElementString( |
| 0 | 879 | | "watched", |
| 0 | 880 | | userdata.Played.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()); |
| | 881 | |
|
| 0 | 882 | | if (userdata.LastPlayedDate.HasValue) |
| | 883 | | { |
| 0 | 884 | | writer.WriteElementString( |
| 0 | 885 | | "lastplayed", |
| 0 | 886 | | userdata.LastPlayedDate.Value.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture). |
| | 887 | | } |
| | 888 | |
|
| 0 | 889 | | writer.WriteStartElement("resume"); |
| | 890 | |
|
| 0 | 891 | | var runTimeTicks = item.RunTimeTicks ?? 0; |
| | 892 | |
|
| 0 | 893 | | writer.WriteElementString( |
| 0 | 894 | | "position", |
| 0 | 895 | | TimeSpan.FromTicks(userdata.PlaybackPositionTicks).TotalSeconds.ToString(CultureInfo.InvariantCu |
| 0 | 896 | | writer.WriteElementString( |
| 0 | 897 | | "total", |
| 0 | 898 | | TimeSpan.FromTicks(runTimeTicks).TotalSeconds.ToString(CultureInfo.InvariantCulture)); |
| | 899 | | } |
| | 900 | | } |
| | 901 | |
|
| 0 | 902 | | writer.WriteEndElement(); |
| 0 | 903 | | } |
| | 904 | |
|
| | 905 | | private void AddActors(IReadOnlyList<PersonInfo> people, XmlWriter writer, ILibraryManager libraryManager, bool |
| | 906 | | { |
| 0 | 907 | | foreach (var person in people |
| 0 | 908 | | .OrderBy(person => person.SortOrder ?? 0) |
| 0 | 909 | | .ThenBy(person => person.Name?.Trim())) |
| | 910 | | { |
| 0 | 911 | | if (person.IsType(PersonKind.Director) || person.IsType(PersonKind.Writer)) |
| | 912 | | { |
| | 913 | | continue; |
| | 914 | | } |
| | 915 | |
|
| 0 | 916 | | writer.WriteStartElement("actor"); |
| | 917 | |
|
| 0 | 918 | | if (!string.IsNullOrWhiteSpace(person.Name)) |
| | 919 | | { |
| 0 | 920 | | writer.WriteElementString("name", person.Name); |
| | 921 | | } |
| | 922 | |
|
| 0 | 923 | | if (!string.IsNullOrWhiteSpace(person.Role)) |
| | 924 | | { |
| 0 | 925 | | writer.WriteElementString("role", person.Role); |
| | 926 | | } |
| | 927 | |
|
| 0 | 928 | | if (person.Type != PersonKind.Unknown) |
| | 929 | | { |
| 0 | 930 | | writer.WriteElementString("type", person.Type.ToString()); |
| | 931 | | } |
| | 932 | |
|
| 0 | 933 | | if (person.SortOrder.HasValue) |
| | 934 | | { |
| 0 | 935 | | writer.WriteElementString( |
| 0 | 936 | | "sortorder", |
| 0 | 937 | | person.SortOrder.Value.ToString(CultureInfo.InvariantCulture)); |
| | 938 | | } |
| | 939 | |
|
| 0 | 940 | | if (saveImagePath) |
| | 941 | | { |
| 0 | 942 | | var personEntity = libraryManager.GetPerson(person.Name); |
| 0 | 943 | | var image = personEntity?.GetImageInfo(ImageType.Primary, 0); |
| | 944 | |
|
| 0 | 945 | | if (image is not null) |
| | 946 | | { |
| 0 | 947 | | writer.WriteElementString( |
| 0 | 948 | | "thumb", |
| 0 | 949 | | GetImagePathToSave(image, libraryManager)); |
| | 950 | | } |
| | 951 | | } |
| | 952 | |
|
| 0 | 953 | | writer.WriteEndElement(); |
| | 954 | | } |
| 0 | 955 | | } |
| | 956 | |
|
| | 957 | | private string GetImagePathToSave(ItemImageInfo image, ILibraryManager libraryManager) |
| | 958 | | { |
| 0 | 959 | | if (!image.IsLocalFile) |
| | 960 | | { |
| 0 | 961 | | return image.Path; |
| | 962 | | } |
| | 963 | |
|
| 0 | 964 | | return libraryManager.GetPathAfterNetworkSubstitution(image.Path); |
| | 965 | | } |
| | 966 | |
|
| | 967 | | private void AddCustomTags(string path, IReadOnlyCollection<string> xmlTagsUsed, XmlWriter writer, ILogger<BaseN |
| | 968 | | { |
| 0 | 969 | | var settings = new XmlReaderSettings() |
| 0 | 970 | | { |
| 0 | 971 | | ValidationType = ValidationType.None, |
| 0 | 972 | | CheckCharacters = false, |
| 0 | 973 | | IgnoreProcessingInstructions = true, |
| 0 | 974 | | IgnoreComments = true |
| 0 | 975 | | }; |
| | 976 | |
|
| 0 | 977 | | using (var fileStream = File.OpenRead(path)) |
| 0 | 978 | | using (var streamReader = new StreamReader(fileStream, Encoding.UTF8)) |
| 0 | 979 | | using (var reader = XmlReader.Create(streamReader, settings)) |
| | 980 | | { |
| | 981 | | try |
| | 982 | | { |
| 0 | 983 | | reader.MoveToContent(); |
| 0 | 984 | | } |
| 0 | 985 | | catch (Exception ex) |
| | 986 | | { |
| 0 | 987 | | logger.LogError(ex, "Error reading existing xml tags from {Path}.", path); |
| 0 | 988 | | return; |
| | 989 | | } |
| | 990 | |
|
| 0 | 991 | | reader.Read(); |
| | 992 | |
|
| | 993 | | // Loop through each element |
| 0 | 994 | | while (!reader.EOF && reader.ReadState == ReadState.Interactive) |
| | 995 | | { |
| 0 | 996 | | if (reader.NodeType == XmlNodeType.Element) |
| | 997 | | { |
| 0 | 998 | | var name = reader.Name; |
| | 999 | |
|
| 0 | 1000 | | if (!_commonTags.Contains(name) |
| 0 | 1001 | | && !xmlTagsUsed.Contains(name, StringComparison.OrdinalIgnoreCase)) |
| | 1002 | | { |
| 0 | 1003 | | writer.WriteNode(reader, false); |
| | 1004 | | } |
| | 1005 | | else |
| | 1006 | | { |
| 0 | 1007 | | reader.Skip(); |
| | 1008 | | } |
| | 1009 | | } |
| | 1010 | | else |
| | 1011 | | { |
| 0 | 1012 | | reader.Read(); |
| | 1013 | | } |
| | 1014 | | } |
| 0 | 1015 | | } |
| 0 | 1016 | | } |
| | 1017 | |
|
| | 1018 | | private string GetTagForProviderKey(string providerKey) |
| 0 | 1019 | | => providerKey.ToLowerInvariant() + "id"; |
| | 1020 | |
|
| | 1021 | | protected static string SortNameOrName(BaseItem item) |
| | 1022 | | { |
| 0 | 1023 | | if (item is null) |
| | 1024 | | { |
| 0 | 1025 | | return string.Empty; |
| | 1026 | | } |
| | 1027 | |
|
| 0 | 1028 | | if (item.SortName is not null) |
| | 1029 | | { |
| 0 | 1030 | | string trimmed = item.SortName.Trim(); |
| 0 | 1031 | | if (trimmed.Length > 0) |
| | 1032 | | { |
| 0 | 1033 | | return trimmed; |
| | 1034 | | } |
| | 1035 | | } |
| | 1036 | |
|
| 0 | 1037 | | return (item.Name ?? string.Empty).Trim(); |
| | 1038 | | } |
| | 1039 | | } |
| | 1040 | | } |