forked from simpleforce/simpleforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sobject.go
376 lines (331 loc) · 10.6 KB
/
sobject.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
package simpleforce
import (
"bytes"
"encoding/json"
"log"
"net/http"
"strings"
)
const (
sobjectClientKey = "__client__" // private attribute added to locate client instance.
sobjectAttributesKey = "attributes" // points to the attributes structure which should be common to all SObjects.
sobjectIDKey = "Id"
)
var (
// When updating existing records, certain fields are read only and needs to be removed before submitted to Salesforce.
// Following list of fields are extracted from INVALID_FIELD_FOR_INSERT_UPDATE error message.
blacklistedUpdateFields = []string{
"LastModifiedDate",
"LastReferencedDate",
"IsClosed",
"ContactPhone",
"CreatedById",
"CaseNumber",
"ContactFax",
"ContactMobile",
"IsDeleted",
"LastViewedDate",
"SystemModstamp",
"CreatedDate",
"ContactEmail",
"ClosedDate",
"LastModifiedById",
}
)
// SObject describes an instance of SObject.
// Ref: https://developer.salesforce.com/docs/atlas.en-us.214.0.api_rest.meta/api_rest/resources_sobject_basic_info.htm
type SObject map[string]interface{}
// SObjectMeta describes the metadata returned by describing the object.
// Ref: https://developer.salesforce.com/docs/atlas.en-us.214.0.api_rest.meta/api_rest/resources_sobject_describe.htm
type SObjectMeta map[string]interface{}
// SObjectAttributes describes the basic attributes (type and url) of an SObject.
type SObjectAttributes struct {
Type string `json:"type"`
URL string `json:"url"`
}
// Describe queries the metadata of an SObject using the "describe" API.
// Ref: https://developer.salesforce.com/docs/atlas.en-us.214.0.api_rest.meta/api_rest/resources_sobject_describe.htm
func (obj *SObject) Describe() *SObjectMeta {
if obj.Type() == "" || obj.client() == nil {
// Sanity check.
return nil
}
url := obj.client().makeURL("sobjects/" + obj.Type() + "/describe")
data, err := obj.client().httpRequest(http.MethodGet, url, nil)
if err != nil {
return nil
}
var meta SObjectMeta
err = json.Unmarshal(data, &meta)
if err != nil {
return nil
}
return &meta
}
// Get retrieves all the data fields of an SObject. If id is provided, the SObject with the provided external ID will
// be retrieved; otherwise, the existing ID of the SObject will be checked. If the SObject doesn't contain an ID field
// and id is not provided as the parameter, nil is returned.
// If query is successful, the SObject is updated in-place and exact same address is returned; otherwise, nil is
// returned if failed.
func (obj *SObject) Get(id ...string) *SObject {
if obj.Type() == "" || obj.client() == nil {
// Sanity check.
return nil
}
oid := obj.ID()
if len(id) > 0 {
oid = id[0]
}
if oid == "" {
log.Println(logPrefix, "object id not found.")
return nil
}
url := obj.client().makeURL("sobjects/" + obj.Type() + "/" + oid)
data, err := obj.client().httpRequest(http.MethodGet, url, nil)
if err != nil {
log.Println(logPrefix, "http request failed,", err)
return nil
}
err = json.Unmarshal(data, obj)
if err != nil {
log.Println(logPrefix, "json decode failed,", err)
return nil
}
return obj
}
// Create posts the JSON representation of the SObject to salesforce to create the entry.
// If the creation is successful, the ID of the SObject instance is updated with the ID returned. Otherwise, nil is
// returned for failures.
// Ref: https://developer.salesforce.com/docs/atlas.en-us.214.0.api_rest.meta/api_rest/dome_sobject_create.htm
func (obj *SObject) Create() *SObject {
if obj.Type() == "" || obj.client() == nil {
// Sanity check.
return nil
}
// Make a copy of the incoming SObject, but skip certain metadata fields as they're not understood by salesforce.
reqObj := obj.makeCopy()
reqData, err := json.Marshal(reqObj)
if err != nil {
log.Println(logPrefix, "failed to convert sobject to json,", err)
return nil
}
url := obj.client().makeURL("sobjects/" + obj.Type() + "/")
respData, err := obj.client().httpRequest(http.MethodPost, url, bytes.NewReader(reqData))
if err != nil {
log.Println(logPrefix, "failed to process http request,", err)
return nil
}
// Use an anonymous struct to parse the result if any. This might need to be changed if the result should
// be returned to the caller in some manner, especially if the client would like to decode the errors.
var respVal struct {
ID string `json:"id"`
Success bool `json:"success"`
}
err = json.Unmarshal(respData, &respVal)
if err != nil {
log.Println(logPrefix, "failed to process response data,", err)
return nil
}
if !respVal.Success || respVal.ID == "" {
log.Println(logPrefix, "unsuccessful")
return nil
}
obj.setID(respVal.ID)
return obj
}
// Update updates SObject in place. Upon successful, same SObject is returned for chained access.
// ID is required.
func (obj *SObject) Update() *SObject {
if obj.Type() == "" || obj.client() == nil || obj.ID() == "" {
// Sanity check.
return nil
}
// Make a copy of the incoming SObject, but skip certain metadata fields as they're not understood by salesforce.
reqObj := obj.makeCopy()
reqData, err := json.Marshal(reqObj)
if err != nil {
log.Println(logPrefix, "failed to convert sobject to json,", err)
return nil
}
queryBase := "sobjects/"
if obj.client().useToolingAPI {
queryBase = "tooling/sobjects/"
}
url := obj.client().makeURL(queryBase + obj.Type() + "/" + obj.ID())
respData, err := obj.client().httpRequest(http.MethodPatch, url, bytes.NewReader(reqData))
if err != nil {
log.Println(logPrefix, "failed to process http request,", err)
return nil
}
log.Println(string(respData))
return obj
}
// Delete deletes an SObject record identified by external ID. nil is returned if the operation completes successfully;
// otherwise an error is returned
func (obj *SObject) Delete(id ...string) error {
if obj.Type() == "" || obj.client() == nil {
// Sanity check
return ErrFailure
}
oid := obj.ID()
if id != nil {
oid = id[0]
}
if oid == "" {
return ErrFailure
}
url := obj.client().makeURL("sobjects/" + obj.Type() + "/" + obj.ID())
log.Println(url)
_, err := obj.client().httpRequest(http.MethodDelete, url, nil)
if err != nil {
return err
}
return nil
}
// Type returns the type, or sometimes referred to as name, of an SObject.
func (obj *SObject) Type() string {
attributes := obj.AttributesField()
if attributes == nil {
return ""
}
return attributes.Type
}
// ID returns the external ID of the SObject.
func (obj *SObject) ID() string {
return obj.StringField(sobjectIDKey)
}
// StringField accesses a field in the SObject as string. Empty string is returned if the field doesn't exist.
func (obj *SObject) StringField(key string) string {
value := obj.InterfaceField(key)
switch value.(type) {
case string:
return value.(string)
default:
return ""
}
}
// SObjectField accesses a field in the SObject as another SObject. This is only applicable if the field is an external
// ID to another object. The typeName of the SObject must be provided. <nil> is returned if the field is empty.
func (obj *SObject) SObjectField(typeName, key string) *SObject {
// First check if there's an associated ID directly.
oid := obj.StringField(key)
if oid != "" {
object := &SObject{}
object.setClient(obj.client())
object.setType(typeName)
object.setID(oid)
return object
}
// Secondly, check if this could be a linked object, which doesn't have an ID but has the attributes.
linkedObjRaw := obj.InterfaceField(key)
linkedObjMapper, ok := linkedObjRaw.(map[string]interface{})
if !ok {
return nil
}
attrs, ok := linkedObjMapper[sobjectAttributesKey].(map[string]interface{})
if !ok {
return nil
}
// Reusing typeName here, which is ok
typeName, ok = attrs["type"].(string)
url, ok := attrs["url"].(string)
if typeName == "" || url == "" {
return nil
}
// Both type and url exist in attributes, this is a linked object!
// Get the ID from URL.
rIndex := strings.LastIndex(url, "/")
if rIndex == -1 || rIndex+1 == len(url) {
// hmm... this shouldn't happen, unless the URL is hand crafted.
log.Println(logPrefix, "invalid url,", url)
return nil
}
oid = url[rIndex+1:]
object := obj.client().SObject(typeName)
object.setID(oid)
for key, val := range linkedObjMapper {
object.Set(key, val)
}
return object
}
// InterfaceField accesses a field in the SObject as raw interface. This allows access to any type of fields.
func (obj *SObject) InterfaceField(key string) interface{} {
return (*obj)[key]
}
// AttributesField returns a read-only copy of the attributes field of an SObject.
func (obj *SObject) AttributesField() *SObjectAttributes {
attributes := obj.InterfaceField(sobjectAttributesKey)
switch attributes.(type) {
case SObjectAttributes:
// Use a temporary variable to copy the value of attributes and return the address of the temp value.
attrs := (attributes).(SObjectAttributes)
return &attrs
case map[string]interface{}:
// Can't convert attributes to concrete type; decode interface.
mapper := attributes.(map[string]interface{})
attrs := &SObjectAttributes{}
if mapper["type"] != nil {
attrs.Type = mapper["type"].(string)
}
if mapper["url"] != nil {
attrs.URL = mapper["url"].(string)
}
return attrs
default:
return nil
}
}
// Set indexes value into SObject instance with provided key. The same SObject pointer is returned to allow
// chained access.
func (obj *SObject) Set(key string, value interface{}) *SObject {
(*obj)[key] = value
return obj
}
// client returns the associated Client with the SObject.
func (obj *SObject) client() *Client {
client := obj.InterfaceField(sobjectClientKey)
switch client.(type) {
case *Client:
return client.(*Client)
default:
return nil
}
}
// setClient sets the associated Client with the SObject.
func (obj *SObject) setClient(client *Client) {
(*obj)[sobjectClientKey] = client
}
// setType sets the type, or name for the SObject.
func (obj *SObject) setType(typeName string) {
attributes := obj.InterfaceField(sobjectAttributesKey)
switch attributes.(type) {
case SObjectAttributes:
attrs := obj.AttributesField()
attrs.Type = typeName
(*obj)[sobjectAttributesKey] = *attrs
default:
(*obj)[sobjectAttributesKey] = SObjectAttributes{
Type: typeName,
}
}
}
// setID sets the external ID for the SObject.
func (obj *SObject) setID(id string) {
(*obj)[sobjectIDKey] = id
}
// makeCopy copies the fields of an SObject to a new map without metadata fields.
func (obj *SObject) makeCopy() map[string]interface{} {
stripped := make(map[string]interface{})
for key, val := range *obj {
if key == sobjectClientKey ||
key == sobjectAttributesKey ||
key == sobjectIDKey {
continue
}
stripped[key] = val
}
for _, key := range blacklistedUpdateFields {
delete(stripped, key)
}
return stripped
}