| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using Autofac;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core.Plugins
- {
- public class PluginDescriptor : IComparable<PluginDescriptor>
- {
- public PluginDescriptor()
- {
- this.SupportedVersions = new List<string>();
- this.LimitedToStores = new List<int>();
- }
- public PluginDescriptor(Assembly referencedAssembly, FileInfo originalAssemblyFile,
- Type pluginType)
- : this()
- {
- this.ReferencedAssembly = referencedAssembly;
- this.OriginalAssemblyFile = originalAssemblyFile;
- this.PluginType = pluginType;
- }
- /// <summary>
- /// Plugin type
- /// </summary>
- public virtual string PluginFileName { get; set; }
- /// <summary>
- /// Plugin type
- /// </summary>
- public virtual Type PluginType { get; set; }
- /// <summary>
- /// The assembly that has been shadow copied that is active in the application
- /// </summary>
- public virtual Assembly ReferencedAssembly { get; internal set; }
- /// <summary>
- /// The original assembly file that a shadow copy was made from it
- /// </summary>
- public virtual FileInfo OriginalAssemblyFile { get; internal set; }
- /// <summary>
- /// Gets or sets the plugin group
- /// </summary>
- public virtual string Group { get; set; }
- /// <summary>
- /// Gets or sets the friendly name
- /// </summary>
- public virtual string FriendlyName { get; set; }
- /// <summary>
- /// Gets or sets the system name
- /// </summary>
- public virtual string SystemName { get; set; }
- /// <summary>
- /// Gets or sets the version
- /// </summary>
- public virtual string Version { get; set; }
- /// <summary>
- /// Gets or sets the supported versions of nopCommerce
- /// </summary>
- public virtual IList<string> SupportedVersions { get; set; }
- /// <summary>
- /// Gets or sets the author
- /// </summary>
- public virtual string Author { get; set; }
- /// <summary>
- /// Gets or sets the display order
- /// </summary>
- public virtual int DisplayOrder { get; set; }
- /// <summary>
- /// Gets or sets the list of store identifiers in which this plugin is available. If empty, then this plugin is available in all stores
- /// </summary>
- public virtual IList<int> LimitedToStores { get; set; }
- /// <summary>
- /// Gets or sets the value indicating whether plugin is installed
- /// </summary>
- public virtual bool Installed { get; set; }
- public virtual T Instance<T>() where T : class, IPlugin
- {
- object instance;
- if (!Singleton<IContainer>.Instance.TryResolve(PluginType, out instance))
- {
- instance = Singleton<IContainer>.Instance.ResolveUnregistered(PluginType);
- }
- var typedInstance = instance as T;
- if (typedInstance != null)
- typedInstance.PluginDescriptor = this;
- return typedInstance;
- }
- public IPlugin Instance()
- {
- return Instance<IPlugin>();
- }
- public int CompareTo(PluginDescriptor other)
- {
- if (DisplayOrder != other.DisplayOrder)
- return DisplayOrder.CompareTo(other.DisplayOrder);
- return FriendlyName.CompareTo(other.FriendlyName);
- }
- public override string ToString()
- {
- return FriendlyName;
- }
- public override bool Equals(object obj)
- {
- var other = obj as PluginDescriptor;
- return other != null &&
- SystemName != null &&
- SystemName.Equals(other.SystemName);
- }
- public override int GetHashCode()
- {
- return SystemName.GetHashCode();
- }
- }
- }
|