jellyfin/MediaBrowser.Providers/Music/ArtistXmlProvider.cs

31 lines
967 B
C#
Raw Normal View History

2014-01-31 05:50:09 +01:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Logging;
using System.IO;
using System.Threading;
namespace MediaBrowser.Providers.Music
{
class ArtistXmlProvider : BaseXmlProvider<MusicArtist>
2014-01-31 05:50:09 +01:00
{
private readonly ILogger _logger;
public ArtistXmlProvider(IFileSystem fileSystem, ILogger logger)
: base(fileSystem)
{
_logger = logger;
}
2014-02-09 05:52:52 +01:00
protected override void Fetch(LocalMetadataResult<MusicArtist> result, string path, CancellationToken cancellationToken)
2014-01-31 05:50:09 +01:00
{
2014-02-09 05:52:52 +01:00
new BaseItemXmlParser<MusicArtist>(_logger).Fetch(result.Item, path, cancellationToken);
2014-01-31 05:50:09 +01:00
}
protected override FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
2014-01-31 05:50:09 +01:00
{
2014-02-11 05:55:01 +01:00
return directoryService.GetFile(Path.Combine(info.Path, "artist.xml"));
2014-01-31 05:50:09 +01:00
}
}
}