X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/blobdiff_plain/9b3338dbdd3bb11315f01b571120ccb8f3536064..37781db84157d12cbfc6e8a454e2a2dc3846e2dc:/utils.py?ds=inline diff --git a/utils.py b/utils.py index 6b3b697..de68f22 100755 --- a/utils.py +++ b/utils.py @@ -319,4 +319,20 @@ def _sudo(func, userid=None) : raise e return ret - \ No newline at end of file + +security.declarePublic('searchContentsWithLocalRolesForAuthenticatedUser') +def searchContentsWithLocalRolesForAuthenticatedUser(**kw): + mtool = getUtilityByInterfaceName('Products.CMFCore.interfaces.IMembershipTool') + ctool = getUtilityByInterfaceName('Products.CMFCore.interfaces.ICatalogTool') + member = mtool.getAuthenticatedMember() + userid = member.getId() + userAndGroups = ['user:%s' % userid] + + getGroups = getattr(member, 'getGroups', None) + if getGroups is not None : + for group in getGroups(): + userAndGroups.append('user:'+group) + + kw[ 'allowedRolesAndUsers' ] = userAndGroups + + return ctool.unrestrictedSearchResults(**kw)