-
Notifications
You must be signed in to change notification settings - Fork 6
/
salesforce.go
602 lines (508 loc) · 15.8 KB
/
salesforce.go
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
package salesforce
import (
"encoding/json"
"errors"
"io"
"net/http"
"reflect"
"strconv"
"strings"
"github.com/forcedotcom/go-soql"
)
type Salesforce struct {
auth *authentication
}
type SalesforceErrorMessage struct {
Message string `json:"message"`
StatusCode string `json:"statusCode"`
Fields []string `json:"fields"`
ErrorCode string `json:"errorCode"`
}
type SalesforceResult struct {
Id string `json:"id"`
Errors []SalesforceErrorMessage `json:"errors"`
Success bool `json:"success"`
}
type SalesforceResults struct {
Results []SalesforceResult
HasSalesforceErrors bool
}
type requestPayload struct {
method string
uri string
content string
body string
retry bool
}
const (
apiVersion = "v60.0"
jsonType = "application/json"
csvType = "text/csv"
batchSizeMax = 200
bulkBatchSizeMax = 10000
invalidSessionIdError = "INVALID_SESSION_ID"
)
func doRequest(auth *authentication, payload requestPayload) (*http.Response, error) {
var reader *strings.Reader
var req *http.Request
var err error
endpoint := auth.InstanceUrl + "/services/data/" + apiVersion + payload.uri
if payload.body != "" {
reader = strings.NewReader(payload.body)
req, err = http.NewRequest(payload.method, endpoint, reader)
} else {
req, err = http.NewRequest(payload.method, endpoint, nil)
}
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", "go-salesforce")
req.Header.Set("Content-Type", payload.content)
req.Header.Set("Accept", payload.content)
req.Header.Set("Authorization", "Bearer "+auth.AccessToken)
resp, err := http.DefaultClient.Do(req)
if err != nil {
return resp, err
}
if resp.StatusCode < 200 || resp.StatusCode > 300 {
resp, err = processSalesforceError(*resp, auth, payload)
}
return resp, err
}
func validateOfTypeSlice(data any) error {
t := reflect.TypeOf(data).Kind().String()
if t != "slice" {
return errors.New("expected a slice, got: " + t)
}
return nil
}
func validateOfTypeStructOrMap(data any) error {
t := reflect.TypeOf(data).Kind().String()
if t != "struct" && t != "map" {
return errors.New("expected a struct or map type, got: " + t)
}
return nil
}
func validateOfTypeStruct(data any) error {
t := reflect.TypeOf(data).Kind().String()
if t != "struct" {
return errors.New("expected a go-soql struct, got: " + t)
}
return nil
}
func validateBatchSizeWithinRange(batchSize int, max int) error {
if batchSize < 1 || batchSize > max {
return errors.New("batch size = " + strconv.Itoa(batchSize) + " but must be 1 <= batchSize <= " + strconv.Itoa(max))
}
return nil
}
func validateGoSoql(sf Salesforce, record any) error {
authErr := validateAuth(sf)
if authErr != nil {
return authErr
}
typErr := validateOfTypeStruct(record)
if typErr != nil {
return typErr
}
return nil
}
func validateSingles(sf Salesforce, record any) error {
authErr := validateAuth(sf)
if authErr != nil {
return authErr
}
typErr := validateOfTypeStructOrMap(record)
if typErr != nil {
return typErr
}
return nil
}
func validateCollections(sf Salesforce, records any, batchSize int) error {
authErr := validateAuth(sf)
if authErr != nil {
return authErr
}
typErr := validateOfTypeSlice(records)
if typErr != nil {
return typErr
}
batchSizeErr := validateBatchSizeWithinRange(batchSize, batchSizeMax)
if batchSizeErr != nil {
return batchSizeErr
}
return nil
}
func validateBulk(sf Salesforce, records any, batchSize int, isFile bool) error {
authErr := validateAuth(sf)
if authErr != nil {
return authErr
}
if !isFile {
typErr := validateOfTypeSlice(records)
if typErr != nil {
return typErr
}
}
batchSizeErr := validateBatchSizeWithinRange(batchSize, bulkBatchSizeMax)
if batchSizeErr != nil {
return batchSizeErr
}
return nil
}
func processSalesforceError(resp http.Response, auth *authentication, payload requestPayload) (*http.Response, error) {
responseData, err := io.ReadAll(resp.Body)
if err != nil {
return &resp, err
}
var sfErrors []SalesforceErrorMessage
err = json.Unmarshal(responseData, &sfErrors)
if err != nil {
return &resp, err
}
for _, sfError := range sfErrors {
if sfError.ErrorCode == invalidSessionIdError && !payload.retry { // only attempt to refresh the session once
err = refreshSession(auth)
if err != nil {
return &resp, err
}
newResp, err := doRequest(auth, requestPayload{payload.method, payload.uri, payload.content, payload.body, true})
if err != nil {
return &resp, err
}
return newResp, nil
}
}
return &resp, errors.New(string(responseData))
}
func Init(creds Creds) (*Salesforce, error) {
var auth *authentication
var err error
if creds == (Creds{}) {
return nil, errors.New("creds is empty")
}
if creds.Domain != "" && creds.ConsumerKey != "" && creds.ConsumerSecret != "" &&
creds.Username != "" && creds.Password != "" && creds.SecurityToken != "" {
auth, err = usernamePasswordFlow(
creds.Domain,
creds.Username,
creds.Password,
creds.SecurityToken,
creds.ConsumerKey,
creds.ConsumerSecret,
)
} else if creds.Domain != "" && creds.ConsumerKey != "" && creds.ConsumerSecret != "" {
auth, err = clientCredentialsFlow(
creds.Domain,
creds.ConsumerKey,
creds.ConsumerSecret,
)
} else if creds.AccessToken != "" {
auth, err = setAccessToken(
creds.Domain,
creds.AccessToken,
)
} else if creds.Domain != "" && creds.Username != "" &&
creds.ConsumerKey != "" && creds.ConsumerRSAPem != "" {
auth, err = jwtFlow(
creds.Domain,
creds.Username,
creds.ConsumerKey,
creds.ConsumerRSAPem,
JwtExpirationTime,
)
}
if err != nil {
return nil, err
} else if auth == nil || auth.AccessToken == "" {
return nil, errors.New("unknown authentication error")
}
auth.creds = creds
return &Salesforce{auth: auth}, nil
}
func (sf *Salesforce) DoRequest(method string, uri string, body []byte) (*http.Response, error) {
authErr := validateAuth(*sf)
if authErr != nil {
return nil, authErr
}
resp, err := doRequest(sf.auth, requestPayload{
method: method,
uri: uri,
content: jsonType,
body: string(body),
})
if err != nil {
return nil, err
}
return resp, nil
}
func (sf *Salesforce) Query(query string, sObject any) error {
authErr := validateAuth(*sf)
if authErr != nil {
return authErr
}
queryErr := performQuery(sf.auth, query, sObject)
if queryErr != nil {
return queryErr
}
return nil
}
func (sf *Salesforce) QueryStruct(soqlStruct any, sObject any) error {
validationErr := validateGoSoql(*sf, soqlStruct)
if validationErr != nil {
return validationErr
}
soqlQuery, err := soql.Marshal(soqlStruct)
if err != nil {
return err
}
queryErr := performQuery(sf.auth, soqlQuery, sObject)
if queryErr != nil {
return queryErr
}
return nil
}
func (sf *Salesforce) InsertOne(sObjectName string, record any) (SalesforceResult, error) {
validationErr := validateSingles(*sf, record)
if validationErr != nil {
return SalesforceResult{}, validationErr
}
return doInsertOne(sf.auth, sObjectName, record)
}
func (sf *Salesforce) UpdateOne(sObjectName string, record any) error {
validationErr := validateSingles(*sf, record)
if validationErr != nil {
return validationErr
}
return doUpdateOne(sf.auth, sObjectName, record)
}
func (sf *Salesforce) UpsertOne(sObjectName string, externalIdFieldName string, record any) (SalesforceResult, error) {
validationErr := validateSingles(*sf, record)
if validationErr != nil {
return SalesforceResult{}, validationErr
}
return doUpsertOne(sf.auth, sObjectName, externalIdFieldName, record)
}
func (sf *Salesforce) DeleteOne(sObjectName string, record any) error {
validationErr := validateSingles(*sf, record)
if validationErr != nil {
return validationErr
}
return doDeleteOne(sf.auth, sObjectName, record)
}
func (sf *Salesforce) InsertCollection(sObjectName string, records any, batchSize int) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doInsertCollection(sf.auth, sObjectName, records, batchSize)
}
func (sf *Salesforce) UpdateCollection(sObjectName string, records any, batchSize int) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doUpdateCollection(sf.auth, sObjectName, records, batchSize)
}
func (sf *Salesforce) UpsertCollection(sObjectName string, externalIdFieldName string, records any, batchSize int) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doUpsertCollection(sf.auth, sObjectName, externalIdFieldName, records, batchSize)
}
func (sf *Salesforce) DeleteCollection(sObjectName string, records any, batchSize int) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doDeleteCollection(sf.auth, sObjectName, records, batchSize)
}
func (sf *Salesforce) InsertComposite(sObjectName string, records any, batchSize int, allOrNone bool) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doInsertComposite(sf.auth, sObjectName, records, allOrNone, batchSize)
}
func (sf *Salesforce) UpdateComposite(sObjectName string, records any, batchSize int, allOrNone bool) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doUpdateComposite(sf.auth, sObjectName, records, allOrNone, batchSize)
}
func (sf *Salesforce) UpsertComposite(sObjectName string, externalIdFieldName string, records any, batchSize int, allOrNone bool) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doUpsertComposite(sf.auth, sObjectName, externalIdFieldName, records, allOrNone, batchSize)
}
func (sf *Salesforce) DeleteComposite(sObjectName string, records any, batchSize int, allOrNone bool) (SalesforceResults, error) {
validationErr := validateCollections(*sf, records, batchSize)
if validationErr != nil {
return SalesforceResults{}, validationErr
}
return doDeleteComposite(sf.auth, sObjectName, records, allOrNone, batchSize)
}
func (sf *Salesforce) QueryBulkExport(query string, filePath string) error {
authErr := validateAuth(*sf)
if authErr != nil {
return authErr
}
queryErr := doQueryBulk(sf.auth, filePath, query)
if queryErr != nil {
return queryErr
}
return nil
}
func (sf *Salesforce) QueryStructBulkExport(soqlStruct any, filePath string) error {
validationErr := validateGoSoql(*sf, soqlStruct)
if validationErr != nil {
return validationErr
}
soqlQuery, err := soql.Marshal(soqlStruct)
if err != nil {
return err
}
queryErr := doQueryBulk(sf.auth, filePath, soqlQuery)
if queryErr != nil {
return queryErr
}
return nil
}
func (sf *Salesforce) QueryBulkIterator(query string) (IteratorJob, error) {
authErr := validateAuth(*sf)
if authErr != nil {
return nil, authErr
}
queryJobReq := bulkQueryJobCreationRequest{
Operation: queryJobType,
Query: query,
}
body, jsonErr := json.Marshal(queryJobReq)
if jsonErr != nil {
return nil, jsonErr
}
job, jobCreationErr := createBulkJob(sf.auth, queryJobType, body)
if jobCreationErr != nil {
return nil, jobCreationErr
}
if job.Id == "" {
newErr := errors.New("error creating bulk query job")
return nil, newErr
}
return newBulkJobQueryIterator(sf.auth, job.Id)
}
func (sf *Salesforce) InsertBulk(sObjectName string, records any, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, records, batchSize, false)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJob(sf.auth, sObjectName, "", insertOperation, records, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) InsertBulkFile(sObjectName string, filePath string, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, nil, batchSize, true)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJobWithFile(sf.auth, sObjectName, "", insertOperation, filePath, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) UpdateBulk(sObjectName string, records any, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, records, batchSize, false)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJob(sf.auth, sObjectName, "", updateOperation, records, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) UpdateBulkFile(sObjectName string, filePath string, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, nil, batchSize, true)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJobWithFile(sf.auth, sObjectName, "", updateOperation, filePath, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) UpsertBulk(sObjectName string, externalIdFieldName string, records any, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, records, batchSize, false)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJob(sf.auth, sObjectName, externalIdFieldName, upsertOperation, records, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) UpsertBulkFile(sObjectName string, externalIdFieldName string, filePath string, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, nil, batchSize, true)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJobWithFile(sf.auth, sObjectName, externalIdFieldName, upsertOperation, filePath, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) DeleteBulk(sObjectName string, records any, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, records, batchSize, false)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJob(sf.auth, sObjectName, "", deleteOperation, records, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) DeleteBulkFile(sObjectName string, filePath string, batchSize int, waitForResults bool) ([]string, error) {
validationErr := validateBulk(*sf, nil, batchSize, true)
if validationErr != nil {
return []string{}, validationErr
}
jobIds, bulkErr := doBulkJobWithFile(sf.auth, sObjectName, "", deleteOperation, filePath, batchSize, waitForResults)
if bulkErr != nil {
return []string{}, bulkErr
}
return jobIds, nil
}
func (sf *Salesforce) GetJobResults(bulkJobId string) (BulkJobResults, error) {
authErr := validateAuth(*sf)
if authErr != nil {
return BulkJobResults{}, authErr
}
job, err := getJobResults(sf.auth, ingestJobType, bulkJobId)
if err != nil {
return BulkJobResults{}, err
}
if job.State == jobStateJobComplete {
job, err = getJobRecordResults(sf.auth, job)
if err != nil {
return job, err
}
}
return job, nil
}
func (sf *Salesforce) GetAccessToken() string {
if sf.auth == nil {
return ""
}
return sf.auth.AccessToken
}