PFACL
Objective-C
@interface PFACL : NSObject <NSCopying, NSCoding>
Swift
class PFACL : NSObject, NSCopying, NSCoding
The PFACL class is used to control which users can access or modify a particular object.
Each PFObject can have its own PFACL. You can grant read and write permissions separately to specific users,
to groups of users that belong to roles, or you can grant permissions to “the public” so that,
for example, any user could read a particular object but only a particular set of users could write to that object.
-
Creates an ACL with no permissions granted.
Declaration
Objective-C
+ (nonnull instancetype)ACL;Return Value
Returns a new
PFACL.
-
Controls whether the public is allowed to read this object.
Declaration
Objective-C
@property (nonatomic, assign, unsafe_unretained, readwrite, getter=getPublicReadAccess) BOOL publicReadAccess;Swift
var hasPublicReadAccess: Bool { get set } -
Controls whether the public is allowed to write this object.
Declaration
Objective-C
@property (nonatomic, assign, unsafe_unretained, readwrite, getter=getPublicWriteAccess) BOOL publicWriteAccess;Swift
var hasPublicWriteAccess: Bool { get set }
-
Set whether the given user id is allowed to read this object.
Declaration
Objective-C
- (void)setReadAccess:(BOOL)allowed forUserId:(nonnull NSString *)userId;Swift
func setReadAccess(_ allowed: Bool, forUserId userId: String)Parameters
allowedWhether the given user can write this object.
userIdThe
PFObject.objectIdof the user to assign access. -
Gets whether the given user id is explicitly allowed to read this object. Even if this returns
NO, the user may still be able to access it ifpublicReadAccessreturnsYESor if the user belongs to a role that has access.Declaration
Objective-C
- (BOOL)getReadAccessForUserId:(nonnull NSString *)userId;Swift
func getReadAccess(forUserId userId: String) -> BoolParameters
userIdThe
PFObject.objectIdof the user for which to retrive access.Return Value
YESif the user with thisobjectIdhas explicit read access, otherwiseNO. -
Set whether the given user id is allowed to write this object.
Declaration
Objective-C
- (void)setWriteAccess:(BOOL)allowed forUserId:(nonnull NSString *)userId;Swift
func setWriteAccess(_ allowed: Bool, forUserId userId: String)Parameters
allowedWhether the given user can read this object.
userIdThe
PFObject.objectIdof the user to assign access. -
Gets whether the given user id is explicitly allowed to write this object. Even if this returns NO, the user may still be able to write it if
publicWriteAccessreturnsYESor if the user belongs to a role that has access.Declaration
Objective-C
- (BOOL)getWriteAccessForUserId:(nonnull NSString *)userId;Swift
func getWriteAccess(forUserId userId: String) -> BoolParameters
userIdThe
PFObject.objectIdof the user for which to retrive access.Return Value
YESif the user with thisPFObject.objectIdhas explicit write access, otherwiseNO. -
Set whether the given user is allowed to read this object.
Declaration
Objective-C
- (void)setReadAccess:(BOOL)allowed forUser:(nonnull PFUser *)user;Swift
func setReadAccess(_ allowed: Bool, for user: PFUser)Parameters
allowedWhether the given user can read this object.
userThe user to assign access.
-
Gets whether the given user is explicitly allowed to read this object. Even if this returns
NO, the user may still be able to access it ifpublicReadAccessreturnsYESor if the user belongs to a role that has access.Declaration
Objective-C
- (BOOL)getReadAccessForUser:(nonnull PFUser *)user;Swift
func getReadAccess(for user: PFUser) -> BoolParameters
userThe user for which to retrive access.
Return Value
YESif the user has explicit read access, otherwiseNO. -
Set whether the given user is allowed to write this object.
Declaration
Objective-C
- (void)setWriteAccess:(BOOL)allowed forUser:(nonnull PFUser *)user;Swift
func setWriteAccess(_ allowed: Bool, for user: PFUser)Parameters
allowedWhether the given user can write this object.
userThe user to assign access.
-
Gets whether the given user is explicitly allowed to write this object. Even if this returns
NO, the user may still be able to write it ifpublicWriteAccessreturnsYESor if the user belongs to a role that has access.Declaration
Objective-C
- (BOOL)getWriteAccessForUser:(nonnull PFUser *)user;Swift
func getWriteAccess(for user: PFUser) -> BoolParameters
userThe user for which to retrive access.
Return Value
YESif the user has explicit write access, otherwiseNO.
-
Get whether users belonging to the role with the given name are allowed to read this object. Even if this returns
NO, the role may still be able to read it if a parent role has read access.Declaration
Objective-C
- (BOOL)getReadAccessForRoleWithName:(nonnull NSString *)name;Swift
func getReadAccessForRole(withName name: String) -> BoolParameters
nameThe name of the role.
Return Value
YESif the role has read access, otherwiseNO. -
Set whether users belonging to the role with the given name are allowed to read this object.
Declaration
Objective-C
- (void)setReadAccess:(BOOL)allowed forRoleWithName:(nonnull NSString *)name;Swift
func setReadAccess(_ allowed: Bool, forRoleWithName name: String)Parameters
allowedWhether the given role can read this object.
nameThe name of the role.
-
Get whether users belonging to the role with the given name are allowed to write this object. Even if this returns
NO, the role may still be able to write it if a parent role has write access.Declaration
Objective-C
- (BOOL)getWriteAccessForRoleWithName:(nonnull NSString *)name;Swift
func getWriteAccessForRole(withName name: String) -> BoolParameters
nameThe name of the role.
Return Value
YESif the role has read access, otherwiseNO. -
Set whether users belonging to the role with the given name are allowed to write this object.
Declaration
Objective-C
- (void)setWriteAccess:(BOOL)allowed forRoleWithName:(nonnull NSString *)name;Swift
func setWriteAccess(_ allowed: Bool, forRoleWithName name: String)Parameters
allowedWhether the given role can write this object.
nameThe name of the role.
-
Get whether users belonging to the given role are allowed to read this object. Even if this returns
NO, the role may still be able to read it if a parent role has read access.The role must already be saved on the server and it’s data must have been fetched in order to use this method.
Declaration
Objective-C
- (BOOL)getReadAccessForRole:(nonnull PFRole *)role;Swift
func getReadAccess(for role: PFRole) -> BoolParameters
roleThe name of the role.
Return Value
YESif the role has read access, otherwiseNO. -
Set whether users belonging to the given role are allowed to read this object.
The role must already be saved on the server and it’s data must have been fetched in order to use this method.
Declaration
Objective-C
- (void)setReadAccess:(BOOL)allowed forRole:(nonnull PFRole *)role;Swift
func setReadAccess(_ allowed: Bool, for role: PFRole)Parameters
allowedWhether the given role can read this object.
roleThe role to assign access.
-
Get whether users belonging to the given role are allowed to write this object. Even if this returns
NO, the role may still be able to write it if a parent role has write access.The role must already be saved on the server and it’s data must have been fetched in order to use this method.
Declaration
Objective-C
- (BOOL)getWriteAccessForRole:(nonnull PFRole *)role;Swift
func getWriteAccess(for role: PFRole) -> BoolParameters
roleThe name of the role.
Return Value
YESif the role has write access, otherwiseNO. -
Set whether users belonging to the given role are allowed to write this object.
The role must already be saved on the server and it’s data must have been fetched in order to use this method.
Declaration
Objective-C
- (void)setWriteAccess:(BOOL)allowed forRole:(nonnull PFRole *)role;Swift
func setWriteAccess(_ allowed: Bool, for role: PFRole)Parameters
allowedWhether the given role can write this object.
roleThe role to assign access.
-
Sets a default ACL that will be applied to all instances of
PFObjectwhen they are created.- If
NO, the providedaclwill be used without modification. - If
aclisnil, this value is ignored.
Declaration
Objective-C
+ (void)setDefaultACL:(nullable PFACL *)acl withAccessForCurrentUser:(BOOL)currentUserAccess;Swift
class func setDefault(_ acl: PFACL?, withAccessForCurrentUser currentUserAccess: Bool)Parameters
aclcurrentUserAccess- If
YES, thePFACLthat is applied to newly-created instance ofPFObjectwill provide read and write access to thePFUser.+currentUserat the time of creation. - If
View on GitHub
Install in Dash