using Autofac;
using Autofac.Extras.DynamicProxy;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Module = Autofac.Module;
using ZhonTai.Plate.Admin.Domain;
using ZhonTai.Common.Configs;
using Microsoft.Extensions.DependencyModel;
namespace ZhonTai.Plate.Admin.HttpApi.Shared.RegisterModules
{
public class ServiceModule : Module
{
private readonly AppConfig _appConfig;
private readonly string _assemblySuffixName;
///
/// 服务注入
///
/// AppConfig
/// 程序集名称
/// 程序集后缀名
public ServiceModule(AppConfig appConfig, string assemblySuffixName = "Service")
{
_appConfig = appConfig;
_assemblySuffixName = assemblySuffixName;
}
protected override void Load(ContainerBuilder builder)
{
//事务拦截
var interceptorServiceTypes = new List();
if (_appConfig.Aop.Transaction)
{
builder.RegisterType();
builder.RegisterType();
interceptorServiceTypes.Add(typeof(TransactionInterceptor));
}
//服务
Assembly[] assemblies = DependencyContext.Default.RuntimeLibraries
.Where(a => a.Name.EndsWith(_assemblySuffixName))
.Select(o => Assembly.Load(new AssemblyName(o.Name))).ToArray();
builder.RegisterAssemblyTypes(assemblies)
.Where(a => a.Name.EndsWith(_assemblySuffixName))
.AsImplementedInterfaces()
.InstancePerLifetimeScope()
.PropertiesAutowired()// 属性注入
.InterceptedBy(interceptorServiceTypes.ToArray())
.EnableInterfaceInterceptors();
}
}
}