-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathprofile.py
241 lines (182 loc) · 6.66 KB
/
profile.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
from linode_api4.errors import UnexpectedResponseError
from linode_api4.objects import Base, Property
class AuthorizedApp(Base):
"""
An application with authorized access to an account.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-profile-app
"""
api_endpoint = "/profile/apps/{id}"
properties = {
"id": Property(identifier=True),
"scopes": Property(),
"label": Property(),
"created": Property(is_datetime=True),
"expiry": Property(is_datetime=True),
"thumbnail_url": Property(),
"website": Property(),
}
class PersonalAccessToken(Base):
"""
A Person Access Token associated with a Profile.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-personal-access-token
"""
api_endpoint = "/profile/tokens/{id}"
properties = {
"id": Property(identifier=True),
"scopes": Property(),
"label": Property(mutable=True),
"created": Property(is_datetime=True),
"token": Property(),
"expiry": Property(is_datetime=True),
}
class WhitelistEntry(Base):
"""
DEPRECATED: Limited to customers with a feature tag
"""
api_endpoint = "/profile/whitelist/{id}"
properties = {
"id": Property(identifier=True),
"address": Property(),
"netmask": Property(),
"note": Property(),
}
class Profile(Base):
"""
A Profile containing information about the current User.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-profile
"""
api_endpoint = "/profile"
id_attribute = "username"
properties = {
"username": Property(identifier=True),
"uid": Property(),
"email": Property(mutable=True),
"timezone": Property(mutable=True),
"email_notifications": Property(mutable=True),
"referrals": Property(),
"ip_whitelist_enabled": Property(mutable=True),
"lish_auth_method": Property(mutable=True),
"authorized_keys": Property(mutable=True),
"two_factor_auth": Property(),
"restricted": Property(),
"authentication_type": Property(),
"authorized_keys": Property(),
"verified_phone_number": Property(),
}
def enable_tfa(self):
"""
Enables TFA for the token's user. This requies a follow-up request
to confirm TFA. Returns the TFA secret that needs to be confirmed.
API Documentation: https://techdocs.akamai.com/linode-api/reference/post-tfa-enable
:returns: The TFA secret
:rtype: str
"""
result = self._client.post("/profile/tfa-enable")
return result["secret"]
def confirm_tfa(self, code):
"""
Confirms TFA for an account. Needs a TFA code generated by enable_tfa
API Documentation: https://techdocs.akamai.com/linode-api/reference/post-tfa-confirm
:param code: The Two Factor code you generated with your Two Factor secret.
These codes are time-based, so be sure it is current.
:type code: str
:returns: Returns true if operation was successful
:rtype: bool
"""
self._client.post(
"/profile/tfa-enable-confirm", data={"tfa_code": code}
)
return True
def disable_tfa(self):
"""
Turns off TFA for this user's account.
API Documentation: https://techdocs.akamai.com/linode-api/reference/post-tfa-disable
:returns: Returns true if operation was successful
:rtype: bool
"""
self._client.post("/profile/tfa-disable")
return True
@property
def grants(self):
"""
Returns grants for the current user
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-profile-grants
:returns: The grants for the current user
:rtype: UserGrants
"""
from linode_api4.objects.account import ( # pylint: disable-all
UserGrants,
)
resp = self._client.get(
"/profile/grants"
) # use special endpoint for restricted users
grants = None
if resp is not None:
# if resp is None, we're unrestricted and do not have grants
grants = UserGrants(self._client, self.username, resp)
return grants
@property
def whitelist(self):
"""
Returns the user's whitelist entries, if whitelist is enabled
DEPRECATED: Limited to customers with a feature tag
"""
return self._client._get_and_filter(WhitelistEntry)
def add_whitelist_entry(self, address, netmask, note=None):
"""
Adds a new entry to this user's IP whitelist, if enabled
DEPRECATED: Limited to customers with a feature tag
"""
result = self._client.post(
"{}/whitelist".format(Profile.api_endpoint),
data={
"address": address,
"netmask": netmask,
"note": note,
},
)
if not "id" in result:
raise UnexpectedResponseError(
"Unexpected response creating whitelist entry!"
)
return WhitelistEntry(result["id"], self._client, json=result)
class SSHKey(Base):
"""
An SSH Public Key uploaded to your profile for use in Linode Instance deployments.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-ssh-key
"""
api_endpoint = "/profile/sshkeys/{id}"
properties = {
"id": Property(identifier=True),
"label": Property(mutable=True),
"ssh_key": Property(),
"created": Property(is_datetime=True),
}
class TrustedDevice(Base):
"""
A Trusted Device for a User.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-trusted-device
"""
api_endpoint = "/profile/devices/{id}"
properties = {
"id": Property(identifier=True),
"created": Property(is_datetime=True),
"expiry": Property(is_datetime=True),
"last_authenticated": Property(is_datetime=True),
"last_remote_addr": Property(),
"user_agent": Property(),
}
class ProfileLogin(Base):
"""
A Login object displaying information about a successful account login from this user.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-profile-login
"""
api_endpoint = "profile/logins/{id}"
properties = {
"id": Property(identifier=True),
"datetime": Property(is_datetime=True),
"ip": Property(),
"restricted": Property(),
"status": Property(),
"username": Property(),
}