2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-07-08 01:41:03 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-05-26 06:48:54 +00:00
|
|
|
|
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.LocalMetadata
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2016-04-28 01:59:09 +00:00
|
|
|
|
public abstract class BaseXmlProvider<T> : ILocalMetadataProvider<T>, IHasItemChangeMonitor, IHasOrder
|
2014-02-06 04:39:16 +00:00
|
|
|
|
where T : IHasMetadata, new()
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
protected IFileSystem FileSystem;
|
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
|
public async Task<MetadataResult<T>> GetMetadata(ItemInfo info,
|
2014-10-25 18:32:58 +00:00
|
|
|
|
IDirectoryService directoryService,
|
|
|
|
|
CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2015-08-02 17:31:08 +00:00
|
|
|
|
var result = new MetadataResult<T>();
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2014-10-25 18:32:58 +00:00
|
|
|
|
var file = GetXmlFile(info, directoryService);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
if (file == null)
|
|
|
|
|
{
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var path = file.FullName;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
result.Item = new T();
|
|
|
|
|
|
2014-02-09 04:52:52 +00:00
|
|
|
|
Fetch(result, path, cancellationToken);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
result.HasMetadata = true;
|
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
result.HasMetadata = false;
|
|
|
|
|
}
|
2016-10-30 07:02:23 +00:00
|
|
|
|
catch (IOException)
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
|
|
|
|
result.HasMetadata = false;
|
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
|
protected abstract void Fetch(MetadataResult<T> result, string path, CancellationToken cancellationToken);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
protected BaseXmlProvider(IFileSystem fileSystem)
|
|
|
|
|
{
|
|
|
|
|
FileSystem = fileSystem;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected abstract FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService);
|
2014-02-10 20:11:46 +00:00
|
|
|
|
|
2016-04-28 01:59:09 +00:00
|
|
|
|
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2015-05-15 15:46:20 +00:00
|
|
|
|
var file = GetXmlFile(new ItemInfo(item), directoryService);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
if (file == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2016-04-28 01:59:09 +00:00
|
|
|
|
return file.Exists && FileSystem.GetLastWriteTimeUtc(file) > item.DateLastSaved;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
2014-01-29 16:16:24 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public string Name
|
2014-01-29 16:16:24 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
2014-11-11 03:41:55 +00:00
|
|
|
|
return XmlProviderUtils.Name;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
2014-01-29 16:16:24 +00:00
|
|
|
|
}
|
2014-11-11 03:41:55 +00:00
|
|
|
|
|
2016-08-05 21:15:48 +00:00
|
|
|
|
public virtual int Order
|
2015-01-10 05:53:35 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// After Nfo
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
static class XmlProviderUtils
|
|
|
|
|
{
|
2014-11-11 03:41:55 +00:00
|
|
|
|
public static string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2015-04-01 04:23:34 +00:00
|
|
|
|
return "Emby Xml";
|
2014-11-11 03:41:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|