gpt4 book ai didi

c# - 使用静态工厂 Func 为 ASP.NET 应用程序创建 "Ambient Context"(UserContext)

转载 作者:可可西里 更新时间:2023-11-01 08:45:04 24 4
gpt4 key购买 nike

我发现几乎每个类( Controller 、 View 、HTML 帮助程序、服务等)我都需要当前登录的用户数据。所以我考虑创建一个“环境上下文”而不是直接注入(inject) IUserService 或用户。

我的方法看起来像那样。

public class Bootstrapper
{
public void Boot()
{
var container = new Container();
// the call to IUserService.GetUser is cached per Http request
// by using a dynamic proxy caching mechanism, that also handles cases where we want to
// invalidate a cache within an Http request
UserContext.ConfigureUser = container.GetInstance<IUserService>().GetUser;
}
}

public interface IUserService
{
User GetUser();
}

public class User
{
string Name { get; set; }
}

public class UserContext : AbstractFactoryBase<User>
{
public static Func<User> ConfigureUser = NotConfigured;

public static User ActiveUser { get { return ConfigureUser(); } }
}

public class AbstractFactoryBase<T>
{
protected static T NotConfigured()
{
throw new Exception(String.Format("{0} is not configured", typeof(T).Name));
}
}

示例用法:

public class Controller
{
public ActionResult Index()
{
var activeUser = UserContext.ActiveUser;
return View();
}
}

我的方法是否正确,还是遗漏了什么?您有更好的解决方案吗?

更新:

User 类的更多详细信息:

public class User
{
string Name { get; set; }
bool IsSuperUser { get; set;}
IEnumerable<AzManOperation> Operations { get; set}
}

Controllers 中,我们需要检查用户是否是 super 用户,以便仅向 super 用户提供一些额外的功能。

public class BaseController : Controller
{
private readonly IUserService _userService;

BaseControler(IUserService userService)
{
_userService = userService
}

public User ActiveUser
{
get { return _userService.GetUser(); }
}
}

Views 中,我们选中 Operations 以仅在用户有权这样做时显示编辑或删除按钮。 View 从不使用 DependencyResolver,而是使用 ViewBag 或 ViewModel。我的想法是实现一个自定义的 ViewBasePage 并提供一个 ActiveUser 属性,以便 View 可以轻松访问。

HtmlHelpers 中,我们根据 IsSuperUser 和 Operations 呈现控件(传入 User 对象或使用 DependencyResolver)。

服务类中我们也需要这些属性。例如,确定购物篮是否有效(检查是否允许用户购买不在标准列表中的商品)。所以 Service 类依赖于 IUserService 并调用 GetUser()

Action Filters 中强制用户更改密码(仅当它不是 super 用户且 User.ForcePasswordChange 为真时)。这里我们使用 DependencyResolver。

我希望有一种更简单的方法来获取用户对象,而不是使用 DependencyResolver.Current.GetService().GetUser() 或使用诸如 ViewBag.ActiveUser = User 之类的方法。User 对象几乎无处不在,需要检查权限等。

最佳答案

In Views we check Operations to only show an edit or delete button if the user has the right to do so.

View 不应该做这个检查。 Controller 应该将 View 模型返回到包含 bool 属性的 View ,这些属性说明这些按钮是否应该可见。使用 IsSuperUser 返回一个 bool 值已经在 View 中广为人知。 View 不应该知道它应该为 super 用户显示某个按钮:这取决于 Controller 。 View 应该只被告知要显示什么。

如果几乎​​所有 View 都有此代码,则有一些方法可以从您的 View 中提取重复部分,例如使用部分 View 。如果您发现自己在许多 View 模型上重复这些属性,也许您应该定义一个信封 View 模型(将特定模型包装为 T 的通用 View 模型)。 Controller 可以创建其 View 模型,而您可以创建服务或横切关注点将其包装在信封中。

In Service Classes we need those properties too. For instance to decide if a basket is valid or not

在这种情况下,您谈论的是验证,这是一个横切关注点。您应该改用装饰器来添加此行为。

关于c# - 使用静态工厂 Func<T> 为 ASP.NET 应用程序创建 "Ambient Context"(UserContext),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17011412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com