在过去的几天里,我一直在努力理解基于声明的授权,并且在将理论知识应用于现实世界的 MVC 网站时遇到了一个严重的问题。http://www.codeproject.com/Articles/639458/Claims-Based-Authentication-and-Authorization之类的教程描述了安装过程和非常基础的内容,但很少介绍如何管理声明。
假设有一个简单的 MVC 网站,用于保存有趣的驯鹿图片。它使用 Thinktecture.IdentityModel,但可能所有其他 Identitymodel 都会这样做。假设身份验证已到位并且正在工作。
public class ReindeerController : Controller
{
//should be accesible to whole world
public ActionResult AboutReindeers()
{}
//should be accessible to users which are supposed to add Reindeers, e.g. an "Admin" (which is a role, I know)
public ActionResult AddReindeer()
{}
//Only for the Site-owner
public ActionResult DeleteReindeer()
{}
//should be accesible to registred users
public ActionResult Index()
{}
}
所以我有一个 UserClaims 表,其中存储了一个用户 ID、作为 URL 的声明类型和声明的值。但这只是声明的技术基础——我想了解是否有一个好的模式来创建声明并定义用户拥有/需要的声明。