mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Added extra functionality to support registrar.
This commit is contained in:
parent
7459baac8b
commit
0b73a1d90f
@ -133,6 +133,35 @@ namespace Emby.Server.Implementations.AppBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Manually pre-loads a factory so that it is available pre system initialisation.
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">Class to register.</typeparam>
|
||||||
|
public virtual void RegisterConfiguration<T>()
|
||||||
|
{
|
||||||
|
if (!typeof(IConfigurationFactory).IsAssignableFrom(typeof(T)))
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Parameter does not implement IConfigurationFactory");
|
||||||
|
}
|
||||||
|
|
||||||
|
IConfigurationFactory factory = (IConfigurationFactory)Activator.CreateInstance(typeof(T));
|
||||||
|
|
||||||
|
if (_configurationFactories == null)
|
||||||
|
{
|
||||||
|
_configurationFactories = new IConfigurationFactory[] { factory };
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var list = _configurationFactories.ToList<IConfigurationFactory>();
|
||||||
|
list.Add(factory);
|
||||||
|
_configurationFactories = list.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
_configurationStores = _configurationFactories
|
||||||
|
.SelectMany(i => i.GetConfigurations())
|
||||||
|
.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds parts.
|
/// Adds parts.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -128,7 +128,6 @@ namespace Emby.Server.Implementations
|
|||||||
private ISessionManager _sessionManager;
|
private ISessionManager _sessionManager;
|
||||||
private IHttpClientFactory _httpClientFactory;
|
private IHttpClientFactory _httpClientFactory;
|
||||||
private IWebSocketManager _webSocketManager;
|
private IWebSocketManager _webSocketManager;
|
||||||
private Dictionary<Type, Assembly> _pluginRegistrations;
|
|
||||||
private string[] _urlPrefixes;
|
private string[] _urlPrefixes;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -262,8 +261,6 @@ namespace Emby.Server.Implementations
|
|||||||
|
|
||||||
ServiceCollection = serviceCollection;
|
ServiceCollection = serviceCollection;
|
||||||
|
|
||||||
_pluginRegistrations = new Dictionary<Type, Assembly>();
|
|
||||||
|
|
||||||
_networkManager = networkManager;
|
_networkManager = networkManager;
|
||||||
networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
|
networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
|
||||||
|
|
||||||
@ -505,7 +502,7 @@ namespace Emby.Server.Implementations
|
|||||||
|
|
||||||
RegisterServices();
|
RegisterServices();
|
||||||
|
|
||||||
RegisterPlugIns();
|
RegisterPlugInServices();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -770,7 +767,6 @@ namespace Emby.Server.Implementations
|
|||||||
|
|
||||||
ConfigurationManager.AddParts(GetExports<IConfigurationFactory>());
|
ConfigurationManager.AddParts(GetExports<IConfigurationFactory>());
|
||||||
_plugins = GetExports<IPlugin>()
|
_plugins = GetExports<IPlugin>()
|
||||||
.Select(LoadPlugin)
|
|
||||||
.Where(i => i != null)
|
.Where(i => i != null)
|
||||||
.ToArray();
|
.ToArray();
|
||||||
|
|
||||||
@ -819,51 +815,6 @@ namespace Emby.Server.Implementations
|
|||||||
Resolve<IIsoManager>().AddParts(GetExports<IIsoMounter>());
|
Resolve<IIsoManager>().AddParts(GetExports<IIsoMounter>());
|
||||||
}
|
}
|
||||||
|
|
||||||
private IPlugin LoadPlugin(IPlugin plugin)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (plugin is IPluginAssembly assemblyPlugin)
|
|
||||||
{
|
|
||||||
var assembly = plugin.GetType().Assembly;
|
|
||||||
var assemblyName = assembly.GetName();
|
|
||||||
var assemblyFilePath = assembly.Location;
|
|
||||||
|
|
||||||
var dataFolderPath = Path.Combine(ApplicationPaths.PluginsPath, Path.GetFileNameWithoutExtension(assemblyFilePath));
|
|
||||||
|
|
||||||
assemblyPlugin.SetAttributes(assemblyFilePath, dataFolderPath, assemblyName.Version);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var idAttributes = assembly.GetCustomAttributes(typeof(GuidAttribute), true);
|
|
||||||
if (idAttributes.Length > 0)
|
|
||||||
{
|
|
||||||
var attribute = (GuidAttribute)idAttributes[0];
|
|
||||||
var assemblyId = new Guid(attribute.Value);
|
|
||||||
|
|
||||||
assemblyPlugin.SetId(assemblyId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.LogError(ex, "Error getting plugin Id from {PluginName}.", plugin.GetType().FullName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (plugin is IHasPluginConfiguration hasPluginConfiguration)
|
|
||||||
{
|
|
||||||
hasPluginConfiguration.SetStartupInfo(s => Directory.CreateDirectory(s));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.LogError(ex, "Error loading plugin {PluginName}", plugin.GetType().FullName);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return plugin;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Discovers the types.
|
/// Discovers the types.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -874,22 +825,20 @@ namespace Emby.Server.Implementations
|
|||||||
_allConcreteTypes = GetTypes(GetComposablePartAssemblies()).ToArray();
|
_allConcreteTypes = GetTypes(GetComposablePartAssemblies()).ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RegisterPlugIns()
|
private void RegisterPlugInServices()
|
||||||
{
|
{
|
||||||
foreach ((var pluginType, var assembly) in _pluginRegistrations)
|
foreach (var pluginServiceRegistrar in GetExportTypes<IPluginRegistrar>())
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var pluginRegistration = Activator.CreateInstance(pluginType);
|
var instance = (IPluginRegistrar)Activator.CreateInstance(pluginServiceRegistrar);
|
||||||
pluginType.InvokeMember("RegisterServices", BindingFlags.InvokeMethod, null, pluginRegistration, new object[] { ServiceCollection }, CultureInfo.InvariantCulture);
|
instance.RegisterServices(ServiceCollection);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.LogError(ex, "Error registering {Assembly} with D.I.", assembly);
|
Logger.LogError(ex, "Error registering {Assembly} with D.I.", pluginServiceRegistrar.Assembly);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_pluginRegistrations.Clear();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerable<Type> GetTypes(IEnumerable<Assembly> assemblies)
|
private IEnumerable<Type> GetTypes(IEnumerable<Assembly> assemblies)
|
||||||
@ -900,12 +849,6 @@ namespace Emby.Server.Implementations
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
exportedTypes = ass.GetExportedTypes();
|
exportedTypes = ass.GetExportedTypes();
|
||||||
|
|
||||||
Type reg = (Type)exportedTypes.Where(p => string.Equals(p.Name, "PluginRegistration", StringComparison.OrdinalIgnoreCase)).FirstOrDefault();
|
|
||||||
if (reg != null)
|
|
||||||
{
|
|
||||||
_pluginRegistrations.Add(reg, ass);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (FileNotFoundException ex)
|
catch (FileNotFoundException ex)
|
||||||
{
|
{
|
||||||
|
@ -46,6 +46,12 @@ namespace MediaBrowser.Common.Configuration
|
|||||||
/// <param name="newConfiguration">The new configuration.</param>
|
/// <param name="newConfiguration">The new configuration.</param>
|
||||||
void ReplaceConfiguration(BaseApplicationConfiguration newConfiguration);
|
void ReplaceConfiguration(BaseApplicationConfiguration newConfiguration);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Manually pre-loads a factory so that it is available pre system initialisation.
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">Class to register.</typeparam>
|
||||||
|
void RegisterConfiguration<T>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the configuration.
|
/// Gets the configuration.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
using MediaBrowser.Common.Configuration;
|
using MediaBrowser.Common.Configuration;
|
||||||
using MediaBrowser.Model.Plugins;
|
using MediaBrowser.Model.Plugins;
|
||||||
using MediaBrowser.Model.Serialization;
|
using MediaBrowser.Model.Serialization;
|
||||||
@ -82,16 +83,6 @@ namespace MediaBrowser.Common.Plugins
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public virtual void RegisterServices(IServiceCollection serviceCollection)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public virtual void UnregisterServices(IServiceCollection serviceCollection)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public void SetAttributes(string assemblyFilePath, string dataFolderPath, Version assemblyVersion)
|
public void SetAttributes(string assemblyFilePath, string dataFolderPath, Version assemblyVersion)
|
||||||
{
|
{
|
||||||
@ -140,6 +131,30 @@ namespace MediaBrowser.Common.Plugins
|
|||||||
{
|
{
|
||||||
ApplicationPaths = applicationPaths;
|
ApplicationPaths = applicationPaths;
|
||||||
XmlSerializer = xmlSerializer;
|
XmlSerializer = xmlSerializer;
|
||||||
|
if (this is IPluginAssembly assemblyPlugin)
|
||||||
|
{
|
||||||
|
var assembly = GetType().Assembly;
|
||||||
|
var assemblyName = assembly.GetName();
|
||||||
|
var assemblyFilePath = assembly.Location;
|
||||||
|
|
||||||
|
var dataFolderPath = Path.Combine(ApplicationPaths.PluginsPath, Path.GetFileNameWithoutExtension(assemblyFilePath));
|
||||||
|
|
||||||
|
assemblyPlugin.SetAttributes(assemblyFilePath, dataFolderPath, assemblyName.Version);
|
||||||
|
|
||||||
|
var idAttributes = assembly.GetCustomAttributes(typeof(GuidAttribute), true);
|
||||||
|
if (idAttributes.Length > 0)
|
||||||
|
{
|
||||||
|
var attribute = (GuidAttribute)idAttributes[0];
|
||||||
|
var assemblyId = new Guid(attribute.Value);
|
||||||
|
|
||||||
|
assemblyPlugin.SetId(assemblyId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this is IHasPluginConfiguration hasPluginConfiguration)
|
||||||
|
{
|
||||||
|
hasPluginConfiguration.SetStartupInfo(s => Directory.CreateDirectory(s));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -62,18 +62,6 @@ namespace MediaBrowser.Common.Plugins
|
|||||||
/// Called when just before the plugin is uninstalled from the server.
|
/// Called when just before the plugin is uninstalled from the server.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
void OnUninstalling();
|
void OnUninstalling();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Registers the plugin's services to the service collection.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="serviceCollection">The service collection.</param>
|
|
||||||
void RegisterServices(IServiceCollection serviceCollection);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Unregisters the plugin's services from the service collection.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="serviceCollection">The service collection.</param>
|
|
||||||
void UnregisterServices(IServiceCollection serviceCollection);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface IHasPluginConfiguration
|
public interface IHasPluginConfiguration
|
||||||
|
17
MediaBrowser.Common/Plugins/IPluginRegistrar.cs
Normal file
17
MediaBrowser.Common/Plugins/IPluginRegistrar.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
namespace MediaBrowser.Common.Plugins
|
||||||
|
{
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="IPluginRegistrar" />.
|
||||||
|
/// </summary>
|
||||||
|
public interface IPluginRegistrar
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Registers the plugin's services with the service collection.
|
||||||
|
/// This object is created prior to the plugin creation, so access to other classes is limited.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="serviceCollection">The service collection.</param>
|
||||||
|
void RegisterServices(IServiceCollection serviceCollection);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user