| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System.IO; |
| | 4 | | using System.Threading; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | | using MediaBrowser.Controller.Entities; |
| | 7 | | using MediaBrowser.Controller.Providers; |
| | 8 | | using MediaBrowser.Model.IO; |
| | 9 | | using MediaBrowser.XbmcMetadata.Savers; |
| | 10 | |
|
| | 11 | | namespace MediaBrowser.XbmcMetadata.Providers |
| | 12 | | { |
| | 13 | | public abstract class BaseNfoProvider<T> : ILocalMetadataProvider<T>, IHasItemChangeMonitor |
| | 14 | | where T : BaseItem, new() |
| | 15 | | { |
| | 16 | | private readonly IFileSystem _fileSystem; |
| | 17 | |
|
| | 18 | | protected BaseNfoProvider(IFileSystem fileSystem) |
| | 19 | | { |
| 189 | 20 | | _fileSystem = fileSystem; |
| 189 | 21 | | } |
| | 22 | |
|
| | 23 | | /// <inheritdoc /> |
| 0 | 24 | | public string Name => BaseNfoSaver.SaverName; |
| | 25 | |
|
| | 26 | | /// <inheritdoc /> |
| | 27 | | public Task<MetadataResult<T>> GetMetadata( |
| | 28 | | ItemInfo info, |
| | 29 | | IDirectoryService directoryService, |
| | 30 | | CancellationToken cancellationToken) |
| | 31 | | { |
| 0 | 32 | | var result = new MetadataResult<T>(); |
| | 33 | |
|
| 0 | 34 | | var file = GetXmlFile(info, directoryService); |
| | 35 | |
|
| 0 | 36 | | if (file is null) |
| | 37 | | { |
| 0 | 38 | | return Task.FromResult(result); |
| | 39 | | } |
| | 40 | |
|
| 0 | 41 | | var path = file.FullName; |
| | 42 | |
|
| | 43 | | try |
| | 44 | | { |
| 0 | 45 | | result.Item = new T |
| 0 | 46 | | { |
| 0 | 47 | | IndexNumber = info.IndexNumber |
| 0 | 48 | | }; |
| | 49 | |
|
| 0 | 50 | | Fetch(result, path, cancellationToken); |
| 0 | 51 | | result.HasMetadata = true; |
| 0 | 52 | | } |
| 0 | 53 | | catch (FileNotFoundException) |
| | 54 | | { |
| 0 | 55 | | result.HasMetadata = false; |
| 0 | 56 | | } |
| 0 | 57 | | catch (IOException) |
| | 58 | | { |
| 0 | 59 | | result.HasMetadata = false; |
| 0 | 60 | | } |
| | 61 | |
|
| 0 | 62 | | return Task.FromResult(result); |
| | 63 | | } |
| | 64 | |
|
| | 65 | | /// <inheritdoc /> |
| | 66 | | public bool HasChanged(BaseItem item, IDirectoryService directoryService) |
| | 67 | | { |
| 0 | 68 | | var file = GetXmlFile(new ItemInfo(item), directoryService); |
| | 69 | |
|
| 0 | 70 | | if (file is null) |
| | 71 | | { |
| 0 | 72 | | return false; |
| | 73 | | } |
| | 74 | |
|
| 0 | 75 | | return file.Exists && _fileSystem.GetLastWriteTimeUtc(file) > item.DateLastSaved; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | protected abstract void Fetch(MetadataResult<T> result, string path, CancellationToken cancellationToken); |
| | 79 | |
|
| | 80 | | protected abstract FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService); |
| | 81 | | } |
| | 82 | | } |