Click here to Skip to main content
15,885,767 members
Articles / Web Development / ASP.NET

Extending ASP.NET role based Security with Custom Security Module (Permission Based, Page Level Authorization)

Rate me:
Please Sign up or sign in to vote.
4.80/5 (18 votes)
11 Nov 2011Ms-PL5 min read 107.8K   9.3K   74  
This project intends to extend the default ASP.NET role based Security to include Permission Based / Page Level Authorization Layer. Works with both ASP.NET and ASP.NET MVC. Permission rules to Allow/Deny access to website resources (like "Folder/File.aspx" or "Controller/Action") are stored in DB.
using System;
using System.Collections.Generic;
using System.Text;

namespace Aadhaar.Data.ViewModel
{
   public class Permission
    {
       Entity.roleactions _base;

        #region Properties
        public int Id
        {
            get { return _base.Id; }
            set { _base.Id = value; }
        }
        public string Roles
        {
            get { return (_base.Role==null||string.IsNullOrEmpty(_base.Role.RoleName)) ? string.Empty : _base.Role.RoleName; }
            set { _base.Role.RoleName = value; }
        }
        public string Controller
        {
            get { return _base.Action.ControllerName; }
            set { _base.Action.ControllerName = value; }
        }
        public string Action
        {
            get { return _base.Action.ActionName; }
            set { _base.Action.ActionName = value; }
        }
        public string Users
        {
            get { return (_base.User==null||string.IsNullOrEmpty(_base.User.UserName))?string.Empty:_base.User.UserName; }
            set { _base.User.UserName = value; }
        }
        public int ControllerId
        {
            get;
            set;
        }

        public Guid UserId
        {
            get { return _base.User.Id; }
            set { _base.User.Id = value; }
        }
        public int PermissionType
        {
            get { return _base.PermissionType; }
            set { _base.PermissionType = value; }
        }

        #endregion Properties

        internal Permission(Entity.roleactions inputbase)
        {
            _base = new Entity.roleactions();
            _base.Role = new Entity.Roles();
            _base.User = new Entity.Users();
            _base.Action = new Entity.actions();
            _base.Id = inputbase.Id;
            _base.Role = inputbase.Role;
            _base.Action = inputbase.Action;
            _base.User = inputbase.User;
            _base.PermissionType = inputbase.PermissionType;
        }
        public Permission()
        {
            _base = new Entity.roleactions();
            _base.Role = new Entity.Roles();
            _base.User = new Entity.Users();
            _base.Action = new Entity.actions();
        }

        internal Entity.roleactions toRoleAction()
        {
            return _base;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
Singapore Singapore
I love programming, reading, and meditation. I like to explore management and productivity.

Comments and Discussions