I've implemented a number of system that used attribute based access control.
There are certain classes of systems where RBAC simply doesn't work (such as the example you've listed)
I've never used a 3rd party library for ABAC though, our use cases have tended to be sufficiently specialised to justify building our own solutions.
The better (and more complex) systems I worked on were built on top of Java Permissions (and PermissionCollections), making heavy use of "implies" (with some relatively complex logic) and conjunctions (a specially handled AndPermission)
You also need somewhere to check permissions that is low enough down the stack to know which data is being acted on. This is different to a RBAC system, where you might be able to simply mark a URL as belonging to a given Role. In an ABAC system you typically need to know (and include) that attributes, and sometimes that might actually involved loading some additional data first - e.g. Whether user "X" can update record "123" depends on whether that is in DataSet "A" or DataSet "B"
Without knowing the internals of your application, it's tricky to offer much advice there, but if you have a "services" layer, then that's probably the place to put the ABAC checks (I've have success with an interception [decorator] framework sitting on top of our services layer to control access)
Once you have those, then it tends to be relatively straight forward.
A request comes in for
"delete record 123"
The logged in user is "X"
Then you'd do something like
(Access Check)
String org = getOrganisitionForRecord(123);
Permission required = new EditRecordPermission(org);
if( userX.getPermissions().implies( required ) )
{
// Proceed
}
else
{
throw new SecurityException("...");
}
// .........
(ManagerPermission)
public boolean implies(Permission permission)
{
if(permission instanceof EditRecordPermission)
{
return this.organisation.equals( ((EditRecordPermission)permission).getOrganisation() );
}
if(permission instanceof ViewRecordPermission)
{
return this.organisation.equals( ((ViewRecordPermission)permission).getOrganisation() );
}
return false;
}
Alternatively, you can have move that complexity into a user permissions resolver, that will determine all the permissions a user has (e.g. A manager has "edit for Org X" and "view for Org X").
That makes the "does this user have this permission?" check a lot simpler, but depending on the complexity of your ABAC rules, it's not always feasible.
My experience is that for complex systems you end up somewhere in between - you interpret the user's attributes to create a set of derived permissions, but those permissions still have some complexity in their implies methods.
HTH.