2020-10-21 14:02:20 +02:00
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
2020-11-17 13:46:23 +01:00
|
|
|
using BTCPayServer.Abstractions.Contracts;
|
2020-10-21 14:02:20 +02:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
2020-11-17 13:46:23 +01:00
|
|
|
namespace BTCPayServer.Abstractions.Models
|
2020-10-21 14:02:20 +02:00
|
|
|
{
|
|
|
|
public abstract class BaseBTCPayServerPlugin : IBTCPayServerPlugin
|
|
|
|
{
|
|
|
|
public abstract string Identifier { get; }
|
|
|
|
public abstract string Name { get; }
|
|
|
|
|
|
|
|
public virtual Version Version
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return Assembly.GetAssembly(GetType())?.GetName().Version ?? new Version(1, 0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract string Description { get; }
|
|
|
|
public bool SystemPlugin { get; set; }
|
|
|
|
public bool SystemExtension { get; set; }
|
2020-11-05 15:43:14 +01:00
|
|
|
public virtual IBTCPayServerPlugin.PluginDependency[] Dependencies { get; } = Array.Empty<IBTCPayServerPlugin.PluginDependency>();
|
2020-10-21 14:02:20 +02:00
|
|
|
|
|
|
|
public virtual void Execute(IApplicationBuilder applicationBuilder,
|
|
|
|
IServiceProvider applicationBuilderApplicationServices)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual void Execute(IServiceCollection applicationBuilder)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|