jellyfin/MediaBrowser.LocalMetadata/Savers/MovieXmlSaver.cs

137 lines
4.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Persistence;
using System.Collections.Generic;
using System.IO;
using System.Security;
using System.Text;
using System.Threading;
2013-06-09 16:23:06 +00:00
namespace MediaBrowser.LocalMetadata.Savers
2013-06-09 16:23:06 +00:00
{
/// <summary>
/// Saves movie.xml for movies, trailers and music videos
/// </summary>
public class MovieXmlSaver : IMetadataFileSaver
2013-06-09 16:23:06 +00:00
{
2013-08-12 19:18:31 +00:00
private readonly IItemRepository _itemRepository;
private readonly IServerConfigurationManager _config;
2013-06-23 18:55:30 +00:00
public MovieXmlSaver(IItemRepository itemRepository, IServerConfigurationManager config)
2013-06-23 18:55:30 +00:00
{
2013-08-12 19:18:31 +00:00
_itemRepository = itemRepository;
_config = config;
2013-06-23 18:55:30 +00:00
}
2014-02-02 13:36:31 +00:00
public string Name
{
get
{
2014-02-03 05:35:43 +00:00
return "Media Browser Xml";
2014-02-02 13:36:31 +00:00
}
}
2013-06-09 16:23:06 +00:00
/// <summary>
/// Determines whether [is enabled for] [the specified item].
2013-06-09 16:23:06 +00:00
/// </summary>
/// <param name="item">The item.</param>
/// <param name="updateType">Type of the update.</param>
/// <returns><c>true</c> if [is enabled for] [the specified item]; otherwise, <c>false</c>.</returns>
2014-02-02 13:36:31 +00:00
public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
2013-06-09 16:23:06 +00:00
{
2014-02-10 20:11:46 +00:00
if (!item.SupportsLocalMetadata)
2014-02-08 20:02:35 +00:00
{
return false;
}
2014-02-11 21:41:01 +00:00
var video = item as Video;
2014-02-11 21:41:01 +00:00
// Check parent for null to avoid running this against things like video backdrops
if (video != null && !(item is Episode) && !video.IsOwnedItem)
2013-06-09 16:23:06 +00:00
{
2014-02-11 21:41:01 +00:00
return updateType >= ItemUpdateType.MetadataDownload;
2013-06-09 16:23:06 +00:00
}
return false;
2013-06-09 16:23:06 +00:00
}
/// <summary>
/// Saves the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2014-02-02 13:36:31 +00:00
public void Save(IHasMetadata item, CancellationToken cancellationToken)
2013-06-09 16:23:06 +00:00
{
2014-02-02 13:36:31 +00:00
var video = (Video)item;
var builder = new StringBuilder();
builder.Append("<Title>");
2014-02-02 13:36:31 +00:00
XmlSaverHelpers.AddCommonNodes(video, builder);
2013-07-01 16:00:20 +00:00
var musicVideo = item as MusicVideo;
if (musicVideo != null)
{
if (!string.IsNullOrEmpty(musicVideo.Artist))
{
builder.Append("<Artist>" + SecurityElement.Escape(musicVideo.Artist) + "</Artist>");
}
if (!string.IsNullOrEmpty(musicVideo.Album))
{
builder.Append("<Album>" + SecurityElement.Escape(musicVideo.Album) + "</Album>");
}
}
2013-10-17 15:34:47 +00:00
var movie = item as Movie;
if (movie != null)
{
if (!string.IsNullOrEmpty(movie.TmdbCollectionName))
{
builder.Append("<TmdbCollectionName>" + SecurityElement.Escape(movie.TmdbCollectionName) + "</TmdbCollectionName>");
}
}
2013-08-30 23:55:17 +00:00
XmlSaverHelpers.AddMediaInfo(video, builder, _itemRepository);
2013-08-12 19:18:31 +00:00
builder.Append("</Title>");
2013-06-10 01:40:53 +00:00
var xmlFilePath = GetSavePath(item);
2013-06-10 01:40:53 +00:00
2013-09-25 15:11:23 +00:00
XmlSaverHelpers.Save(builder, xmlFilePath, new List<string>
2013-07-01 16:00:20 +00:00
{
2014-03-25 05:25:03 +00:00
// Deprecated. No longer saving in this field.
2013-07-01 16:00:20 +00:00
"IMDBrating",
2014-03-25 05:25:03 +00:00
// Deprecated. No longer saving in this field.
2013-07-12 19:56:40 +00:00
"Description",
2014-03-25 05:25:03 +00:00
2013-07-12 19:56:40 +00:00
"Artist",
"Album",
"TmdbCollectionName"
}, _config);
}
2014-02-02 13:36:31 +00:00
public string GetSavePath(IHasMetadata item)
{
2014-02-02 13:36:31 +00:00
return GetMovieSavePath((Video)item);
}
2014-02-02 13:36:31 +00:00
public static string GetMovieSavePath(Video item)
{
if (item.IsInMixedFolder)
{
return Path.ChangeExtension(item.Path, ".xml");
}
return Path.Combine(item.ContainingFolderPath, "movie.xml");
}
2013-06-09 16:23:06 +00:00
}
}