Implementing authentication on a file system like structure - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:39:28Z http://stackoverflow.com/feeds/question/996283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/996283/implementing-authentication-on-a-file-system-like-structure 1 Implementing authentication on a file system like structure Adam Pope 2009-06-15T14:01:21Z 2009-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#996338 0 Answer by Harper Shelby for Implementing authentication on a file system like structure Harper Shelby 2009-06-15T14:12:23Z 2009-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#996471 0 Answer by David Glass for Implementing authentication on a file system like structure David Glass 2009-06-15T14:36:11Z 2009-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 &amp;&amp; (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>