mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.IO;
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using MediaBrowser.Controller.Providers;
 | 
						|
using MediaBrowser.Model.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.LocalMetadata
 | 
						|
{
 | 
						|
    public abstract class BaseXmlProvider<T> : ILocalMetadataProvider<T>, IHasItemChangeMonitor, IHasOrder
 | 
						|
        where T : BaseItem, new()
 | 
						|
    {
 | 
						|
        protected IFileSystem FileSystem;
 | 
						|
 | 
						|
        public Task<MetadataResult<T>> GetMetadata(ItemInfo info,
 | 
						|
            IDirectoryService directoryService,
 | 
						|
            CancellationToken cancellationToken)
 | 
						|
        {
 | 
						|
            var result = new MetadataResult<T>();
 | 
						|
 | 
						|
            var file = GetXmlFile(info, directoryService);
 | 
						|
 | 
						|
            if (file == null)
 | 
						|
            {
 | 
						|
                return Task.FromResult(result);
 | 
						|
            }
 | 
						|
 | 
						|
            var path = file.FullName;
 | 
						|
 | 
						|
            try
 | 
						|
            {
 | 
						|
                result.Item = new T();
 | 
						|
 | 
						|
                Fetch(result, path, cancellationToken);
 | 
						|
                result.HasMetadata = true;
 | 
						|
            }
 | 
						|
            catch (FileNotFoundException)
 | 
						|
            {
 | 
						|
                result.HasMetadata = false;
 | 
						|
            }
 | 
						|
            catch (IOException)
 | 
						|
            {
 | 
						|
                result.HasMetadata = false;
 | 
						|
            }
 | 
						|
 | 
						|
            return Task.FromResult(result);
 | 
						|
        }
 | 
						|
 | 
						|
        protected abstract void Fetch(MetadataResult<T> result, string path, CancellationToken cancellationToken);
 | 
						|
 | 
						|
        protected BaseXmlProvider(IFileSystem fileSystem)
 | 
						|
        {
 | 
						|
            FileSystem = fileSystem;
 | 
						|
        }
 | 
						|
 | 
						|
        protected abstract FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService);
 | 
						|
 | 
						|
        public bool HasChanged(BaseItem item, IDirectoryService directoryService)
 | 
						|
        {
 | 
						|
            var file = GetXmlFile(new ItemInfo(item), directoryService);
 | 
						|
 | 
						|
            if (file == null)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
 | 
						|
            return file.Exists && FileSystem.GetLastWriteTimeUtc(file) > item.DateLastSaved;
 | 
						|
        }
 | 
						|
 | 
						|
        public string Name => XmlProviderUtils.Name;
 | 
						|
 | 
						|
        //After Nfo
 | 
						|
        public virtual int Order => 1;
 | 
						|
    }
 | 
						|
 | 
						|
    static class XmlProviderUtils
 | 
						|
    {
 | 
						|
        public static string Name => "Emby Xml";
 | 
						|
    }
 | 
						|
}
 |