jellyfin/MediaBrowser.Common/Plugins/BasePlugin.cs

259 lines
7.5 KiB
C#
Raw Normal View History

using System;
using System.IO;
using MediaBrowser.Common.Kernel;
using MediaBrowser.Common.Serialization;
using MediaBrowser.Model.Plugins;
2012-07-12 08:55:27 +02:00
namespace MediaBrowser.Common.Plugins
{
/// <summary>
/// Provides a BasePlugin with generics, allowing for strongly typed configuration access.
/// </summary>
public abstract class BaseGenericPlugin<TConfigurationType> : BasePlugin
2012-07-12 08:55:27 +02:00
where TConfigurationType : BasePluginConfiguration, new()
{
public new TConfigurationType Configuration
{
get
{
return base.Configuration as TConfigurationType;
}
set
{
base.Configuration = value;
}
}
2012-09-03 23:56:30 +02:00
public override Type ConfigurationType
{
get { return typeof(TConfigurationType); }
}
}
/// <summary>
/// Provides a common base class for all plugins
/// </summary>
public abstract class BasePlugin : IDisposable
{
2012-09-05 18:33:54 +02:00
private IKernel Kernel { get; set; }
/// <summary>
/// Gets or sets the plugin's current context
/// </summary>
2012-09-05 18:33:54 +02:00
protected KernelContext Context { get { return Kernel.KernelContext; } }
/// <summary>
/// Gets the name of the plugin
/// </summary>
public abstract string Name { get; }
/// <summary>
/// Gets the type of configuration this plugin uses
/// </summary>
2012-09-03 23:56:30 +02:00
public abstract Type ConfigurationType { get; }
/// <summary>
/// Gets the plugin version
/// </summary>
public Version Version
{
get
{
return GetType().Assembly.GetName().Version;
}
}
2012-09-03 21:12:02 +02:00
/// <summary>
/// Gets the name the assembly file
/// </summary>
public string AssemblyFileName
{
get
{
return GetType().Assembly.GetName().Name + ".dll";
}
}
2012-09-04 05:11:16 +02:00
private DateTime? _ConfigurationDateLastModified = null;
public DateTime ConfigurationDateLastModified
{
get
{
if (_ConfigurationDateLastModified == null)
{
if (File.Exists(ConfigurationFilePath))
{
2012-09-04 21:23:15 +02:00
_ConfigurationDateLastModified = File.GetLastWriteTimeUtc(ConfigurationFilePath);
2012-09-04 05:11:16 +02:00
}
}
return _ConfigurationDateLastModified ?? DateTime.MinValue;
}
}
2012-09-03 23:56:30 +02:00
2012-09-03 21:12:02 +02:00
/// <summary>
/// Gets the path to the assembly file
/// </summary>
public string AssemblyFilePath
{
get
{
2012-09-05 18:33:54 +02:00
return Path.Combine(Kernel.ApplicationPaths.PluginsPath, AssemblyFileName);
2012-09-03 21:12:02 +02:00
}
}
/// <summary>
/// Gets or sets the current plugin configuration
/// </summary>
public BasePluginConfiguration Configuration { get; protected set; }
2012-07-12 08:55:27 +02:00
/// <summary>
/// Gets the name of the configuration file. Subclasses should override
/// </summary>
public virtual string ConfigurationFileName { get { return Name + ".xml"; } }
/// <summary>
/// Gets the full path to the configuration file
/// </summary>
public string ConfigurationFilePath
2012-07-12 08:55:27 +02:00
{
get
{
2012-09-05 18:33:54 +02:00
return Path.Combine(Kernel.ApplicationPaths.PluginConfigurationsPath, ConfigurationFileName);
2012-07-12 08:55:27 +02:00
}
}
private string _DataFolderPath = null;
/// <summary>
/// Gets the full path to the data folder, where the plugin can store any miscellaneous files needed
/// </summary>
public string DataFolderPath
{
get
2012-07-12 08:55:27 +02:00
{
if (_DataFolderPath == null)
{
// Give the folder name the same name as the config file name
// We can always make this configurable if/when needed
2012-09-05 18:33:54 +02:00
_DataFolderPath = Path.Combine(Kernel.ApplicationPaths.PluginsPath, Path.GetFileNameWithoutExtension(ConfigurationFileName));
if (!Directory.Exists(_DataFolderPath))
{
Directory.CreateDirectory(_DataFolderPath);
}
}
return _DataFolderPath;
2012-07-12 08:55:27 +02:00
}
}
public bool Enabled
{
get
{
return Configuration.Enabled;
}
}
2012-07-12 08:55:27 +02:00
/// <summary>
/// Returns true or false indicating if the plugin should be downloaded and run within the UI.
/// </summary>
public virtual bool DownloadToUI
2012-07-12 08:55:27 +02:00
{
get
2012-07-12 08:55:27 +02:00
{
return false;
2012-07-12 08:55:27 +02:00
}
}
2012-07-12 08:55:27 +02:00
2012-09-05 18:33:54 +02:00
public void Initialize(IKernel kernel)
{
Initialize(kernel, true);
}
/// <summary>
/// Starts the plugin.
/// </summary>
2012-09-05 18:33:54 +02:00
public void Initialize(IKernel kernel, bool loadFeatures)
{
2012-09-05 18:33:54 +02:00
Kernel = kernel;
2012-09-05 18:33:54 +02:00
if (loadFeatures)
{
2012-09-05 18:33:54 +02:00
ReloadConfiguration();
if (Enabled)
{
if (kernel.KernelContext == KernelContext.Server)
{
InitializeOnServer();
}
else if (kernel.KernelContext == KernelContext.UI)
{
InitializeInUI();
}
2012-09-05 18:33:54 +02:00
}
}
}
/// <summary>
/// Starts the plugin on the server
/// </summary>
protected virtual void InitializeOnServer()
{
}
/// <summary>
/// Starts the plugin in the UI
/// </summary>
protected virtual void InitializeInUI()
{
}
2012-07-12 08:55:27 +02:00
/// <summary>
/// Disposes the plugins. Undos all actions performed during Init.
/// </summary>
public void Dispose()
{
if (Context == KernelContext.Server)
{
DisposeOnServer();
}
else if (Context == KernelContext.UI)
{
InitializeInUI();
}
}
/// <summary>
/// Disposes the plugin on the server
/// </summary>
protected virtual void DisposeOnServer()
{
}
/// <summary>
/// Disposes the plugin in the UI
/// </summary>
protected virtual void DisposeInUI()
{
}
public void ReloadConfiguration()
{
if (!File.Exists(ConfigurationFilePath))
{
Configuration = Activator.CreateInstance(ConfigurationType) as BasePluginConfiguration;
2012-09-03 23:56:30 +02:00
XmlSerializer.SerializeToFile(Configuration, ConfigurationFilePath);
}
else
{
2012-09-03 18:54:20 +02:00
Configuration = XmlSerializer.DeserializeFromFile(ConfigurationType, ConfigurationFilePath) as BasePluginConfiguration;
}
2012-09-03 23:56:30 +02:00
2012-09-04 05:11:16 +02:00
// Reset this so it will be loaded again next time it's accessed
_ConfigurationDateLastModified = null;
}
2012-07-12 08:55:27 +02:00
}
}