32 lines
999 B
C#
32 lines
999 B
C#
|
using MediaBrowser.Common.IO;
|
|||
|
using MediaBrowser.Controller.Playlists;
|
|||
|
using MediaBrowser.Controller.Providers;
|
|||
|
using MediaBrowser.LocalMetadata.Parsers;
|
|||
|
using MediaBrowser.Model.Logging;
|
|||
|
using System.IO;
|
|||
|
using System.Threading;
|
|||
|
|
|||
|
namespace MediaBrowser.LocalMetadata.Providers
|
|||
|
{
|
|||
|
class PlaylistXmlProvider : BaseXmlProvider<Playlist>
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
|
|||
|
public PlaylistXmlProvider(IFileSystem fileSystem, ILogger logger)
|
|||
|
: base(fileSystem)
|
|||
|
{
|
|||
|
_logger = logger;
|
|||
|
}
|
|||
|
|
|||
|
protected override void Fetch(LocalMetadataResult<Playlist> result, string path, CancellationToken cancellationToken)
|
|||
|
{
|
|||
|
new PlaylistXmlParser(_logger).Fetch(result.Item, path, cancellationToken);
|
|||
|
}
|
|||
|
|
|||
|
protected override FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|||
|
{
|
|||
|
return directoryService.GetFile(Path.Combine(info.Path, "playlist.xml"));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|