forked from elastic/connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatlassian.py
227 lines (179 loc) · 7.61 KB
/
atlassian.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
#
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License 2.0;
# you may not use this file except in compliance with the Elastic License 2.0.
#
import fastjsonschema
from fastjsonschema import JsonSchemaValueException
from connectors.access_control import es_access_control_query, prefix_identity
from connectors.filtering.validation import (
AdvancedRulesValidator,
SyncRuleValidationResult,
)
from connectors.utils import RetryStrategy, iso_utc, retryable
RETRIES = 3
RETRY_INTERVAL = 2
CLOUD_USER_BATCH = 50
NON_CLOUD_USER_BATCH = 1000
class AtlassianAdvancedRulesValidator(AdvancedRulesValidator):
QUERY_OBJECT_SCHEMA_DEFINITION = {
"type": "object",
"properties": {
"query": {"type": "string", "minLength": 1},
},
"required": ["query"],
"additionalProperties": False,
}
SCHEMA_DEFINITION = {"type": "array", "items": QUERY_OBJECT_SCHEMA_DEFINITION}
SCHEMA = fastjsonschema.compile(definition=SCHEMA_DEFINITION)
def __init__(self, source):
self.source = source
async def validate(self, advanced_rules):
if len(advanced_rules) == 0:
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
return await self._remote_validation(advanced_rules)
@retryable(
retries=RETRIES,
interval=RETRY_INTERVAL,
strategy=RetryStrategy.EXPONENTIAL_BACKOFF,
)
async def _remote_validation(self, advanced_rules):
try:
AtlassianAdvancedRulesValidator.SCHEMA(advanced_rules)
except JsonSchemaValueException as e:
return SyncRuleValidationResult(
rule_id=SyncRuleValidationResult.ADVANCED_RULES,
is_valid=False,
validation_message=e.message,
)
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
def prefix_account_id(account_id):
return prefix_identity("account_id", account_id)
def prefix_group_id(group_id):
return prefix_identity("group_id", group_id)
def prefix_role_key(role_key):
return prefix_identity("role_key", role_key)
def prefix_account_name(account_name):
return prefix_identity("name", account_name.replace(" ", "-"))
def prefix_account_email(email):
return prefix_identity("email_address", email)
def prefix_account_locale(locale):
return prefix_identity("locale", locale)
def prefix_user(user):
if not user:
return
return prefix_identity("user", user)
def prefix_group(group):
return prefix_identity("group", group)
class AtlassianAccessControl:
def __init__(self, source, client):
self.source = source
self.client = client
def access_control_query(self, access_control):
return es_access_control_query(access_control)
async def fetch_all_users(self, url):
from connectors.sources.confluence import CONFLUENCE_CLOUD
from connectors.sources.jira import JIRA_CLOUD
start_at = 0
while True:
url_ = (
f"{url}?startAt={start_at}"
if self.source.configuration["data_source"]
in [JIRA_CLOUD, CONFLUENCE_CLOUD]
else url.format(start_at=start_at, max_results=NON_CLOUD_USER_BATCH)
)
async for users in self.client.api_call(url=url_):
response = await users.json()
if len(response) == 0:
return
yield response
if self.source.configuration["data_source"] not in [
JIRA_CLOUD,
CONFLUENCE_CLOUD,
]:
start_at += NON_CLOUD_USER_BATCH
else:
start_at += CLOUD_USER_BATCH
async def fetch_user(self, url):
async for user in self.client.api_call(url=url):
yield await user.json()
async def user_access_control_doc(self, user):
"""Generate a user access control document.
This method generates a user access control document based on the provided user information.
The document includes the user's account ID, prefixed account ID, prefixed account name,
a set of prefixed group IDs, and a set of prefixed role keys. The access control list is
then constructed using these values.
Args:
user (dict): A dictionary containing user information, such as account ID, display name, groups, and application roles.
Returns:
dict: A user access control document with the following structure:
{
"_id": <account_id>,
"identity": {
"account_id": <prefixed_account_id>,
"display_name": <_prefixed_account_name>,
"locale": <prefix_account_locale>,
"emailAddress": prefix_account_email,
},
"created_at": <iso_utc_timestamp>,
ACCESS_CONTROL: [<prefixed_account_id>, <prefixed_group_ids>, <prefixed_role_keys>]
}
"""
account_id = user.get("accountId") or user.get("name")
account_name = user.get("displayName")
email = user.get("emailAddress")
locale = user.get("locale")
prefixed_account_email = prefix_account_email(email=email)
prefixed_account_id = prefix_account_id(account_id=account_id)
prefixed_account_name = prefix_account_name(account_name=account_name)
prefixed_account_locale = prefix_account_locale(locale=locale)
prefixed_group_ids = {
prefix_group_id(group_id=group.get("groupId", ""))
for group in user.get("groups", {}).get("items", [])
}
prefixed_role_keys = {
prefix_role_key(role_key=role.get("key", ""))
for role in user.get("applicationRoles", {}).get("items", [])
}
user_document = {
"_id": account_id,
"identity": {
"account_id": prefixed_account_id,
"display_name": prefixed_account_name,
"email_address": prefixed_account_email,
"locale": prefixed_account_locale,
},
"created_at": iso_utc(),
}
access_control = (
[prefixed_account_id] + list(prefixed_group_ids) + list(prefixed_role_keys)
)
return user_document | self.access_control_query(access_control=access_control)
def is_active_atlassian_user(self, user_info):
from connectors.sources.confluence import CONFLUENCE_CLOUD
from connectors.sources.jira import JIRA_CLOUD
user_url = user_info.get("self")
user_name = user_info.get("displayName", "user")
if not user_url:
self.source._logger.debug(
f"Skipping {user_name} as profile URL is not present."
)
return False
if not user_info.get("active"):
self.source._logger.debug(
f"Skipping {user_name} as it is inactive or deleted."
)
return False
if (
self.source.configuration["data_source"] in [JIRA_CLOUD, CONFLUENCE_CLOUD]
and user_info.get("accountType") != "atlassian"
):
self.source._logger.debug(
f"Skipping {user_name} because the account type is {user_info.get('accountType')}. Only 'atlassian' account type is supported."
)
return False
return True