I'm trying to restrict the results of a query for a group of entities based on some user/group control mechanism. Since I'm already using Rhino Security for security in my application, and Rhino Security can limit access based on Entity, I thought that it would be a good way to implement this functionality.
So far, I've been unable to find a way to determine access to a list of entities for a User. It looks like the closest I can get is to use the following method of the AuthorizationService in Rhino Security:
public bool IsAllowed<TEntity>(IUser user, TEntity entity, string operation) where TEntity : class
The method I'm trying to put this functionality into is in a generic repository, and currently looks like the following:
public virtual IQueryable<T> GetQueryable(UserOperationSetting setting)
{
// DetachedCriteria criteria = ...
ICriteria criteria = Session.CreateCriteria(typeof(T))
// Attempted use of .Add(Expression...), .Add(Restrictions...),
// .CreateAlias(...), .CreateCriteria(...)
;
// The AuthorizationService is part of Rhino Security,
// implementing IAuthorizationService
AuthorizationService.AddPermissionsToQuery(setting.User, setting.Operation, criteria);
return criteria.Future<T>().AsQueryable();
}
I can see where this may be very specialized functionality, that would have to be implemented in a less generic form.
Unfortunately, running a query like this on a large result set would be costly. Is there another way that I could do this?
I've also tried to build ICriteria and DetachedCriteria with various parameters. I was hoping that I could find a way to essentially join the permissions in using this method.
The rough SQL of what I would be looking to retrieve could look something like the following (although this query looks scary).
select t.* --get every Entity for which the user has permission
from Entity t
inner join security.Permissions p
on t.securityKey = p.EntitySecurityKey
inner join security.Operations o
on p.Operation = o.Id
inner join Users u
on p.[User] = u.Id
where u.Id = '57' --if the user's id is 57
and o.Name = '/myOperation'
union select t2.* --get every Entity for which the user's groups have permission
from Entity t2
inner join security.Permissions p2
on t2.securityKey = p2.EntitySecurityKey
inner join security.Operations o2
on p2.Operation = o2.Id
inner join security.UsersGroups ug
on p2.UsersGroup = ug.Id
inner join security.UsersToUsersGroups utg
on ug.Id = utg.GroupId
inner join Users u2
on utg.UserId = u2.Id
where u2.Id = '57'
and o2.Name = '/myOperation'
My environment currently consists of Rhino Security incorporated into a Sharp Architecture 2.0 project. I'm using FluentNHibernate for data access. My current solution doesn't make use of any Entity-specific Permissions. Everything is currently done using Users, UsersGroups, Permissions and Operations.
Would it be better to abandon this approach altogether, and create a table something like the following to handle permissions for Entity?
CREATE TABLE [dbo].[EntityPermission](
[Id] [int] IDENTITY(1,1) NOT NULL,
[entityId] [int] NOT NULL,
[userId] [int] NULL,
[groupId] [uniqueidentifier] NULL,
[owner] [bit] NOT NULL,
[delegator] [bit] NOT NULL,
[editor] [bit] NOT NULL,
[viewer] [bit] NOT NULL)
Is there a better solution that I'm overlooking?