-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
api.py
424 lines (389 loc) · 15.1 KB
/
api.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
import concurrent.futures
import logging
from typing import Any, List, Mapping, Optional, Tuple
import requests # type: ignore[import]
from airbyte_cdk.models import ConfiguredAirbyteCatalog
from requests import adapters as request_adapters
from requests.exceptions import HTTPError, RequestException # type: ignore[import]
from .exceptions import TypeSalesforceException
from .rate_limiting import default_backoff_handler
from .utils import filter_streams_by_criteria
STRING_TYPES = [
"byte",
"combobox",
"complexvalue",
"datacategorygroupreference",
"email",
"encryptedstring",
"id",
"json",
"masterrecord",
"multipicklist",
"phone",
"picklist",
"reference",
"string",
"textarea",
"time",
"url",
]
NUMBER_TYPES = ["currency", "double", "long", "percent"]
DATE_TYPES = ["date", "datetime"]
LOOSE_TYPES = [
"anyType",
# A calculated field's type can be any of the supported
# formula data types (see https://developer.salesforce.com/docs/#i1435527)
"calculated",
]
# The following objects have certain WHERE clause restrictions so we exclude them.
QUERY_RESTRICTED_SALESFORCE_OBJECTS = [
"Announcement",
"AppTabMember",
"CollaborationGroupRecord",
"ColorDefinition",
"ContentDocumentLink",
"ContentFolderItem",
"ContentFolderMember",
"DataStatistics",
"DatacloudDandBCompany",
"EntityParticle",
"FieldDefinition",
"FieldHistoryArchive",
"FlexQueueItem",
"FlowVariableView",
"FlowVersionView",
"IconDefinition",
"IdeaComment",
"NetworkUserHistoryRecent",
"OwnerChangeOptionInfo",
"PicklistValueInfo",
"PlatformAction",
"RelationshipDomain",
"RelationshipInfo",
"SearchLayout",
"SiteDetail",
"UserEntityAccess",
"UserFieldAccess",
"Vote",
]
# The following objects are not supported by the query method being used.
QUERY_INCOMPATIBLE_SALESFORCE_OBJECTS = [
"AIPredictionEvent",
"ActivityHistory",
"AggregateResult",
"ApiAnomalyEvent",
"ApiEventStream",
"AssetTokenEvent",
"AsyncOperationEvent",
"AsyncOperationStatus",
"AttachedContentDocument",
"AttachedContentNote",
"BatchApexErrorEvent",
"BulkApiResultEvent",
"CombinedAttachment",
"ConcurLongRunApexErrEvent",
"ContentBody",
"CredentialStuffingEvent",
"DataType",
"DatacloudAddress",
"EmailStatus",
"FeedLike",
"FeedSignal",
"FeedTrackedChange",
"FlowExecutionErrorEvent",
"FolderedContentDocument",
"LightningUriEventStream",
"ListViewChartInstance",
"ListViewEventStream",
"LoginAsEventStream",
"LoginEventStream",
"LogoutEventStream",
"LookedUpFromActivity",
"Name",
"NoteAndAttachment",
"OpenActivity",
"OrgLifecycleNotification",
"OutgoingEmail",
"OutgoingEmailRelation",
"OwnedContentDocument",
"PlatformStatusAlertEvent",
"ProcessExceptionEvent",
"ProcessInstanceHistory",
"QuoteTemplateRichTextData",
"RemoteKeyCalloutEvent",
"ReportAnomalyEvent",
"ReportEventStream",
"SessionHijackingEvent",
"UriEventStream",
"UserRecordAccess",
]
# The following objects are not supported by the Bulk API. Listed objects are version specific.
UNSUPPORTED_BULK_API_SALESFORCE_OBJECTS = [
"AcceptedEventRelation",
"AssetTokenEvent",
"Attachment",
"AttachedContentNote",
"CaseStatus",
"ContractStatus",
"DeclinedEventRelation",
"EventWhoRelation",
"FieldSecurityClassification",
"KnowledgeArticle",
"KnowledgeArticleVersion",
"KnowledgeArticleVersionHistory",
"KnowledgeArticleViewStat",
"KnowledgeArticleVoteStat",
"OrderStatus",
"PartnerRole",
"QuoteTemplateRichTextData",
"RecentlyViewed",
"ServiceAppointmentStatus",
"ShiftStatus",
"SolutionStatus",
"TaskPriority",
"TaskStatus",
"TaskWhoRelation",
"UndecidedEventRelation",
"WorkOrderLineItemStatus",
"WorkOrderStatus",
"UserRecordAccess",
"OwnedContentDocument",
"OpenActivity",
"NoteAndAttachment",
"Name",
"LookedUpFromActivity",
"FolderedContentDocument",
"ContractStatus",
"ContentFolderItem",
"CombinedAttachment",
"CaseTeamTemplateRecord",
"CaseTeamTemplateMember",
"CaseTeamTemplate",
"CaseTeamRole",
"CaseTeamMember",
"AttachedContentDocument",
"AggregateResult",
"ChannelProgramLevelShare",
"AccountBrandShare",
"AccountFeed",
"AssetFeed",
]
UNSUPPORTED_FILTERING_STREAMS = [
"ApiEvent",
"BulkApiResultEventStore",
"EmbeddedServiceDetail",
"EmbeddedServiceLabel",
"FormulaFunction",
"FormulaFunctionAllowedType",
"FormulaFunctionCategory",
"IdentityProviderEventStore",
"IdentityVerificationEvent",
"LightningUriEvent",
"ListViewEvent",
"LoginAsEvent",
"LoginEvent",
"LogoutEvent",
"Publisher",
"RecordActionHistory",
"ReportEvent",
"TabDefinition",
"UriEvent",
]
class Salesforce:
logger = logging.getLogger("airbyte")
version = "v52.0"
parallel_tasks_size = 100
# https://developer.salesforce.com/docs/atlas.en-us.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_api.htm
# Request Size Limits
REQUEST_SIZE_LIMITS = 16_384
def __init__(
self,
refresh_token: str = None,
token: str = None,
client_id: str = None,
client_secret: str = None,
is_sandbox: bool = None,
start_date: str = None,
**kwargs: Any,
) -> None:
self.refresh_token = refresh_token
self.token = token
self.client_id = client_id
self.client_secret = client_secret
self.access_token = None
self.instance_url = ""
self.session = requests.Session()
# Change the connection pool size. Default value is not enough for parallel tasks
adapter = request_adapters.HTTPAdapter(pool_connections=self.parallel_tasks_size, pool_maxsize=self.parallel_tasks_size)
self.session.mount("https://", adapter)
self.is_sandbox = is_sandbox in [True, "true"]
if self.is_sandbox:
self.logger.info("using SANDBOX of Salesforce")
self.start_date = start_date
def _get_standard_headers(self) -> Mapping[str, str]:
return {"Authorization": "Bearer {}".format(self.access_token)}
def get_streams_black_list(self) -> List[str]:
return QUERY_RESTRICTED_SALESFORCE_OBJECTS + QUERY_INCOMPATIBLE_SALESFORCE_OBJECTS
def filter_streams(self, stream_name: str) -> bool:
# REST and BULK API do not support all entities that end with `ChangeEvent`.
if stream_name.endswith("ChangeEvent") or stream_name in self.get_streams_black_list():
return False
return True
def get_validated_streams(self, config: Mapping[str, Any], catalog: ConfiguredAirbyteCatalog = None) -> Mapping[str, Any]:
"""Selects all validated streams with additional filtering:
1) skip all sobjects with negative value of the flag "queryable"
2) user can set search criterias of necessary streams
3) selection by catalog settings
"""
stream_objects = {}
for stream_object in self.describe()["sobjects"]:
if stream_object["queryable"]:
stream_objects[stream_object.pop("name")] = stream_object
else:
self.logger.warn(f"Stream {stream_object['name']} is not queryable and will be ignored.")
if catalog:
return {
configured_stream.stream.name: stream_objects[configured_stream.stream.name]
for configured_stream in catalog.streams
if configured_stream.stream.name in stream_objects
}
stream_names = list(stream_objects.keys())
if config.get("streams_criteria"):
filtered_stream_list = []
for stream_criteria in config["streams_criteria"]:
filtered_stream_list += filter_streams_by_criteria(
streams_list=stream_names, search_word=stream_criteria["value"], search_criteria=stream_criteria["criteria"]
)
stream_names = list(set(filtered_stream_list))
validated_streams = [stream_name for stream_name in stream_names if self.filter_streams(stream_name)]
return {stream_name: sobject_options for stream_name, sobject_options in stream_objects.items() if stream_name in validated_streams}
@default_backoff_handler(max_tries=5, factor=5)
def _make_request(
self, http_method: str, url: str, headers: dict = None, body: dict = None, stream: bool = False, params: dict = None
) -> requests.models.Response:
try:
if http_method == "GET":
resp = self.session.get(url, headers=headers, stream=stream, params=params)
elif http_method == "POST":
resp = self.session.post(url, headers=headers, data=body)
resp.raise_for_status()
except HTTPError as err:
self.logger.warn(f"http error body: {err.response.text}")
raise
return resp
def login(self):
login_url = f"https://{'test' if self.is_sandbox else 'login'}.salesforce.com/services/oauth2/token"
login_body = {
"grant_type": "refresh_token",
"client_id": self.client_id,
"client_secret": self.client_secret,
"refresh_token": self.refresh_token,
}
resp = self._make_request("POST", login_url, body=login_body, headers={"Content-Type": "application/x-www-form-urlencoded"})
auth = resp.json()
self.access_token = auth["access_token"]
self.instance_url = auth["instance_url"]
def describe(self, sobject: str = None, sobject_options: Mapping[str, Any] = None) -> Mapping[str, Any]:
"""Describes all objects or a specific object"""
headers = self._get_standard_headers()
endpoint = "sobjects" if not sobject else f"sobjects/{sobject}/describe"
url = f"{self.instance_url}/services/data/{self.version}/{endpoint}"
resp = self._make_request("GET", url, headers=headers)
if resp.status_code == 404 and sobject:
self.logger.error(f"not found a description for the sobject '{sobject}'. Sobject options: {sobject_options}")
resp_json: Mapping[str, Any] = resp.json()
return resp_json
def generate_schema(self, stream_name: str = None, stream_options: Mapping[str, Any] = None) -> Mapping[str, Any]:
response = self.describe(stream_name, stream_options)
schema = {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": True, "properties": {}}
for field in response["fields"]:
schema["properties"][field["name"]] = self.field_to_property_schema(field) # type: ignore[index]
return schema
def generate_schemas(self, stream_objects: Mapping[str, Any]) -> Mapping[str, Any]:
def load_schema(name: str, stream_options: Mapping[str, Any]) -> Tuple[str, Optional[Mapping[str, Any]], Optional[str]]:
try:
result = self.generate_schema(stream_name=name, stream_options=stream_options)
except RequestException as e:
return name, None, str(e)
return name, result, None
stream_names = list(stream_objects.keys())
# try to split all requests by chunks
stream_schemas = {}
for i in range(0, len(stream_names), self.parallel_tasks_size):
chunk_stream_names = stream_names[i : i + self.parallel_tasks_size]
with concurrent.futures.ThreadPoolExecutor(max_workers=len(chunk_stream_names)) as executor:
for stream_name, schema, err in executor.map(
lambda args: load_schema(*args), [(stream_name, stream_objects[stream_name]) for stream_name in chunk_stream_names]
):
if err:
self.logger.error(f"Loading error of the {stream_name} schema: {err}")
continue
stream_schemas[stream_name] = schema
return stream_schemas
@staticmethod
def get_pk_and_replication_key(json_schema: Mapping[str, Any]) -> Tuple[Optional[str], Optional[str]]:
fields_list = json_schema.get("properties", {}).keys()
pk = "Id" if "Id" in fields_list else None
replication_key = None
if "SystemModstamp" in fields_list:
replication_key = "SystemModstamp"
elif "LastModifiedDate" in fields_list:
replication_key = "LastModifiedDate"
elif "CreatedDate" in fields_list:
replication_key = "CreatedDate"
elif "LoginTime" in fields_list:
replication_key = "LoginTime"
return pk, replication_key
@staticmethod
def field_to_property_schema(field_params: Mapping[str, Any]) -> Mapping[str, Any]:
sf_type = field_params["type"]
property_schema = {}
if sf_type in STRING_TYPES:
property_schema["type"] = ["string", "null"]
elif sf_type in DATE_TYPES:
property_schema = {
"type": ["string", "null"],
"format": "date-time" if sf_type == "datetime" else "date", # type: ignore[dict-item]
}
elif sf_type in NUMBER_TYPES:
property_schema["type"] = ["number", "null"]
elif sf_type == "address":
property_schema = {
"type": ["object", "null"],
"properties": { # type: ignore[dict-item]
"street": {"type": ["null", "string"]},
"state": {"type": ["null", "string"]},
"postalCode": {"type": ["null", "string"]},
"city": {"type": ["null", "string"]},
"country": {"type": ["null", "string"]},
"longitude": {"type": ["null", "number"]},
"latitude": {"type": ["null", "number"]},
"geocodeAccuracy": {"type": ["null", "string"]},
},
}
elif sf_type == "base64":
property_schema = {"type": ["string", "null"], "format": "base64"} # type: ignore[dict-item]
elif sf_type == "int":
property_schema["type"] = ["integer", "null"]
elif sf_type == "boolean":
property_schema["type"] = ["boolean", "null"]
elif sf_type in LOOSE_TYPES:
"""
LOOSE_TYPES can return data of completely different types (more than 99% of them are `strings`),
and in order to avoid conflicts in schemas and destinations, we cast this data to the `string` type.
"""
property_schema["type"] = ["string", "null"]
elif sf_type == "location":
property_schema = {
"type": ["object", "null"],
"properties": { # type: ignore[dict-item]
"longitude": {"type": ["null", "number"]},
"latitude": {"type": ["null", "number"]},
},
}
else:
raise TypeSalesforceException("Found unsupported type: {}".format(sf_type))
return property_schema