我正在研究MS CRM插件,它应该能够确定当前用户是否具有对当前实体的写入权限。我不知道如何处理这项任务。
目前,用户最友好的完成此任务的方式似乎是unsupported。
除了编写FetchXML查询并解析其输出外,MS CRM 2011 SDK中是否还有其他选择?
答案 0 :(得分:9)
以下是我提出的内容 - 此代码将检查,当前用户是否已授予当前记录的权限:
// Requesting user's access rights to current record
var principalAccessRequest = new RetrievePrincipalAccessRequest
{
Principal = new EntityReference("systemuser", localContext.PluginExecutionContext.UserId),
Target = new EntityReference(localContext.PluginExecutionContext.PrimaryEntityName, localContext.PluginExecutionContext.PrimaryEntityId)
};
// Response will contain AccessRights mask, like AccessRights.WriteAccess | AccessRights.ReadAccess | ...
var principalAccessResponse = (RetrievePrincipalAccessResponse)localContext.OrganizationService.Execute(principalAccessRequest);
if ((principalAccessResponse.AccessRights & AccessRights.WriteAccess) != AccessRights.None)
{
...
...
...
}
如果用户if
到当前记录,则会执行WriteAccess
语句中的代码。
答案 1 :(得分:1)
根据马特的答案:
您只需要执行连接并添加您关心的where子句。这是等效SQL:
SELECT Privilege.*
FROM Privilege
INNER JOIN RolePrivilege ON Privilege.PrivilegeId = RolePrivilege.PrivilegeId
INNER JOIN SystemUserRole ON SystemUserRole.RoleId = RolePrivileges.RoleId AND SystemUserRole.SystemUserId = (user's GUID)
-- WHERE Add whatever constraints on the Privilege entity that you need
您可以使用Fetch XML,LINQ to CRM或Query Expressions,甚至OData来执行此操作。