|
|
|
@ -3,6 +3,7 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
@ -140,6 +141,30 @@ namespace MediaBrowser.Common.Plugins
|
|
|
|
|
{
|
|
|
|
|
ApplicationPaths = applicationPaths;
|
|
|
|
|
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>
|
|
|
|
|