-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPFACL.h
More file actions
265 lines (195 loc) · 8.84 KB
/
PFACL.h
File metadata and controls
265 lines (195 loc) · 8.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//
// PFACL.h
//
// Copyright 2011-present Parse Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#if TARGET_OS_IPHONE
#import <Parse/PFNullability.h>
#else
#import <ParseOSX/PFNullability.h>
#endif
PF_ASSUME_NONNULL_BEGIN
@class PFRole;
@class PFUser;
/*!
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.
*/
@interface PFACL : NSObject <NSCopying, NSCoding>
///--------------------------------------
/// @name Creating an ACL
///--------------------------------------
/*!
@abstract Creates an ACL with no permissions granted.
@returns Returns a new `PFACL`.
*/
+ (PFACL *)ACL;
/*!
@abstract Creates an ACL where only the provided user has access.
@param user The user to assign access.
*/
+ (PFACL *)ACLWithUser:(PFUser *)user;
///--------------------------------------
/// @name Controlling Public Access
///--------------------------------------
/*!
@abstract Set whether the public is allowed to read this object.
@param allowed Whether the public can read this object.
*/
- (void)setPublicReadAccess:(BOOL)allowed;
/*!
@abstract Gets whether the public is allowed to read this object.
@returns `YES` if the public read access is enabled, otherwise `NO`.
*/
- (BOOL)getPublicReadAccess;
/*!
@abstract Set whether the public is allowed to write this object.
@param allowed Whether the public can write this object.
*/
- (void)setPublicWriteAccess:(BOOL)allowed;
/*!
@abstract Gets whether the public is allowed to write this object.
@returns `YES` if the public write access is enabled, otherwise `NO`.
*/
- (BOOL)getPublicWriteAccess;
///--------------------------------------
/// @name Controlling Access Per-User
///--------------------------------------
/*!
@abstract Set whether the given user id is allowed to read this object.
@param allowed Whether the given user can write this object.
@param userId The <[PFObject objectId]> of the user to assign access.
*/
- (void)setReadAccess:(BOOL)allowed forUserId:(NSString *)userId;
/*!
@abstract 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 if <getPublicReadAccess> returns `YES`
or if the user belongs to a role that has access.
@param userId The <[PFObject objectId]> of the user for which to retrive access.
@returns `YES` if the user with this `objectId` has *explicit* read access, otherwise `NO`.
*/
- (BOOL)getReadAccessForUserId:(NSString *)userId;
/*!
@abstract Set whether the given user id is allowed to write this object.
@param allowed Whether the given user can read this object.
@param userId The `objectId` of the user to assign access.
*/
- (void)setWriteAccess:(BOOL)allowed forUserId:(NSString *)userId;
/*!
@abstract 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 <getPublicWriteAccess> returns `YES`
or if the user belongs to a role that has access.
@param userId The <[PFObject objectId]> of the user for which to retrive access.
@returns `YES` if the user with this `objectId` has *explicit* write access, otherwise `NO`.
*/
- (BOOL)getWriteAccessForUserId:(NSString *)userId;
/*!
@abstract Set whether the given user is allowed to read this object.
@param allowed Whether the given user can read this object.
@param user The user to assign access.
*/
- (void)setReadAccess:(BOOL)allowed forUser:(PFUser *)user;
/*!
@abstract 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 if <getPublicReadAccess> returns `YES`
or if the user belongs to a role that has access.
@param user The user for which to retrive access.
@returns `YES` if the user has *explicit* read access, otherwise `NO`.
*/
- (BOOL)getReadAccessForUser:(PFUser *)user;
/*!
@abstract Set whether the given user is allowed to write this object.
@param allowed Whether the given user can write this object.
@param user The user to assign access.
*/
- (void)setWriteAccess:(BOOL)allowed forUser:(PFUser *)user;
/*!
@abstract 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 if <getPublicWriteAccess> returns `YES`
or if the user belongs to a role that has access.
@param user The user for which to retrive access.
@returns `YES` if the user has *explicit* write access, otherwise `NO`.
*/
- (BOOL)getWriteAccessForUser:(PFUser *)user;
///--------------------------------------
/// @name Controlling Access Per-Role
///--------------------------------------
/*!
@abstract 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.
@param name The name of the role.
@returns `YES` if the role has read access, otherwise `NO`.
*/
- (BOOL)getReadAccessForRoleWithName:(NSString *)name;
/*!
@abstract Set whether users belonging to the role with the given name are allowed to read this object.
@param allowed Whether the given role can read this object.
@param name The name of the role.
*/
- (void)setReadAccess:(BOOL)allowed forRoleWithName:(NSString *)name;
/*!
@abstract 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.
@param name The name of the role.
@returns `YES` if the role has read access, otherwise `NO`.
*/
- (BOOL)getWriteAccessForRoleWithName:(NSString *)name;
/*!
@abstract Set whether users belonging to the role with the given name are allowed to write this object.
@param allowed Whether the given role can write this object.
@param name The name of the role.
*/
- (void)setWriteAccess:(BOOL)allowed forRoleWithName:(NSString *)name;
/*!
@abstract 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.
@discussion The role must already be saved on the server and
it's data must have been fetched in order to use this method.
@param role The name of the role.
@returns `YES` if the role has read access, otherwise `NO`.
*/
- (BOOL)getReadAccessForRole:(PFRole *)role;
/*!
@abstract Set whether users belonging to the given role are allowed to read this object.
@discussion The role must already be saved on the server and
it's data must have been fetched in order to use this method.
@param allowed Whether the given role can read this object.
@param role The role to assign access.
*/
- (void)setReadAccess:(BOOL)allowed forRole:(PFRole *)role;
/*!
@abstract 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.
@discussion The role must already be saved on the server and
it's data must have been fetched in order to use this method.
@param role The name of the role.
@returns `YES` if the role has write access, otherwise `NO`.
*/
- (BOOL)getWriteAccessForRole:(PFRole *)role;
/*!
@abstract Set whether users belonging to the given role are allowed to write this object.
@discussion The role must already be saved on the server and
it's data must have been fetched in order to use this method.
@param allowed Whether the given role can write this object.
@param role The role to assign access.
*/
- (void)setWriteAccess:(BOOL)allowed forRole:(PFRole *)role;
///--------------------------------------
/// @name Setting Access Defaults
///--------------------------------------
/*!
@abstract Sets a default ACL that will be applied to all instances of <PFObject> when they are created.
@param acl The ACL to use as a template for all instance of <PFObject> created after this method has been called.
This value will be copied and used as a template for the creation of new ACLs, so changes to the
instance after this method has been called will not be reflected in new instance of <PFObject>.
@param currentUserAccess - If `YES`, the `PFACL` that is applied to newly-created instance of <PFObject> will
provide read and write access to the <[PFUser currentUser]> at the time of creation.
- If `NO`, the provided `acl` will be used without modification.
- If `acl` is `nil`, this value is ignored.
*/
+ (void)setDefaultACL:(PF_NULLABLE PFACL *)acl withAccessForCurrentUser:(BOOL)currentUserAccess;
@end
PF_ASSUME_NONNULL_END