ISearchableContentType and Group Members

Former Member
Former Member

Hi

I created my custom searchable content type and implemented GetViewSecurityRoles method:

public int[] GetViewSecurityRoles(Guid contentId)
{
    try
    {
        var content = _roadTestItemService.Get(contentId);
        RoadTestItemApplication app = (RoadTestItemApplication)content.Application;

        IRoles roles = Apis.Get<IRoles>();
        
        List<int?> list = new List<int?>();
        foreach (var role in roles.List(content.ApplicationId, RoadTestConstants.PermissionItemView))
            list.Add(role.Id);
        
        int?[] array = list.Intersect(roles.List(content.Application.Container.ContainerId, (Guid)GroupPermission.ReadGroup)
            .Select(groupRole => groupRole.Id).ToArray()).ToArray();
        
        return array.Select(roleId => Convert.ToInt32(roleId)).ToArray();
    }
    catch (Exception e)
    {
        ExceptionHelper.Handle(e);
        return Array.Empty<int>();
    }
}

As you can see it returns roleIds from security roles list.

But group members also may have an access to content ant this approach does not work in this case.

How can I implement group members support?

Parents Reply Children
No Data