Behaviour associated to update permissions

cancel
Showing results for 
Search instead for 
Did you mean: 
eljuaner
Active Member II

Behaviour associated to update permissions

Jump to solution

I want to execute some code (Java if it's possible or Javascript if it isn't) when an user manages permissions in Alfresco Share and he saves changes, which is the best way to do this? I can't find a behaviour or similar to listen on this event.

 

Thanks in advance!

1 Solution

Accepted Solutions
angelborroy
Alfresco Employee

Re: Behaviour associated to update permissions

Jump to solution

You can try using PermissionServicePolicies.

https://github.com/Alfresco/alfresco-repository/blob/master/src/main/java/org/alfresco/repo/security...

  • OnGrantLocalPermission > onGrantLocalPermission
  • OnRevokeLocalPermission > onRevokeLocalPermission
  • OnInheritPermissionsEnabled > onInheritPermissionsEnabled
  • OnInheritPermissionsDisabled > onInheritPermissionsDisabled

https://github.com/Alfresco/alfresco-repository/blob/master/src/main/java/org/alfresco/repo/security...

Hyland Developer Evangelist

View solution in original post

7 Replies
EddieMay
Alfresco Employee

Re: Behaviour associated to update permissions

Jump to solution

Hi @eljuaner,

Do you mean permissions on a document? If so, this tutorial on implementing custom behaviours might prove useful. 

Digital Community Manager, Alfresco Software.
Problem solved? Click Accept as Solution!
eljuaner
Active Member II

Re: Behaviour associated to update permissions

Jump to solution

Hello, Eddie and thanks for your response, but I'm familiarized with create custom behaviours. My question is what event I can listen to trigger my behaviour when the permissions are set. I tried with OnCreateAssociationPolicyOnCreateChildAssociationPolicy OnUpdateNodePolicy and OnUpdatePropertiesPolicy, but my behaviour is not triggered by any of them. So which policy could I use?

 

Thanks in advance again!

angelborroy
Alfresco Employee

Re: Behaviour associated to update permissions

Jump to solution

You can try using PermissionServicePolicies.

https://github.com/Alfresco/alfresco-repository/blob/master/src/main/java/org/alfresco/repo/security...

  • OnGrantLocalPermission > onGrantLocalPermission
  • OnRevokeLocalPermission > onRevokeLocalPermission
  • OnInheritPermissionsEnabled > onInheritPermissionsEnabled
  • OnInheritPermissionsDisabled > onInheritPermissionsDisabled

https://github.com/Alfresco/alfresco-repository/blob/master/src/main/java/org/alfresco/repo/security...

Hyland Developer Evangelist
afaust
Master

Re: Behaviour associated to update permissions

Jump to solution

PermissionServicePolicies are NOT part of the Alfresco Public API and thus may change without warning between Alfresco releases. Also, these policies do NOT work like other policies, because their implementation has been hacked in a quick & dirty manner. You can only bind against these permissions using the node type - aspects of a node will be ignored during registered policy lookup. The OnInheritPermissionsEnabled  and OnInheritPermissionsDisabled  are the worst of all, as their lookup will only check for bindings against the system base type, and completely ignores any special type the node may have.

As it stands, these policies require more or less a global binding and custom type/aspect check when your behaviour implementation is being called to determine if your logic actually needs to run.

eljuaner
Active Member II

Re: Behaviour associated to update permissions

Jump to solution

Ok, thank you both very much!

I was looking for something like those policies that you showed me, Angel. It wouldn't be the first time you saved my day.

Unfortunately, in this case my client uses an older version of Alfresco, which does not have these behaviors. This may be another reason for them to upgrade to a newer version. Anyway we have implemented one workaround to solve this particular problem.

Axel, one last thing, do you know if the PermissionServicePolicies are planned to become part of the Alfresco Public API in next releases? I think they could be useful for more people.

Thanks again and regards

afaust
Master

Re: Behaviour associated to update permissions

Jump to solution

I do not expect to ever see the PermissionServicePolicies as part of the public API. a) Alfresco would only include this if they have a use case of their own that warrants this, b) Alfresco is hoping to move people away from using in-process behaviours for event handling, and use queue-based out-of-process handling - adding more policy interfaces seems counter-productive for that goal.

EddieMay
Alfresco Employee

Re: Behaviour associated to update permissions

Jump to solution

Hi @eljuaner,

Thanks for updating. your post - helpful to others to know. 

Digital Community Manager, Alfresco Software.
Problem solved? Click Accept as Solution!