-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_bulk_methods.go
46 lines (42 loc) · 1.28 KB
/
client_bulk_methods.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
// Methods that handle methods through the Bulk API.
package sfdc
import "fmt"
func (client *Client) SendFeedItem(item *FeedItemOptions) (*BulkJobCompleteResponse, error) {
bulk := client.Bulk()
job := bulk.NewInsertJob("FeedItem")
res, err := bulk.Insert(job, item)
if err != nil {
return nil, err
}
if res.State != "UploadComplete" {
return nil, fmt.Errorf("failed to send job %s; state=%s operation=%s", res.ID, res.State, res.Operation)
}
return res, nil
}
func (client *Client) SendCaseUpdate(id string, data *Case, cf ...map[string]any) (*BulkJobCompleteResponse, error) {
data.ID = id
bulk := client.Bulk()
job := bulk.NewUpsertJob("Case", "Id")
res, err := bulk.Upsert(job, data, cf...)
if err != nil {
return nil, err
}
if res.State != "UploadComplete" {
return nil, fmt.Errorf("failed to send job %s; state=%s operation=%s", res.ID, res.State, res.Operation)
}
return res, nil
}
func (client *Client) SendCloseCase(id string) error {
data := &Case{Status: "Closed"}
data.ID = id
bulk := client.Bulk()
job := bulk.NewUpsertJob("Case", "Id")
res, err := bulk.Upsert(job, data)
if err != nil {
return err
}
if res.State != "UploadComplete" {
return fmt.Errorf("failed to send job %s; state=%s operation=%s", res.ID, res.State, res.Operation)
}
return nil
}