How do I create a custom membership for ASP.NET MVC 2 based on the ASP.NET membership provider?
|
feedback
|
|
i have created a new project where i created a custom memebership provider and overriden the "ValidateUser" method that i intherited from the MembershipProvider abstract class:
then i connected that provider to my ASP.NET MVC 2 project by adding a reference and pointing it out from my web.config:
i do need to create a custom Role Provider class that inherits the RoleProvider abstract class and overrides the GetRolesForUser method. the ASP.NET MVC Authorizing uses that method to find out which roles are assigned to the currnent logedOn User and makes sure the user is permitted to access the Controller/Action. here are the steps we need to take: 1) Create a custom Role Provider class that inherits the RoleProvider abstract class and overrides the GetRolesForUser method :
2) connect the role provider with the ASP.NET MVC 2 application via our web.config:
3) Set the Authorize(Roles="xxx,yyy") above the wanted Controller / Action:
That's it! now it works! 4) optional: set a custom Authorize attribute so we can redirect an unwanted role to an AccessDenied Page:
now we can use our own made attribute to redirect our users to access denied view:
That's it! super duper! here are some of the links i've used to get all this info: custom role provider: http://davidhayden.com/blog/dave/archive/2007/10/17/CreateCustomRoleProviderASPNETRolePermissionsSecurity.aspx i hope this info helps! | |||||||||||||||||||
feedback
|
|
This worked for me http://mattwrock.com/post/2009/10/14/Implementing-custom-Membership-Provider-and-Role-Provider-for-Authinticating-ASPNET-MVC-Applications.aspx | |||
|
feedback
|
|
Its also possible to use this with a much smaller amount of code, i'm not entirely sure if this method is as safe but works very well with any database you use. in the global.asax
what this does is that it reads the roles from the authCookie which was made from FormsAuthenticationTicket and the logon logic looks like this
i store the roles in my database with two tables: table: Role which has the columns: roleID and roleName and the table: UsersRoles wich has the columns: userID and roleID, this makes it possible for multiple roles for several users and it's easy to make your own logic to add/remove roles from users and so forth. This enables you to use [Authorize(Roles="Super Admin")] for instance. hope this helps. edit: forgot to make the password check but you just add an if in the logOn method which checks if the username and password provided checks up and if not it returns false | |||||
feedback
|
|
I used the NauckIt.PostgreSQL provider's source code as a base, and modified it to suit my needs. | |||
|
feedback
|