2019-01-13 19:25:45 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-08-05 23:59:24 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-08-05 03:41:56 +00:00
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-30 07:02:23 +00:00
|
|
|
|
using MediaBrowser.Model.Xml;
|
2019-01-13 19:25:45 +00:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.LocalMetadata.Savers
|
|
|
|
|
{
|
2016-10-30 07:02:23 +00:00
|
|
|
|
public class PlaylistXmlSaver : BaseXmlSaver
|
2014-08-03 02:16:37 +00:00
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
|
public override bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
|
2014-08-03 02:16:37 +00:00
|
|
|
|
{
|
|
|
|
|
if (!item.SupportsLocalMetadata)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-05 03:41:56 +00:00
|
|
|
|
return item is Playlist && updateType >= ItemUpdateType.MetadataImport;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
|
protected override void WriteCustomElements(BaseItem item, XmlWriter writer)
|
2016-10-30 07:02:23 +00:00
|
|
|
|
{
|
|
|
|
|
var game = (Playlist)item;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
|
2016-10-30 07:02:23 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(game.PlaylistMediaType))
|
2014-08-05 23:59:24 +00:00
|
|
|
|
{
|
2016-10-30 07:02:23 +00:00
|
|
|
|
writer.WriteElementString("PlaylistMediaType", game.PlaylistMediaType);
|
|
|
|
|
}
|
2014-08-03 02:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
|
protected override string GetLocalSavePath(BaseItem item)
|
|
|
|
|
{
|
|
|
|
|
return GetSavePath(item.Path, FileSystem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetSavePath(string itemPath, IFileSystem fileSystem)
|
2014-08-03 02:16:37 +00:00
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
|
var path = itemPath;
|
|
|
|
|
|
|
|
|
|
if (Playlist.IsPlaylistFile(path))
|
|
|
|
|
{
|
|
|
|
|
return Path.ChangeExtension(itemPath, ".xml");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Path.Combine(path, "playlist.xml");
|
2014-08-03 02:16:37 +00:00
|
|
|
|
}
|
2016-10-30 07:02:23 +00:00
|
|
|
|
|
|
|
|
|
public PlaylistXmlSaver(IFileSystem fileSystem, IServerConfigurationManager configurationManager, ILibraryManager libraryManager, IUserManager userManager, IUserDataManager userDataManager, ILogger logger, IXmlReaderSettingsFactory xmlReaderSettingsFactory) : base(fileSystem, configurationManager, libraryManager, userManager, userDataManager, logger, xmlReaderSettingsFactory)
|
|
|
|
|
{
|
|
|
|
|
}
|
2014-08-03 02:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|