vote up 1 vote down star

I'm building a document repository as part of a company intranet. There is an existing SSO system which makes use of the ASP.NET Membership and Roles providers. The document repository closely resembles a traditional OS file system - nested folders with docs (however in this case a document can be in two folders as it's a virtual system).

I now need to limit access to the repository based on the users' roles - so a user can only access a folder/document if they are in a role which is permitted.

I have several ideas of how to do this, but none seem terribly elegant. How is this normally done? What kind of db structures would you use? I'm not too bothered whether permissions are inherited or not - allowing inheritance seems to make assigning permissions easier but reading permissions harder.

flag

50% accept rate

2 Answers

vote up 0 vote down

For a 'standard' ASP.NET app, you could use the existing infrastructure that lets you use the tag in the web.config, and setup the allowed roles for a given directory there. I've never done this in ASP.NET MVC, so I can't offer much advice for that scenario, but it might work just the same, or it may require writing a short method to test the User object (using User.IsInRole() ) against the config file.

link|flag
vote up 0 vote down

If I understand your question, you could try something like this:

In your code beside add a property like:

private bool _UserCanEdit = false;
protected bool UserCanEdit
{
get { return _UserCanEdit; }
set { _UserCanEdit = value; }
}

In your pages Page_Init event handler:

protected void Page_Init(object sender, EventArgs e)
{
        this.UserCanEdit = this.Page.User.Identity.IsAuthenticated && (this.Page.User.IsInRole("Administrators") || this.Page.User.IsInRole("Developers"));
}

Then throughout the code beside you can use it to restrict access to controls, visibility of controls, etc.

btnSaveResults.Enabled = UserCanEdit;

or

lbtnDeleteImage.Visible = UserCanEdit;

or

if (UserCanEdit)
{
    ....
}
else
{
    ....
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.