123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.TV;
- 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
- {
- /// <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, IEnumerable<string> xmlTagsUsed)
- {
- if (File.Exists(path))
- {
- var tags = xmlTagsUsed.ToList();
- tags.AddRange(new[]
- {
- "MediaInfo",
- "ContentRating",
- "MPAARating",
- "certification",
- "Persons",
- "Type",
- "Overview",
- "CustomRating",
- "LocalTitle",
- "SortTitle",
- "PremiereDate",
- "Budget",
- "Revenue",
- "Rating",
- "ProductionYear",
- "Website",
- "AspectRatio",
- "Language",
- "RunningTime",
- "Runtime",
- "TagLine",
- "TagLines",
- "IMDB_ID",
- "IMDB",
- "IMDbId",
- "TMDbId",
- "TVcomId",
- "RottenTomatoesId",
- "MusicbrainzId",
- "CollectionNumber",
- "Genres",
- "Studios",
- "Tags",
- "Added",
- "LockData"
- });
- var position = xml.ToString().LastIndexOf("</", StringComparison.OrdinalIgnoreCase);
- xml.Insert(position, GetCustomTags(path, tags));
- }
- 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);
- if (!Directory.Exists(parentPath))
- {
- 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, ICollection<string> xmlTagsUsed)
- {
- var doc = new XmlDocument();
- doc.Load(path);
- var nodes = doc.DocumentElement.ChildNodes.Cast<XmlNode>()
- .Where(i => !xmlTagsUsed.Contains(i.Name))
- .Select(i => i.OuterXml)
- .ToArray();
- return string.Join(Environment.NewLine, nodes);
- }
- /// <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.ToString(UsCulture)) + "</Added>");
- builder.Append("<LockData>" + item.DontFetchMeta.ToString().ToLower() + "</LockData>");
-
- 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.Overview + "]]></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 && !(item is Episode))
- {
- builder.Append("<PremiereDate>" + SecurityElement.Escape(item.PremiereDate.Value.ToString("yyyy-MM-dd")) + "</PremiereDate>");
- }
- 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.ProductionYear.HasValue)
- {
- 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>");
- }
- 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 mbz = item.GetProviderId(MetadataProviders.Musicbrainz);
- if (!string.IsNullOrEmpty(mbz))
- {
- builder.Append("<MusicbrainzId>" + SecurityElement.Escape(mbz) + "</MusicbrainzId>");
- }
- var tmdbCollection = item.GetProviderId(MetadataProviders.TmdbCollection);
- if (!string.IsNullOrEmpty(tmdbCollection))
- {
- builder.Append("<CollectionNumber>" + SecurityElement.Escape(tmdbCollection) + "</CollectionNumber>");
- }
- 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>");
- }
- 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>");
- }
- }
- /// <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 AppendMediaInfo<T>(T item, StringBuilder builder)
- where T : BaseItem, IHasMediaStreams
- {
- builder.Append("<MediaInfo>");
- foreach (var stream in item.MediaStreams)
- {
- if (stream.Type == MediaStreamType.Video)
- {
- builder.Append("<Video>");
- 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 (item.RunTimeTicks.HasValue)
- {
- var timespan = TimeSpan.FromTicks(item.RunTimeTicks.Value);
- builder.Append("<Duration>" + Convert.ToInt32(timespan.TotalMinutes).ToString(UsCulture) + "</Duration>");
- builder.Append("<DurationSeconds>" + Convert.ToInt32(timespan.TotalSeconds).ToString(UsCulture) + "</DurationSeconds>");
- }
- builder.Append("<Default>" + SecurityElement.Escape(stream.IsDefault.ToString()) + "</Default>");
- builder.Append("<Forced>" + SecurityElement.Escape(stream.IsForced.ToString()) + "</Forced>");
- var video = item as Video;
- if (video != null && video.Video3DFormat.HasValue)
- {
- switch (video.Video3DFormat.Value)
- {
- case Video3DFormat.FullSideBySide:
- builder.Append("<3DFormat>FSBS</3DFormat>");
- break;
- case Video3DFormat.FullTopAndBottom:
- builder.Append("<3DFormat>FTAB</3DFormat>");
- break;
- case Video3DFormat.HalfSideBySide:
- builder.Append("<3DFormat>HSBS</3DFormat>");
- break;
- case Video3DFormat.HalfTopAndBottom:
- builder.Append("<3DFormat>HTAB</3DFormat>");
- break;
- }
- }
- builder.Append("</Video>");
- }
- else if (stream.Type == MediaStreamType.Audio)
- {
- builder.Append("<Audio>");
- if (!string.IsNullOrEmpty(stream.Codec))
- {
- builder.Append("<Codec>" + SecurityElement.Escape(stream.Codec) + "</Codec>");
- builder.Append("<FFCodec>" + SecurityElement.Escape(stream.Codec) + "</FFCodec>");
- }
- if (stream.Channels.HasValue)
- {
- builder.Append("<Channels>" + stream.Channels.Value.ToString(UsCulture) + "</Channels>");
- }
- if (stream.BitRate.HasValue)
- {
- builder.Append("<BitRate>" + stream.BitRate.Value.ToString(UsCulture) + "</BitRate>");
- }
- if (stream.SampleRate.HasValue)
- {
- builder.Append("<SamplingRate>" + stream.SampleRate.Value.ToString(UsCulture) + "</SamplingRate>");
- }
- if (!string.IsNullOrEmpty(stream.Language))
- {
- builder.Append("<Language>" + SecurityElement.Escape(stream.Language) + "</Language>");
- }
- builder.Append("<Default>" + SecurityElement.Escape(stream.IsDefault.ToString()) + "</Default>");
- builder.Append("<Forced>" + SecurityElement.Escape(stream.IsForced.ToString()) + "</Forced>");
- builder.Append("</Audio>");
- }
- else if (stream.Type == MediaStreamType.Subtitle)
- {
- builder.Append("<Subtitle>");
- if (!string.IsNullOrEmpty(stream.Language))
- {
- builder.Append("<Language>" + SecurityElement.Escape(stream.Language) + "</Language>");
- }
- builder.Append("<Default>" + SecurityElement.Escape(stream.IsDefault.ToString()) + "</Default>");
- builder.Append("<Forced>" + SecurityElement.Escape(stream.IsForced.ToString()) + "</Forced>");
- builder.Append("</Subtitle>");
- }
- }
- builder.Append("</MediaInfo>");
- }
- }
- }
|