Working With: Permissions - SharePoint/PnP-JS-Core GitHub Wiki
A common task is to determine if a user or the current user has a certain permission level. It is a great idea to check before performing a task such as creating a list to ensure a user can without getting back an error. This allows you to provide a better experience to the user.
Permissions in SharePoint are assigned to the set of securable objects which include Site, Web, List, and List Item. These are the four level to which unique permissions can be assigned. As such sp-pnp-js provides a set of methods defined in the QueryableSecurable class to handle these permissions. These examples all use the Web to get the values, however the methods work identically on all securables.
Get Role Assignments
This gets a collection of all the role assignments on a given securable. The property returns a RoleAssignments collection which supports the OData collection operators.
pnp.sp.web.roleAssignments.get().then(roles => {
Logger.writeJSON(roles);
});
First Unique Ancestor Securable Object
This method can be used to find the securable parent up the hierarchy that has unique permissions. If everything inherits permissions this will be the Site. If a sub web has unique permissions it will be the web, and so on.
pnp.sp.web.firstUniqueAncestorSecurableObject.get().then(obj => {
Logger.writeJSON(obj);
});
User Effective Permissions
This method returns the BasePermissions for a given user or the current user. This value contains the High and Low values for a user on the securable you have queried.
pnp.sp.web.getUserEffectivePermissions("i:0#.f|membership|[email protected]").then(perms => {
Logger.writeJSON(perms);
});
pnp.sp.web.getCurrentUserEffectivePermissions().then(perms => {
Logger.writeJSON(perms);
});
User Has Permissions
Because the High and Low values in the BasePermission don't obviously mean anything you can use these methods along with the PermissionKind enumeration to check actual rights on the securable. These methods were introduced in version 2.0.3.
Make sure to import PermissionKind Enum
import { PermissionKind } from "@pnp/sp";
pnp.sp.web.userHasPermissions("i:0#.f|membership|[email protected]", PermissionKind.ApproveItems).then(perms => {
console.log(perms);
});
pnp.sp.web.currentUserHasPermissions(PermissionKind.ApproveItems).then(perms => {
console.log(perms);
});
Has Permissions
If you need to check multiple permissions it can be more efficient to get the BasePermissions once and then use the hasPermissions method to check them as shown below. This method was introduced in 2.0.3.
pnp.sp.web.getCurrentUserEffectivePermissions().then(perms => {
if (pnp.sp.web.hasPermissions(perms, PermissionKind.AddListItems) && pnp.sp.web.hasPermissions(perms, PermissionKind.DeleteVersions)) {
// ...
}
});