2012-08-19 20:38:31 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
2012-08-19 15:58:35 +00:00
|
|
|
|
using MediaBrowser.Controller.Events;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
public abstract class BaseMetadataProvider : IDisposable
|
2012-08-19 15:58:35 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// If the provider needs any startup routines, add them here
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual void Init()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-19 20:38:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes anything created during Init
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual void Dispose()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract bool Supports(BaseEntity item);
|
|
|
|
|
|
|
|
|
|
public virtual bool RequiresInternet
|
2012-08-19 15:58:35 +00:00
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-08-19 15:58:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-22 02:50:59 +00:00
|
|
|
|
public abstract Task FetchAsync(BaseEntity item, ItemResolveEventArgs args);
|
2012-08-20 15:55:05 +00:00
|
|
|
|
|
|
|
|
|
public abstract MetadataProviderPriority Priority { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines when a provider should execute, relative to others
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum MetadataProviderPriority
|
|
|
|
|
{
|
|
|
|
|
// Run this provider at the beginning
|
2012-08-21 01:21:03 +00:00
|
|
|
|
First = 1,
|
2012-08-20 15:55:05 +00:00
|
|
|
|
|
|
|
|
|
// Run this provider after all first priority providers
|
2012-08-21 01:21:03 +00:00
|
|
|
|
Second = 2,
|
2012-08-20 15:55:05 +00:00
|
|
|
|
|
2012-08-20 19:16:51 +00:00
|
|
|
|
// Run this provider after all second priority providers
|
2012-08-21 01:21:03 +00:00
|
|
|
|
Third = 3,
|
2012-08-20 19:16:51 +00:00
|
|
|
|
|
2012-08-20 15:55:05 +00:00
|
|
|
|
// Run this provider last
|
2012-08-21 01:21:03 +00:00
|
|
|
|
Last = 4
|
2012-08-19 15:58:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|