-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
acl.py
406 lines (284 loc) · 10.7 KB
/
acl.py
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
"""
This module makes it simple to interact
with the access control lists that Cloud Storage provides.
:class:`gcloud.storage.bucket.Bucket` has a getting method
that creates an ACL object under the hood,
and you can interact with that using
:func:`gcloud.storage.bucket.Bucket.get_acl`::
>>> from gcloud import storage
>>> connection = storage.get_connection(project, email, key_path)
>>> bucket = connection.get_bucket(bucket_name)
>>> acl = bucket.get_acl()
Adding and removing permissions can be done with the following methods
(in increasing order of granularity):
- :func:`ACL.all`
corresponds to access for all users.
- :func:`ACL.all_authenticated` corresponds
to access for all users that are signed into a Google account.
- :func:`ACL.domain` corresponds to access on a
per Google Apps domain (ie, ``example.com``).
- :func:`ACL.group` corresponds to access on a
per group basis (either by ID or e-mail address).
- :func:`ACL.user` corresponds to access on a
per user basis (either by ID or e-mail address).
And you are able to ``grant`` and ``revoke`` the following roles:
- **Reading**:
:func:`ACL.Entity.grant_read` and :func:`ACL.Entity.revoke_read`
- **Writing**:
:func:`ACL.Entity.grant_write` and :func:`ACL.Entity.revoke_write`
- **Owning**:
:func:`ACL.Entity.grant_owner` and :func:`ACL.Entity.revoke_owner`
You can use any of these like any other factory method
(these happen to be :class:`ACL.Entity` factories)::
>>> acl.user('me@example.org').grant_read()
>>> acl.all_authenticated().grant_write()
You can also chain
these ``grant_*`` and ``revoke_*`` methods
together for brevity::
>>> acl.all().grant_read().revoke_write()
After that,
you can save any changes you make
with the :func:`gcloud.storage.acl.ACL.save` method::
>>> acl.save()
You can alternatively save any existing
:class:`gcloud.storage.acl.ACL` object
(whether it was created by a factory method or not)
with the :func:`gcloud.storage.bucket.Bucket.save_acl` method::
>>> bucket.save_acl(acl)
To get the list
of ``entity`` and ``role``
for each unique pair,
the :class:`ACL` class is iterable::
>>> print list(ACL)
[{'role': 'OWNER', 'entity': 'allUsers'}, ...]
This list of tuples can be used as the ``entity`` and ``role``
fields when sending metadata for ACLs to the API.
"""
class ACL(object):
"""Container class representing a list of access controls."""
class Role(object):
"""Enum style class for role-type constants."""
Reader = 'READER'
Writer = 'WRITER'
Owner = 'OWNER'
class Entity(object):
"""Class representing a set of roles for an entity.
This is a helper class that you likely won't ever construct
outside of using the factor methods on the :class:`ACL` object.
"""
def __init__(self, type, identifier=None):
"""
:type type: string
:param type: The type of entity (ie, 'group' or 'user').
:type identifier: string
:param identifier: The ID or e-mail of the entity.
For the special entity types (like 'allUsers') this
is optional.
"""
# TODO: Add validation of types.
self.identifier = identifier
self.roles = set([])
self.type = type
def __str__(self):
if not self.identifier:
return str(self.type)
else:
return '{self.type}-{self.identifier}'.format(self=self)
def __repr__(self):
return '<ACL Entity: {self} ({roles})>'.format(
self=self, roles=', '.join(self.roles))
def get_roles(self):
"""Get the list of roles permitted by this entity.
:rtype: list of strings
:returns: The list of roles associated with this entity.
"""
return self.roles
def grant(self, role):
"""Add a role to the entity.
:type role: string
:param role: The role to add to the entity.
:rtype: :class:`ACL.Entity`
:returns: The entity class.
"""
self.roles.add(role)
return self
def revoke(self, role):
"""Remove a role from the entity.
:type role: string
:param role: The role to remove from the entity.
:rtype: :class:`ACL.Entity`
:returns: The entity class.
"""
if role in self.roles:
self.roles.remove(role)
return self
def grant_read(self):
"""Grant read access to the current entity."""
return self.grant(ACL.Role.Reader)
def grant_write(self):
"""Grant write access to the current entity."""
return self.grant(ACL.Role.Writer)
def grant_owner(self):
"""Grant owner access to the current entity."""
return self.grant(ACL.Role.Owner)
def revoke_read(self):
"""Revoke read access from the current entity."""
return self.revoke(ACL.Role.Reader)
def revoke_write(self):
"""Revoke write access from the current entity."""
return self.revoke(ACL.Role.Writer)
def revoke_owner(self):
"""Revoke owner access from the current entity."""
return self.revoke(ACL.Role.Owner)
def __init__(self):
self.entities = {}
def __iter__(self):
for entity in self.entities.itervalues():
for role in entity.get_roles():
if role:
yield {'entity': str(entity), 'role': role}
def entity_from_dict(self, entity_dict):
"""Build an ACL.Entity object from a dictionary of data.
An entity is a mutable object
that represents a list of roles
belonging to either a user or group
or the special types
for all users
and all authenticated users.
:type entity_dict: dict
:param entity_dict: Dictionary full of data from an ACL lookup.
:rtype: :class:`ACL.Entity`
:returns: An Entity constructed from the dictionary.
"""
entity = entity_dict['entity']
role = entity_dict['role']
if entity == 'allUsers':
entity = self.all()
elif entity == 'allAuthenticatedUsers':
entity = self.all_authenticated()
elif '-' in entity:
type, identifier = entity.split('-', 1)
entity = self.entity(type=type, identifier=identifier)
if not isinstance(entity, ACL.Entity):
raise ValueError('Invalid dictionary: %s' % acl_dict)
return entity.grant(role)
def has_entity(self, entity):
"""Returns whether or not this ACL has any entries for an entity.
:type entity: :class:`ACL.Entity`
:param entity: The entity to check for existence in this ACL.
:rtype: bool
:returns: True of the entity exists in the ACL.
"""
return str(entity) in self.entities
def get_entity(self, entity, default=None):
"""Gets an entity object from the ACL.
:type entity: :class:`ACL.Entity` or string
:param entity: The entity to get lookup in the ACL.
:type default: anything
:param default: This value will be returned if the entity doesn't exist.
:rtype: :class:`ACL.Entity`
:returns: The corresponding entity or the value provided to ``default``.
"""
return self.entities.get(str(entity), default)
def add_entity(self, entity):
"""Add an entity to the ACL.
:type entity: :class:`ACL.Entity`
:param entity: The entity to add to this ACL.
"""
self.entities[str(entity)] = entity
def entity(self, type, identifier=None):
"""Factory method for creating an Entity.
If an entity with the same type and identifier already exists,
this will return a reference to that entity.
If not, it will create a new one and add it to the list
of known entities for this ACL.
:type type: string
:param type: The type of entity to create (ie, ``user``, ``group``, etc)
:type identifier: string
:param identifier: The ID of the entity (if applicable).
This can be either an ID or an e-mail address.
:rtype: :class:`ACL.Entity`
:returns: A new Entity or a refernece to an existing identical entity.
"""
entity = ACL.Entity(type=type, identifier=identifier)
if self.has_entity(entity):
entity = self.get_entity(entity)
else:
self.add_entity(entity)
return entity
def user(self, identifier):
"""Factory method for a user Entity.
:type identifier: string
:param identifier: An id or e-mail for this particular user.
:rtype: :class:`ACL.Entity`
:returns: An Entity corresponding to this user.
"""
return self.entity('user', identifier=identifier)
def group(self, identifier):
"""Factory method for a group Entity.
:type identifier: string
:param identifier: An id or e-mail for this particular group.
:rtype: :class:`ACL.Entity`
:returns: An Entity corresponding to this group.
"""
return self.entity('group', identifier=identifier)
def domain(self, domain):
"""Factory method for a domain Entity.
:type domain: string
:param domain: The domain for this entity.
:rtype: :class:`ACL.Entity`
:returns: An entity corresponding to this domain.
"""
return self.entity('domain', identifier=domain)
def all(self):
"""Factory method for an Entity representing all users.
:rtype: :class:`ACL.Entity`
:returns: An entity representing all users.
"""
return self.entity('allUsers')
def all_authenticated(self):
"""Factory method for an Entity representing all authenticated users.
:rtype: :class:`ACL.Entity`
:returns: An entity representing all authenticated users.
"""
return self.entity('allAuthenticatedUsers')
def get_entities(self):
"""Get a list of all Entity objects.
:rtype: list of :class:`ACL.Entity` objects
:returns: A list of all Entity objects.
"""
return self.entities.values()
def save(self):
"""A method to be overridden by subclasses.
:raises: NotImplementedError
"""
raise NotImplementedError
class BucketACL(ACL):
"""An ACL specifically for a bucket."""
def __init__(self, bucket):
"""
:type bucket: :class:`gcloud.storage.bucket.Bucket`
:param bucket: The bucket to which this ACL relates.
"""
super(BucketACL, self).__init__()
self.bucket = bucket
def save(self):
"""Save this ACL for the current bucket."""
return self.bucket.save_acl(acl=self)
class DefaultObjectACL(BucketACL):
"""A subclass of BucketACL representing the default object ACL for a bucket."""
def save(self):
"""Save this ACL as the default object ACL for the current bucket."""
return self.bucket.save_default_object_acl(acl=self)
class ObjectACL(ACL):
"""An ACL specifically for a key."""
def __init__(self, key):
"""
:type key: :class:`gcloud.storage.key.Key`
:param key: The key that this ACL corresponds to.
"""
super(ObjectACL, self).__init__()
self.key = key
def save(self):
"""Save this ACL for the current key."""
return self.key.save_acl(acl=self)