123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.TV;
- using MediaBrowser.Controller.Persistence;
- using MediaBrowser.Model.Entities;
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.IO;
- using System.Linq;
- using System.Security;
- using System.Text;
- using System.Xml;
- namespace MediaBrowser.Providers.Savers
- {
- /// <summary>
- /// Class XmlHelpers
- /// </summary>
- public static class XmlSaverHelpers
- {
- private static readonly Dictionary<string, string> CommonTags = new[] {
-
- "Added",
- "AspectRatio",
- "BirthDate",
- "Budget",
- "certification",
- "Chapters",
- "ContentRating",
- "CustomRating",
- "CriticRating",
- "CriticRatingSummary",
- "DeathDate",
- "EndDate",
- "Genres",
- "Genre",
- "GamesDbId",
- "IMDB_ID",
- "IMDB",
- "IMDbId",
- "Language",
- "LocalTitle",
- "LockData",
- "LockedFields",
- "MediaInfo",
- "MPAARating",
- "MusicbrainzId",
- "MusicBrainzReleaseGroupId",
- "Overview",
- "Persons",
- "PremiereDate",
- "ProductionYear",
- "Rating",
- "Revenue",
- "RottenTomatoesId",
- "RunningTime",
- "Runtime",
- "SortTitle",
- "Studios",
- "Tags",
- "TagLine",
- "Taglines",
- "TMDbCollectionId",
- "TMDbId",
- "Trailer",
- "TVcomId",
- "TvDbId",
- "Type",
- "VoteCount",
- "Website",
- "Zap2ItId"
- }.ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
- /// <summary>
- /// The us culture
- /// </summary>
- private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
- /// <summary>
- /// Saves the specified XML.
- /// </summary>
- /// <param name="xml">The XML.</param>
- /// <param name="path">The path.</param>
- /// <param name="xmlTagsUsed">The XML tags used.</param>
- public static void Save(StringBuilder xml, string path, List<string> xmlTagsUsed)
- {
- if (File.Exists(path))
- {
- var position = xml.ToString().LastIndexOf("</", StringComparison.OrdinalIgnoreCase);
- xml.Insert(position, GetCustomTags(path, xmlTagsUsed));
- }
- var xmlDocument = new XmlDocument();
- xmlDocument.LoadXml(xml.ToString());
- //Add the new node to the document.
- xmlDocument.InsertBefore(xmlDocument.CreateXmlDeclaration("1.0", "UTF-8", "yes"), xmlDocument.DocumentElement);
- var parentPath = Path.GetDirectoryName(path);
- Directory.CreateDirectory(parentPath);
- var wasHidden = false;
- var file = new FileInfo(path);
- // This will fail if the file is hidden
- if (file.Exists)
- {
- if ((file.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
- {
- file.Attributes &= ~FileAttributes.Hidden;
- wasHidden = true;
- }
- }
- using (var filestream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read))
- {
- using (var streamWriter = new StreamWriter(filestream, Encoding.UTF8))
- {
- xmlDocument.Save(streamWriter);
- }
- }
- if (wasHidden)
- {
- file.Refresh();
- // Add back the attribute
- file.Attributes |= FileAttributes.Hidden;
- }
- }
- /// <summary>
- /// Gets the custom tags.
- /// </summary>
- /// <param name="path">The path.</param>
- /// <param name="xmlTagsUsed">The XML tags used.</param>
- /// <returns>System.String.</returns>
- private static string GetCustomTags(string path, List<string> xmlTagsUsed)
- {
- var settings = new XmlReaderSettings
- {
- CheckCharacters = false,
- IgnoreProcessingInstructions = true,
- IgnoreComments = true,
- ValidationType = ValidationType.None
- };
- var builder = new StringBuilder();
- using (var streamReader = new StreamReader(path, Encoding.UTF8))
- {
- // Use XmlReader for best performance
- using (var reader = XmlReader.Create(streamReader, settings))
- {
- reader.MoveToContent();
- // Loop through each element
- while (reader.Read())
- {
- if (reader.NodeType == XmlNodeType.Element)
- {
- var name = reader.Name;
- if (!CommonTags.ContainsKey(name) && !xmlTagsUsed.Contains(name, StringComparer.OrdinalIgnoreCase))
- {
- builder.AppendLine(reader.ReadOuterXml());
- }
- else
- {
- reader.Skip();
- }
- }
- }
- }
- }
-
- return builder.ToString();
- }
- /// <summary>
- /// Adds the common nodes.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="builder">The builder.</param>
- public static void AddCommonNodes(BaseItem item, StringBuilder builder)
- {
- if (!string.IsNullOrEmpty(item.OfficialRating))
- {
- builder.Append("<ContentRating>" + SecurityElement.Escape(item.OfficialRating) + "</ContentRating>");
- builder.Append("<MPAARating>" + SecurityElement.Escape(item.OfficialRating) + "</MPAARating>");
- builder.Append("<certification>" + SecurityElement.Escape(item.OfficialRating) + "</certification>");
- }
- builder.Append("<Added>" + SecurityElement.Escape(item.DateCreated.ToLocalTime().ToString("G")) + "</Added>");
- builder.Append("<LockData>" + item.DontFetchMeta.ToString().ToLower() + "</LockData>");
- if (item.LockedFields.Count > 0)
- {
- builder.Append("<LockedFields>" + string.Join("|", item.LockedFields.Select(i => i.ToString()).ToArray()) + "</LockedFields>");
- }
- if (!string.IsNullOrEmpty(item.DisplayMediaType))
- {
- builder.Append("<Type>" + SecurityElement.Escape(item.DisplayMediaType) + "</Type>");
- }
- if (item.CriticRating.HasValue)
- {
- builder.Append("<CriticRating>" + SecurityElement.Escape(item.CriticRating.Value.ToString(UsCulture)) + "</CriticRating>");
- }
- if (!string.IsNullOrEmpty(item.CriticRatingSummary))
- {
- builder.Append("<CriticRatingSummary><![CDATA[" + item.CriticRatingSummary + "]]></CriticRatingSummary>");
- }
- if (!string.IsNullOrEmpty(item.Overview))
- {
- builder.Append("<Overview><![CDATA[" + item.Overview + "]]></Overview>");
- }
- if (!string.IsNullOrEmpty(item.CustomRating))
- {
- builder.Append("<CustomRating>" + SecurityElement.Escape(item.CustomRating) + "</CustomRating>");
- }
- if (!string.IsNullOrEmpty(item.Name) && !(item is Episode))
- {
- builder.Append("<LocalTitle>" + SecurityElement.Escape(item.Name) + "</LocalTitle>");
- }
- if (!string.IsNullOrEmpty(item.ForcedSortName))
- {
- builder.Append("<SortTitle>" + SecurityElement.Escape(item.ForcedSortName) + "</SortTitle>");
- }
- if (item.PremiereDate.HasValue)
- {
- if (item is Person)
- {
- builder.Append("<BirthDate>" + SecurityElement.Escape(item.PremiereDate.Value.ToString("yyyy-MM-dd")) + "</BirthDate>");
- }
- else if (!(item is Episode))
- {
- builder.Append("<PremiereDate>" + SecurityElement.Escape(item.PremiereDate.Value.ToString("yyyy-MM-dd")) + "</PremiereDate>");
- }
- }
- if (item.EndDate.HasValue)
- {
- if (item is Person)
- {
- builder.Append("<DeathDate>" + SecurityElement.Escape(item.EndDate.Value.ToString("yyyy-MM-dd")) + "</DeathDate>");
- }
- else if (!(item is Episode))
- {
- builder.Append("<EndDate>" + SecurityElement.Escape(item.EndDate.Value.ToString("yyyy-MM-dd")) + "</EndDate>");
- }
- }
- if (item.RemoteTrailers.Count > 0)
- {
- builder.Append("<Trailer>" + SecurityElement.Escape(item.RemoteTrailers[0].Url) + "</Trailer>");
- }
- if (item.Budget.HasValue)
- {
- builder.Append("<Budget>" + SecurityElement.Escape(item.Budget.Value.ToString(UsCulture)) + "</Budget>");
- }
- if (item.Revenue.HasValue)
- {
- builder.Append("<Revenue>" + SecurityElement.Escape(item.Revenue.Value.ToString(UsCulture)) + "</Revenue>");
- }
- if (item.CommunityRating.HasValue)
- {
- builder.Append("<Rating>" + SecurityElement.Escape(item.CommunityRating.Value.ToString(UsCulture)) + "</Rating>");
- }
- if (item.VoteCount.HasValue)
- {
- builder.Append("<VoteCount>" + SecurityElement.Escape(item.VoteCount.Value.ToString(UsCulture)) + "</VoteCount>");
- }
- if (item.ProductionYear.HasValue && !(item is Person))
- {
- builder.Append("<ProductionYear>" + SecurityElement.Escape(item.ProductionYear.Value.ToString(UsCulture)) + "</ProductionYear>");
- }
- if (!string.IsNullOrEmpty(item.HomePageUrl))
- {
- builder.Append("<Website>" + SecurityElement.Escape(item.HomePageUrl) + "</Website>");
- }
- if (!string.IsNullOrEmpty(item.AspectRatio))
- {
- builder.Append("<AspectRatio>" + SecurityElement.Escape(item.AspectRatio) + "</AspectRatio>");
- }
- if (!string.IsNullOrEmpty(item.Language))
- {
- builder.Append("<Language>" + SecurityElement.Escape(item.Language) + "</Language>");
- }
- // Use original runtime here, actual file runtime later in MediaInfo
- var runTimeTicks = item.OriginalRunTimeTicks ?? item.RunTimeTicks;
- if (runTimeTicks.HasValue)
- {
- var timespan = TimeSpan.FromTicks(runTimeTicks.Value);
- builder.Append("<RunningTime>" + Convert.ToInt32(timespan.TotalMinutes).ToString(UsCulture) + "</RunningTime>");
- builder.Append("<Runtime>" + Convert.ToInt32(timespan.TotalMinutes).ToString(UsCulture) + "</Runtime>");
- }
- var imdb = item.GetProviderId(MetadataProviders.Imdb);
- if (!string.IsNullOrEmpty(imdb))
- {
- builder.Append("<IMDB_ID>" + SecurityElement.Escape(imdb) + "</IMDB_ID>");
- builder.Append("<IMDB>" + SecurityElement.Escape(imdb) + "</IMDB>");
- builder.Append("<IMDbId>" + SecurityElement.Escape(imdb) + "</IMDbId>");
- }
- var tmdb = item.GetProviderId(MetadataProviders.Tmdb);
- if (!string.IsNullOrEmpty(tmdb))
- {
- builder.Append("<TMDbId>" + SecurityElement.Escape(tmdb) + "</TMDbId>");
- }
- if (!(item is Series))
- {
- var tvdb = item.GetProviderId(MetadataProviders.Tvdb);
- if (!string.IsNullOrEmpty(tvdb))
- {
- builder.Append("<TvDbId>" + SecurityElement.Escape(tvdb) + "</TvDbId>");
- }
- }
- var tvcom = item.GetProviderId(MetadataProviders.Tvcom);
- if (!string.IsNullOrEmpty(tvcom))
- {
- builder.Append("<TVcomId>" + SecurityElement.Escape(tvcom) + "</TVcomId>");
- }
- var rt = item.GetProviderId(MetadataProviders.RottenTomatoes);
- if (!string.IsNullOrEmpty(rt))
- {
- builder.Append("<RottenTomatoesId>" + SecurityElement.Escape(rt) + "</RottenTomatoesId>");
- }
- var zap2It = item.GetProviderId(MetadataProviders.Zap2It);
- if (!string.IsNullOrEmpty(zap2It))
- {
- builder.Append("<Zap2ItId>" + SecurityElement.Escape(zap2It) + "</Zap2ItId>");
- }
- var mbz = item.GetProviderId(MetadataProviders.Musicbrainz);
- if (!string.IsNullOrEmpty(mbz))
- {
- builder.Append("<MusicbrainzId>" + SecurityElement.Escape(mbz) + "</MusicbrainzId>");
- }
- mbz = item.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
- if (!string.IsNullOrEmpty(mbz))
- {
- builder.Append("<MusicBrainzReleaseGroupId>" + SecurityElement.Escape(mbz) + "</MusicBrainzReleaseGroupId>");
- }
- var gamesdb = item.GetProviderId(MetadataProviders.Gamesdb);
- if (!string.IsNullOrEmpty(gamesdb))
- {
- builder.Append("<GamesDbId>" + SecurityElement.Escape(gamesdb) + "</GamesDbId>");
- }
- var tmdbCollection = item.GetProviderId(MetadataProviders.TmdbCollection);
- if (!string.IsNullOrEmpty(tmdbCollection))
- {
- builder.Append("<TMDbCollectionId>" + SecurityElement.Escape(tmdbCollection) + "</TMDbCollectionId>");
- }
- if (item.Taglines.Count > 0)
- {
- builder.Append("<TagLine>" + SecurityElement.Escape(item.Taglines[0]) + "</TagLine>");
- builder.Append("<Taglines>");
- foreach (var tagline in item.Taglines)
- {
- builder.Append("<Tagline>" + SecurityElement.Escape(tagline) + "</Tagline>");
- }
- builder.Append("</Taglines>");
- }
- if (item.Genres.Count > 0)
- {
- builder.Append("<Genres>");
- foreach (var genre in item.Genres)
- {
- builder.Append("<Genre>" + SecurityElement.Escape(genre) + "</Genre>");
- }
- builder.Append("</Genres>");
- builder.Append("<Genre>" + SecurityElement.Escape(string.Join("|", item.Genres.ToArray())) + "</Genre>");
- }
- if (item.Studios.Count > 0)
- {
- builder.Append("<Studios>");
- foreach (var studio in item.Studios)
- {
- builder.Append("<Studio>" + SecurityElement.Escape(studio) + "</Studio>");
- }
- builder.Append("</Studios>");
- }
- if (item.Tags.Count > 0)
- {
- builder.Append("<Tags>");
- foreach (var tag in item.Tags)
- {
- builder.Append("<Tag>" + SecurityElement.Escape(tag) + "</Tag>");
- }
- builder.Append("</Tags>");
- }
- if (item.People.Count > 0)
- {
- builder.Append("<Persons>");
- foreach (var person in item.People)
- {
- builder.Append("<Person>");
- builder.Append("<Name>" + SecurityElement.Escape(person.Name) + "</Name>");
- builder.Append("<Type>" + SecurityElement.Escape(person.Type) + "</Type>");
- builder.Append("<Role>" + SecurityElement.Escape(person.Role) + "</Role>");
- builder.Append("</Person>");
- }
- builder.Append("</Persons>");
- }
- }
- public static void AddChapters(Video item, StringBuilder builder, IItemRepository repository)
- {
- var chapters = repository.GetChapters(item.Id);
- builder.Append("<Chapters>");
- foreach (var chapter in chapters)
- {
- builder.Append("<Chapter>");
- builder.Append("<Name>" + SecurityElement.Escape(chapter.Name) + "</Name>");
- var time = TimeSpan.FromTicks(chapter.StartPositionTicks);
- var ms = Convert.ToInt64(time.TotalMilliseconds);
- builder.Append("<StartPositionMs>" + SecurityElement.Escape(ms.ToString(UsCulture)) + "</StartPositionMs>");
- builder.Append("</Chapter>");
- }
- builder.Append("</Chapters>");
- }
- /// <summary>
- /// Appends the media info.
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="item">The item.</param>
- /// <param name="builder">The builder.</param>
- public static void AddMediaInfo<T>(T item, StringBuilder builder, IItemRepository itemRepository)
- where T : BaseItem, IHasMediaStreams
- {
- var video = item as Video;
- builder.Append("<MediaInfo>");
- foreach (var stream in item.MediaStreams)
- {
- builder.Append("<" + stream.Type + ">");
- if (!string.IsNullOrEmpty(stream.Codec))
- {
- builder.Append("<Codec>" + SecurityElement.Escape(stream.Codec) + "</Codec>");
- builder.Append("<FFCodec>" + SecurityElement.Escape(stream.Codec) + "</FFCodec>");
- }
- if (stream.BitRate.HasValue)
- {
- builder.Append("<BitRate>" + stream.BitRate.Value.ToString(UsCulture) + "</BitRate>");
- }
- if (stream.Width.HasValue)
- {
- builder.Append("<Width>" + stream.Width.Value.ToString(UsCulture) + "</Width>");
- }
- if (stream.Height.HasValue)
- {
- builder.Append("<Height>" + stream.Height.Value.ToString(UsCulture) + "</Height>");
- }
- if (!string.IsNullOrEmpty(stream.AspectRatio))
- {
- builder.Append("<AspectRatio>" + SecurityElement.Escape(stream.AspectRatio) + "</AspectRatio>");
- }
- var framerate = stream.AverageFrameRate ?? stream.RealFrameRate;
- if (framerate.HasValue)
- {
- builder.Append("<FrameRate>" + framerate.Value.ToString(UsCulture) + "</FrameRate>");
- }
- if (!string.IsNullOrEmpty(stream.Language))
- {
- builder.Append("<Language>" + SecurityElement.Escape(stream.Language) + "</Language>");
- }
- if (!string.IsNullOrEmpty(stream.ScanType))
- {
- builder.Append("<ScanType>" + SecurityElement.Escape(stream.ScanType) + "</ScanType>");
- }
- if (stream.Channels.HasValue)
- {
- builder.Append("<Channels>" + stream.Channels.Value.ToString(UsCulture) + "</Channels>");
- }
- if (stream.SampleRate.HasValue)
- {
- builder.Append("<SamplingRate>" + stream.SampleRate.Value.ToString(UsCulture) + "</SamplingRate>");
- }
- builder.Append("<Default>" + SecurityElement.Escape(stream.IsDefault.ToString()) + "</Default>");
- builder.Append("<Forced>" + SecurityElement.Escape(stream.IsForced.ToString()) + "</Forced>");
- if (stream.Type == MediaStreamType.Video)
- {
- if (item.RunTimeTicks.HasValue)
- {
- var timespan = TimeSpan.FromTicks(item.RunTimeTicks.Value);
- builder.Append("<Duration>" + Convert.ToInt64(timespan.TotalMinutes).ToString(UsCulture) + "</Duration>");
- builder.Append("<DurationSeconds>" + Convert.ToInt64(timespan.TotalSeconds).ToString(UsCulture) + "</DurationSeconds>");
- }
- if (video != null && video.Video3DFormat.HasValue)
- {
- switch (video.Video3DFormat.Value)
- {
- case Video3DFormat.FullSideBySide:
- builder.Append("<Format3D>FSBS</Format3D>");
- break;
- case Video3DFormat.FullTopAndBottom:
- builder.Append("<Format3D>FTAB</Format3D>");
- break;
- case Video3DFormat.HalfSideBySide:
- builder.Append("<Format3D>HSBS</Format3D>");
- break;
- case Video3DFormat.HalfTopAndBottom:
- builder.Append("<Format3D>HTAB</Format3D>");
- break;
- }
- }
- }
- builder.Append("</" + stream.Type + ">");
- }
- builder.Append("</MediaInfo>");
- if (video != null)
- {
- //AddChapters(video, builder, itemRepository);
- }
- }
- }
- }
|