2013-10-01 18:24:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-06-09 16:23:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-08-12 19:18:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
using MediaBrowser.Providers.Movies;
|
|
|
|
|
using System;
|
2013-10-01 18:24:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-07-01 16:05:21 +00:00
|
|
|
|
using System.Globalization;
|
2013-06-21 18:50:44 +00:00
|
|
|
|
using System.IO;
|
2013-07-01 16:05:21 +00:00
|
|
|
|
using System.Security;
|
2013-06-23 18:55:30 +00:00
|
|
|
|
using System.Text;
|
2013-06-09 16:23:06 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
|
2013-06-09 17:37:16 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Savers
|
2013-06-09 16:23:06 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves movie.xml for movies, trailers and music videos
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MovieXmlSaver : IMetadataSaver
|
|
|
|
|
{
|
2013-06-23 18:55:30 +00:00
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2013-08-12 19:18:31 +00:00
|
|
|
|
private readonly IItemRepository _itemRepository;
|
2013-06-23 18:55:30 +00:00
|
|
|
|
|
2013-08-12 19:18:31 +00:00
|
|
|
|
public MovieXmlSaver(IServerConfigurationManager config, IItemRepository itemRepository)
|
2013-06-23 18:55:30 +00:00
|
|
|
|
{
|
|
|
|
|
_config = config;
|
2013-08-12 19:18:31 +00:00
|
|
|
|
_itemRepository = itemRepository;
|
2013-06-23 18:55:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-09 16:23:06 +00:00
|
|
|
|
/// <summary>
|
2013-06-27 23:01:03 +00:00
|
|
|
|
/// Determines whether [is enabled for] [the specified item].
|
2013-06-09 16:23:06 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2013-06-27 23:01:03 +00:00
|
|
|
|
/// <param name="updateType">Type of the update.</param>
|
|
|
|
|
/// <returns><c>true</c> if [is enabled for] [the specified item]; otherwise, <c>false</c>.</returns>
|
|
|
|
|
public bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
|
2013-06-09 16:23:06 +00:00
|
|
|
|
{
|
2013-06-28 14:11:09 +00:00
|
|
|
|
var wasMetadataEdited = (updateType & ItemUpdateType.MetadataEdit) == ItemUpdateType.MetadataEdit;
|
|
|
|
|
var wasMetadataDownloaded = (updateType & ItemUpdateType.MetadataDownload) == ItemUpdateType.MetadataDownload;
|
|
|
|
|
|
2013-10-02 14:14:10 +00:00
|
|
|
|
// If new metadata has been downloaded and save local is on
|
|
|
|
|
if (_config.Configuration.SaveLocalMeta && (wasMetadataEdited || wasMetadataDownloaded))
|
2013-06-09 16:23:06 +00:00
|
|
|
|
{
|
2013-06-27 23:01:03 +00:00
|
|
|
|
var trailer = item as Trailer;
|
2013-06-09 16:23:06 +00:00
|
|
|
|
|
2013-06-27 23:01:03 +00:00
|
|
|
|
// Don't support local trailers
|
|
|
|
|
if (trailer != null)
|
|
|
|
|
{
|
|
|
|
|
return !trailer.IsLocalTrailer;
|
|
|
|
|
}
|
2013-06-09 16:23:06 +00:00
|
|
|
|
|
2013-07-16 18:47:05 +00:00
|
|
|
|
return item is Movie || item is MusicVideo || item is AdultVideo;
|
2013-06-09 16:23:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-27 23:01:03 +00:00
|
|
|
|
return false;
|
2013-06-09 16:23:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 16:00:20 +00:00
|
|
|
|
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
2013-07-01 16:12:03 +00:00
|
|
|
|
|
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>
|
2013-06-23 17:48:30 +00:00
|
|
|
|
public void Save(BaseItem item, CancellationToken cancellationToken)
|
2013-06-09 16:23:06 +00:00
|
|
|
|
{
|
2013-06-23 17:48:30 +00:00
|
|
|
|
var builder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
builder.Append("<Title>");
|
|
|
|
|
|
2013-06-23 18:55:30 +00:00
|
|
|
|
XmlSaverHelpers.AddCommonNodes(item, builder);
|
2013-07-01 16:00:20 +00:00
|
|
|
|
|
|
|
|
|
if (item.CommunityRating.HasValue)
|
|
|
|
|
{
|
|
|
|
|
builder.Append("<IMDBrating>" + SecurityElement.Escape(item.CommunityRating.Value.ToString(UsCulture)) + "</IMDBrating>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(item.Overview))
|
|
|
|
|
{
|
|
|
|
|
builder.Append("<Description><![CDATA[" + item.Overview + "]]></Description>");
|
|
|
|
|
}
|
2013-07-01 16:12:03 +00:00
|
|
|
|
|
2013-07-10 20:25:47 +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-15 16:00:39 +00:00
|
|
|
|
var video = (Video)item;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
|
2013-08-30 23:55:17 +00:00
|
|
|
|
XmlSaverHelpers.AddMediaInfo(video, builder, _itemRepository);
|
2013-08-12 19:18:31 +00:00
|
|
|
|
|
2013-06-23 17:48:30 +00:00
|
|
|
|
builder.Append("</Title>");
|
2013-06-10 01:40:53 +00:00
|
|
|
|
|
2013-06-21 18:50:44 +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
|
|
|
|
{
|
|
|
|
|
"IMDBrating",
|
2013-07-12 19:56:40 +00:00
|
|
|
|
"Description",
|
|
|
|
|
"Artist",
|
2013-11-21 16:02:31 +00:00
|
|
|
|
"Album",
|
|
|
|
|
"TmdbCollectionName"
|
2013-07-01 16:00:20 +00:00
|
|
|
|
});
|
2013-06-23 17:48:30 +00:00
|
|
|
|
}
|
2013-06-21 18:50:44 +00:00
|
|
|
|
|
|
|
|
|
public string GetSavePath(BaseItem item)
|
2013-10-01 18:24:27 +00:00
|
|
|
|
{
|
|
|
|
|
return GetMovieSavePath(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetMovieSavePath(BaseItem item)
|
2013-06-21 18:50:44 +00:00
|
|
|
|
{
|
2013-08-26 15:14:59 +00:00
|
|
|
|
if (item.IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return Path.ChangeExtension(item.Path, ".xml");
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 17:49:51 +00:00
|
|
|
|
return Path.Combine(item.MetaLocation, "movie.xml");
|
2013-06-21 18:50:44 +00:00
|
|
|
|
}
|
2013-06-09 16:23:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|