-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccess_control.py
executable file
·166 lines (125 loc) · 4.6 KB
/
access_control.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Minor modifications from DataONE CLI code to reduce dependencies
#
# Modifications by David Koop, 2012
# This work was created by participants in the DataONE project, and is
# jointly copyrighted by participating institutions in DataONE. For
# more information on DataONE, see our web site at http://dataone.org.
#
# Copyright ${year}
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''
:mod:`access_control`
=====================
:Synopsis: Create and manipulate access control objects.
:Created: 2011-11-20
:Author: DataONE (Dahl)
'''
# Stdlib.
import sys
# D1.
try:
import d1_common.const
import d1_common.types.generated.dataoneTypes as dataoneTypes
except ImportError as e:
sys.stderr.write('Import error: {0}\n'.format(str(e)))
sys.stderr.write('Try: easy_install DataONE_Common\n')
raise
class access_control():
def __init__(self):
self.allow = {}
self.public = True
def __str__(self):
return self._pretty_format()
def _get_valid_permissions(self):
''' List of permissions, in increasing order. '''
return ('read', 'write', 'changePermission')
def _clear(self):
self.allow.clear()
self.public = False
def _list_to_pyxb(self):
if not self.allow:
return None
access_policy = dataoneTypes.accessPolicy()
for subject in sorted(self.allow.keys()):
access_rule = dataoneTypes.AccessRule()
access_rule.subject.append(subject)
permission = dataoneTypes.Permission(self.allow[subject])
access_rule.permission.append(permission)
access_policy.append(access_rule)
return access_policy
def _add_public_subject(self, access_policy):
if access_policy is None:
access_policy = dataoneTypes.accessPolicy()
access_rule = dataoneTypes.AccessRule()
access_rule.subject.append(d1_common.const.SUBJECT_PUBLIC)
permission = dataoneTypes.Permission('read')
access_rule.permission.append(permission)
access_policy.append(access_rule)
return access_policy
def _add_allowed_subject(self, subject, permission):
self.allow[subject] = permission
def _pretty_format(self):
lines = []
format_str = ' {0: <30s}{1}'
permissions = {'read':[], 'write':[], 'changePermission':[], 'execute':[], 'replicate':[]}
if self.public:
permissions.get('read').append('public')
for subject in sorted(self.allow.keys()):
perm_list = permissions.get(self.allow[subject])
try:
if perm_list is not None:
perm_list.append(subject)
except KeyError:
print_error('Unable to find permission: %s' % self.allow[subject])
for perm, perm_list in permissions.items():
if len(perm_list) > 0:
lines.append(format_str.format(perm, '"' + '", "'.join(perm_list)) +'"')
return 'access:\n' + '\n'.join(lines)
# ============================================================================
def to_pyxb(self):
access_policy = self._list_to_pyxb()
if self.public:
access_policy = self._add_public_subject(access_policy)
return access_policy
def to_xml(self):
return self.to_pyxb().toxml()
def from_xml(self, xml):
access_policy = dataoneTypes.CreateFromDocument(xml)
for access_rule in access_policy.allow:
subject = access_rule.subject[0].value()
permission = access_rule.permission[0]
self._add_allowed_subject(subject, permission)
def clear(self):
self._clear()
def add_allowed_subject(self, subject, permission):
if permission is None:
permission = 'read'
if permission not in self._get_valid_permissions():
msg = 'Invalid permission: {0}. Must be one of: {1}'\
.format(permission, ', '.join(self._get_valid_permissions()))
raise Exception(msg)
self._add_allowed_subject(subject, permission)
def remove_allowed_subject(self, subject):
try:
del self.allow[subject]
except KeyError:
raise Exception('Subject not in access control list: {0}'\
.format(subject))
def allow_public(self, allow):
self.public = allow
def remove_all_allowed_subjects(self):
self.clear()
self.allow_public(False)