You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
975 B
31 lines
975 B
using System.IO;
|
|
using System.Threading;
|
|
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
|
{
|
|
class ArtistXmlProvider : BaseXmlProvider<MusicArtist>
|
|
{
|
|
private readonly ILogger _logger;
|
|
|
|
public ArtistXmlProvider(IFileSystem fileSystem, ILogger logger)
|
|
: base(fileSystem)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
protected override void Fetch(LocalMetadataResult<MusicArtist> result, string path, CancellationToken cancellationToken)
|
|
{
|
|
new BaseItemXmlParser<MusicArtist>(_logger).Fetch(result.Item, path, cancellationToken);
|
|
}
|
|
|
|
protected override FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|
{
|
|
return directoryService.GetFile(Path.Combine(info.Path, "artist.xml"));
|
|
}
|
|
}
|
|
}
|