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.
