8

我有一个类,我用 Castle Dynamic Proxy 代理它。我想向代理方法(未在代理类中定义)添加一些自定义属性。这可能吗。

我想要这个,因为我想为我的应用程序的服务层生成 ASP.NET Web API 层。我代理了服务(从 ApiController 和其他 IMyService 接口继承),它工作得很好,但我想将 WebAPI 特定属性添加到这个新创建的 Dynamic 类,因此 Web API 框架可以读取它们。

编辑

如果有人想知道我实际上想要什么,我想详细解释一下。

public interface IMyService
{
    IEnumerable<MyEntity> GetAll();
}

public class MyServiceImpl : IMyService
{
    public IEnumerable<MyEntity> GetAll()
    {
        return new List<MyEntity>(); //TODO: Get from database!
    }
}

public class MyServiceApiController : ApiController,IMyService
{
    private readonly IMyService _myService;

    public MyServiceApiController(IMyService myService)
    {
        _myService = myService;
    }

    public IEnumerable<MyEntity> GetAll()
    {
        return _myService.GetAll();
    }
}

认为我有一个由 MyServiceImpl 实现的 IMyService。我想制作一个 Api 控制器,以便能够从 Web 使用此服务。但是如你所见,api 控制器只是真实服务的代理。那么,我为什么要写它呢?我可以使用城堡温莎动态创建它。

这是我的想法,几乎在我的新项目(https://github.com/hikalkan/aspnetboilerplate)中完成了。但是,如果我需要在 api 控制器的 GetAll 方法中添加一些属性(例如 Authorize)怎么办。由于没有这样的类,我不能直接添加,它是城堡动态代理。

所以,除了这个问题。我想知道是否可以将属性添加到同步代理类的方法中。

4

2 回答 2

2

再次查看该项目 https://github.com/aspnetboilerplate/aspnetboilerplate/issues/55 我也想知道如何,以便我可以在 IService 上定义 RoutePrefix 和在 Action 上定义 Route。幸运的是,我终于知道如何为代理定义自定义属性了。

public class CustomProxyFactory : DefaultProxyFactory
{
    #region Overrides of DefaultProxyFactory

    protected override void CustomizeOptions(ProxyGenerationOptions options, IKernel kernel, ComponentModel model, object[] arguments)
    {
        var attributeBuilder = new CustomAttributeBuilder(typeof(DescriptionAttribute).GetConstructor(new[] { typeof(string) }), new object[] { "CustomizeOptions" });
        options.AdditionalAttributes.Add(attributeBuilder);
    }

    #endregion
}

/// <summary>
/// 用户信息服务
/// </summary>
[Description("IUserInfoService")]
public interface IUserInfoService
{
    /// <summary>
    /// 获取用户信息
    /// </summary>
    /// <param name="name"></param>
    /// <returns></returns>
    [Description("IUserInfoService.GetUserInfo")]
    UserInfo GetUserInfo([Description("IUserInfoService.GetUserInfo name")] string name);
}

/// <summary>
/// 用户信息服务
/// </summary>
[Description("UserInfoService")]
public class UserInfoService : IUserInfoService
{
    /// <summary>
    /// 获取用户信息
    /// </summary>
    /// <param name="name"></param>
    /// <returns></returns>
    [Description("UserInfoService.GetUserInfo")]
    public virtual UserInfo GetUserInfo([Description("UserInfoService.GetUserInfo name")] string name)
    {
        return new UserInfo { Name = name };
    }
}

using DescriptionAttribute = System.ComponentModel.DescriptionAttribute;
[TestFixture]
public class AttributeTests
{
    /// <summary>
    /// Reference to the Castle Windsor Container.
    /// </summary>
    public IWindsorContainer IocContainer { get; private set; }
    [SetUp]
    public void Initialize()
    {
        IocContainer = new WindsorContainer();
        IocContainer.Kernel.ProxyFactory = new CustomProxyFactory();
        IocContainer.Register(
            Component.For<UserInfoService>()
                .Proxy
                .AdditionalInterfaces(typeof(IUserInfoService))
                .LifestyleTransient()
            );

    }

    /// <summary>
    /// 
    /// </summary>
    [Test]
    public void GetAttributeTest()
    {
        var userInfoService = IocContainer.Resolve<UserInfoService>();
        Assert.IsNotNull(userInfoService);
        var type = userInfoService.GetType();
        Assert.IsTrue(type != typeof(UserInfoService));
        var attribute = type.GetCustomAttribute<DescriptionAttribute>();
        Assert.IsTrue(attribute != null);
        Trace.WriteLine(attribute.Description);

        var method = type.GetMethod("GetUserInfo");
        attribute = method.GetCustomAttribute<DescriptionAttribute>();
        Assert.IsTrue(attribute != null);
        Trace.WriteLine(attribute.Description);

        var parameter = method.GetParameters().First();
        attribute = parameter.GetCustomAttribute<DescriptionAttribute>();
        Assert.IsTrue(attribute != null);
        Trace.WriteLine(attribute.Description);
    }
}
于 2015-08-31T08:43:05.720 回答
0

@hikalkan 我遇到了同样的问题,我也在寻找解决方案。我能遇到的最好的方法是 如何在运行时向属性添加属性

使用新包装器代理控制器(在我的情况下是动态控制器),该包装器在类本身及其方法中设置这些属性..

于 2017-05-24T23:38:45.483 回答