使用全局过滤器将角色授权应用于整个mvc应用程序

发布于 2024-12-10 01:39:30 字数 168 浏览 0 评论 0原文

我在 MVC 应用程序上使用全局授权过滤器,以确保用户在访问我的应用程序之前经过身份验证,但我想更进一步。我有三个 AD 组,用户可能可以成为其中的成员,并且我希望全局过滤器也检查这三个组之一。

我不想向应用程序中的每个控制器添加三个授权属性。我将如何编写全局过滤器以包含角色授权?

谢谢!

I'm using a global authorization filter on my MVC app to ensure that users are authenticated before they access my app, but I'd like to take it one step further. I have three AD groups that the users can potenially be a member of and I'd like the global filter to check for one of those three groups as well.

I do not want to add three authorize attributes to every controller in my application. How would I write the global filter to include role authorization?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简美 2024-12-17 01:39:30

您可以配置基于角色的成员资格提供程序,它本质上将使用您的自定义逻辑调用授权服务,并且您可以在需要检查的配置文件中提及角色。整个逻辑可以封装在一个属性内,并在路由上进行装饰。

You can configure a Role-Based membership provider , which essentially will call an Authorize service with your custom logic and you can mention the roles in a config file you need to check against. This entire logic can be encapsulated inside an attribute , decorated over the Routes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文