Implementing authentication on a file system like structure - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:39:28Zhttp://stackoverflow.com/feeds/question/996283http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/996283/implementing-authentication-on-a-file-system-like-structure1Implementing authentication on a file system like structureAdam Pope2009-06-15T14:01:21Z2009-08-18T21:01:34Z
<p>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).</p>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/996283/implementing-authentication-on-a-file-system-like-structure/996338#9963380Answer by Harper Shelby for Implementing authentication on a file system like structureHarper Shelby2009-06-15T14:12:23Z2009-06-15T14:12:23Z<p>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 <em>might</em> work just the same, or it may require writing a short method to test the User object (using User.IsInRole() ) against the config file.</p>
http://stackoverflow.com/questions/996283/implementing-authentication-on-a-file-system-like-structure/996471#9964710Answer by David Glass for Implementing authentication on a file system like structureDavid Glass2009-06-15T14:36:11Z2009-08-18T21:01:34Z<p><strong>If I understand your question, you could try something like this:</strong></p>
<p>In your code beside add a property like:</p>
<pre><code>private bool _UserCanEdit = false;
protected bool UserCanEdit
{
get { return _UserCanEdit; }
set { _UserCanEdit = value; }
}
</code></pre>
<p>In your pages Page_Init event handler:</p>
<pre><code>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"));
}
</code></pre>
<p>Then throughout the code beside you can use it to restrict access to controls, visibility of controls, etc.</p>
<pre><code>btnSaveResults.Enabled = UserCanEdit;
</code></pre>
<p>or</p>
<pre><code>lbtnDeleteImage.Visible = UserCanEdit;
</code></pre>
<p>or</p>
<pre><code>if (UserCanEdit)
{
....
}
else
{
....
}
</code></pre>