-
Notifications
You must be signed in to change notification settings - Fork 23
/
customer_profile.go
606 lines (533 loc) · 19.5 KB
/
customer_profile.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
603
604
605
606
package AuthorizeCIM
import (
"encoding/json"
)
func GetPaymentProfileIds(month string, method string) (*GetCustomerPaymentProfileListResponse, error) {
action := GetCustomerPaymentProfileListRequest{
GetCustomerPaymentProfileList: GetCustomerPaymentProfileList{
MerchantAuthentication: GetAuthentication(),
SearchType: method,
Month: month,
Sorting: Sorting{
OrderBy: "id",
OrderDescending: "false",
},
Paging: Paging{
Limit: "1000",
Offset: "1",
},
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat GetCustomerPaymentProfileListResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (profile Profile) CreateProfile() (*CustomProfileResponse, error) {
response, err := CreateProfile(profile)
return response, err
}
func (profile Profile) CreateShipping() (*CreateCustomerShippingAddressResponse, error) {
response, err := CreateShipping(profile)
return response, err
}
func (customer Customer) Info() (*GetCustomerProfileResponse, error) {
response, err := GetProfile(customer)
return response, err
}
func (customer Customer) Validate() (*ValidateCustomerPaymentProfileResponse, error) {
response, err := ValidatePaymentProfile(customer)
return response, err
}
func (customer Customer) DeleteProfile() (*MessagesResponse, error) {
response, err := DeleteProfile(customer)
return response, err
}
func (customer Customer) DeletePaymentProfile() (*MessagesResponse, error) {
response, err := DeletePaymentProfile(customer)
return response, err
}
func (customer Customer) DeleteShippingProfile() (*MessagesResponse, error) {
response, err := DeleteShippingProfile(customer)
return response, err
}
func (payment CustomerPaymentProfile) Add() (*CustomerPaymentProfileResponse, error) {
response, err := CreatePaymentProfile(payment)
return response, err
}
func (response GetCustomerProfileResponse) PaymentProfiles() []GetPaymentProfiles {
return response.Profile.PaymentProfiles
}
func (response GetCustomerProfileResponse) ShippingProfiles() []GetShippingProfiles {
return response.Profile.ShippingProfiles
}
func (response GetCustomerProfileResponse) Subscriptions() []string {
return response.SubscriptionIds
}
func (profile Profile) UpdateProfile() (*MessagesResponse, error) {
response, err := UpdateProfile(profile)
return response, err
}
func (profile Profile) UpdatePaymentProfile() (*MessagesResponse, error) {
response, err := UpdatePaymentProfile(profile)
return response, err
}
func (profile Profile) UpdateShippingProfile() (*MessagesResponse, error) {
response, err := UpdateShippingProfile(profile)
return response, err
}
func GetProfileIds() ([]string, error) {
action := GetCustomerProfileIdsRequest{
CustomerProfileIdsRequest: CustomerProfileIdsRequest{
MerchantAuthentication: GetAuthentication(),
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return []string{}, err
}
response, err := SendRequest(jsoned)
var dat CustomerProfileIdsResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return []string{}, err
}
return dat.Ids, err
}
func ValidatePaymentProfile(customer Customer) (*ValidateCustomerPaymentProfileResponse, error) {
action := ValidateCustomerPaymentProfileRequest{
ValidateCustomerPaymentProfile: ValidateCustomerPaymentProfile{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: customer.ID,
CustomerPaymentProfileID: customer.PaymentID,
ValidationMode: testMode,
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat ValidateCustomerPaymentProfileResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func GetProfile(customer Customer) (*GetCustomerProfileResponse, error) {
action := CustomerProfileRequest{
GetCustomerProfile: GetCustomerProfile{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: customer.ID,
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat GetCustomerProfileResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func CreateProfile(profile Profile) (*CustomProfileResponse, error) {
action := CreateCustomerProfileRequest{
CreateCustomerProfile: CreateCustomerProfile{
MerchantAuthentication: GetAuthentication(),
Profile: profile,
ValidationMode: testMode,
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat CustomProfileResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func CreateShipping(profile Profile) (*CreateCustomerShippingAddressResponse, error) {
action := CreateCustomerShippingAddressRequest{
CreateCustomerShippingAddress: CreateCustomerShippingAddress{
MerchantAuthentication: GetAuthentication(),
Address: profile.Shipping,
CustomerProfileID: profile.CustomerProfileId,
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat CreateCustomerShippingAddressResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func UpdateProfile(profile Profile) (*MessagesResponse, error) {
action := UpdateCustomerProfileRequest{
UpdateCustomerProfile: UpdateCustomerProfile{
MerchantAuthentication: GetAuthentication(),
Profile: profile,
},
}
dat, err := MessageResponder(action)
return dat, err
}
func UpdatePaymentProfile(profile Profile) (*MessagesResponse, error) {
action := UpdateCustomerPaymentProfileRequest{
UpdateCustomerPaymentProfile: UpdateCustomerPaymentProfile{
CustomerProfileID: profile.CustomerProfileId,
MerchantAuthentication: GetAuthentication(),
UpPaymentProfile: UpPaymentProfile{
BillTo: profile.PaymentProfiles.BillTo,
Payment: profile.PaymentProfiles.Payment,
CustomerPaymentProfileID: profile.PaymentProfileId,
},
ValidationMode: testMode,
},
}
dat, err := MessageResponder(action)
return dat, err
}
func UpdateShippingProfile(profile Profile) (*MessagesResponse, error) {
action := UpdateCustomerShippingAddressRequest{
UpdateCustomerShippingAddress: UpdateCustomerShippingAddress{
CustomerProfileID: profile.CustomerProfileId,
MerchantAuthentication: GetAuthentication(),
Address: Address{
FirstName: "My",
LastName: "Name",
Address: "38485 New Road ave.",
City: "Los Angeles",
State: "CA",
Zip: "283848",
Country: "USA",
PhoneNumber: "8885555555",
CustomerAddressID: profile.CustomerAddressId,
},
},
}
dat, err := MessageResponder(action)
return dat, err
}
func DeleteProfile(customer Customer) (*MessagesResponse, error) {
action := DeleteCustomerProfileRequest{
DeleteCustomerProfile: DeleteCustomerProfile{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: customer.ID,
},
}
dat, err := MessageResponder(action)
return dat, err
}
func MessageResponder(d interface{}) (*MessagesResponse, error) {
jsoned, err := json.Marshal(d)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat MessagesResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func DeletePaymentProfile(customer Customer) (*MessagesResponse, error) {
action := DeleteCustomerPaymentProfileRequest{
DeleteCustomerPaymentProfile: DeleteCustomerPaymentProfile{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: customer.ID,
CustomerPaymentProfileID: customer.PaymentID,
},
}
dat, err := MessageResponder(action)
return dat, err
}
func DeleteShippingProfile(customer Customer) (*MessagesResponse, error) {
action := DeleteCustomerShippingProfileRequest{
DeleteCustomerShippingProfile: DeleteCustomerShippingProfile{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: customer.ID,
CustomerShippingID: customer.ShippingID,
},
}
dat, err := MessageResponder(action)
return dat, err
}
func CreatePaymentProfile(profile CustomerPaymentProfile) (*CustomerPaymentProfileResponse, error) {
action := CreateCustomerPaymentProfile{
CreateCustomerPaymentProfileRequest: CreateCustomerPaymentProfileRequest{
MerchantAuthentication: GetAuthentication(),
CustomerProfileID: profile.CustomerProfileID,
PaymentProfile: PaymentProfile{
BillTo: profile.PaymentProfile.BillTo,
Payment: profile.PaymentProfile.Payment,
DefaultPaymentProfile: profile.PaymentProfile.DefaultPaymentProfile,
},
},
}
jsoned, err := json.Marshal(action)
if err != nil {
return nil, err
}
response, err := SendRequest(jsoned)
var dat CustomerPaymentProfileResponse
err = json.Unmarshal(response, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
type CreateCustomerProfileRequest struct {
CreateCustomerProfile CreateCustomerProfile `json:"createCustomerProfileRequest"`
}
type CreateCustomerProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
Profile Profile `json:"profile"`
ValidationMode string `json:"validationMode"`
}
type CustomerProfiler struct {
CustomerProfileID string `json:"customerProfileId,omitempty"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId,omitempty"`
CustomerShippingProfileID string `json:"customerAddressId,omitempty"`
}
type Profile struct {
MerchantCustomerID string `json:"merchantCustomerId,omitempty"`
Description string `json:"description,omitempty"`
Email string `json:"email,omitempty"`
CustomerProfileId string `json:"customerProfileId,omitempty"`
PaymentProfiles *PaymentProfiles `json:"paymentProfiles,omitempty"`
PaymentProfileId string `json:"customerPaymentProfileId,omitempty"`
Shipping *Address `json:"address,omitempty"`
CustomerAddressId string `json:"customerAddressId,omitempty"`
PaymentProfile *PaymentProfile `json:"paymentProfile,omitempty"`
}
type PaymentProfiles struct {
CustomerType string `json:"customerType,omitempty"`
Payment Payment `json:"payment,omitempty"`
BillTo *BillTo `json:"billTo,omitempty"`
PaymentId string `json:"paymentProfileId,omitempty"`
}
type CustomProfileResponse struct {
CustomerProfileID string `json:"customerProfileId"`
CustomerPaymentProfileIDList []string `json:"customerPaymentProfileIdList"`
CustomerShippingAddressIDList []interface{} `json:"customerShippingAddressIdList"`
ValidationDirectResponseList []string `json:"validationDirectResponseList"`
MessagesResponse
}
type CustomerProfileRequest struct {
GetCustomerProfile GetCustomerProfile `json:"getCustomerProfileRequest"`
}
type GetCustomerProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
}
type GetCustomerProfileResponse struct {
Profile struct {
PaymentProfiles []GetPaymentProfiles `json:"paymentProfiles,omitempty"`
ShippingProfiles []GetShippingProfiles `json:"shipToList,omitempty"`
CustomerProfileID string `json:"customerProfileId"`
MerchantCustomerID string `json:"merchantCustomerId,omitempty"`
Description string `json:"description,omitempty"`
Email string `json:"email,omitempty"`
} `json:"profile"`
SubscriptionIds []string `json:"subscriptionIds"`
MessagesResponse
}
type DeleteCustomerPaymentProfileRequest struct {
DeleteCustomerPaymentProfile DeleteCustomerPaymentProfile `json:"deleteCustomerPaymentProfileRequest"`
}
type DeleteCustomerPaymentProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
}
type DeleteCustomerShippingProfileRequest struct {
DeleteCustomerShippingProfile DeleteCustomerShippingProfile `json:"deleteCustomerShippingAddressRequest"`
}
type DeleteCustomerShippingProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
CustomerShippingID string `json:"customerAddressId"`
}
type GetShippingProfiles struct {
CustomerAddressID string `json:"customerAddressId"`
FirstName string `json:"firstName,omitempty"`
LastName string `json:"lastName,omitempty"`
Company string `json:"company,omitempty"`
Address string `json:"address,omitempty"`
City string `json:"city,omitempty"`
State string `json:"state,omitempty"`
Zip string `json:"zip,omitempty"`
Country string `json:"country,omitempty"`
PhoneNumber string `json:"phoneNumber,omitempty"`
}
type GetPaymentProfiles struct {
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
Payment struct {
CreditCard struct {
CardNumber string `json:"cardNumber"`
ExpirationDate string `json:"expirationDate"`
} `json:"creditCard"`
} `json:"payment"`
CustomerType string `json:"customerType"`
BillTo struct {
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
} `json:"billTo"`
}
type GetCustomerProfileIdsRequest struct {
CustomerProfileIdsRequest CustomerProfileIdsRequest `json:"getCustomerProfileIdsRequest"`
}
type CustomerProfileIdsRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
}
type CustomerProfileIdsResponse struct {
Ids []string `json:"ids"`
Messages struct {
ResultCode string `json:"resultCode"`
Message []struct {
Code string `json:"code"`
Text string `json:"text"`
} `json:"message"`
} `json:"messages"`
}
type UpdateCustomerProfileRequest struct {
UpdateCustomerProfile UpdateCustomerProfile `json:"updateCustomerProfileRequest"`
}
type UpdateCustomerProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
Profile Profile `json:"profile"`
}
type DeleteCustomerProfileRequest struct {
DeleteCustomerProfile DeleteCustomerProfile `json:"deleteCustomerProfileRequest"`
}
type DeleteCustomerProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
}
type MessagesResponse struct {
Messages struct {
ResultCode string `json:"resultCode"`
Message []struct {
Code string `json:"code"`
Text string `json:"text"`
} `json:"message"`
} `json:"messages"`
}
type MessageResponse struct {
ResultCode string `json:"resultCode"`
Message struct {
Code string `json:"code"`
Text string `json:"text"`
} `json:"message"`
}
type CustomerPaymentProfile struct {
CustomerProfileID string `json:"customerProfileId"`
PaymentProfile PaymentProfile `json:"paymentProfile"`
}
type CreateCustomerPaymentProfile struct {
CreateCustomerPaymentProfileRequest CreateCustomerPaymentProfileRequest `json:"createCustomerPaymentProfileRequest"`
}
type CreateCustomerPaymentProfileRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
PaymentProfile PaymentProfile `json:"paymentProfile"`
}
type PaymentProfile struct {
BillTo *BillTo `json:"billTo,omitempty"`
Payment *Payment `json:"payment,omitempty"`
DefaultPaymentProfile string `json:"defaultPaymentProfile,omitempty"`
PaymentProfileId string `json:"paymentProfileId,omitempty"`
}
type CustomerPaymentProfileResponse struct {
CustomerProfileId string `json:"customerProfileId"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
ValidationDirectResponse string `json:"validationDirectResponse"`
MessagesResponse
}
type GetCustomerPaymentProfileListRequest struct {
GetCustomerPaymentProfileList GetCustomerPaymentProfileList `json:"getCustomerPaymentProfileListRequest"`
}
type GetCustomerPaymentProfileList struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
SearchType string `json:"searchType"`
Month string `json:"month"`
Sorting Sorting `json:"sorting"`
Paging Paging `json:"paging"`
}
type GetCustomerPaymentProfileListResponse struct {
GetCustomerPaymentProfileList struct {
MessagesResponse
TotalNumInResultSet string `json:"totalNumInResultSet"`
PaymentProfiles struct {
PaymentProfile []PaymentProfile `json:"paymentProfile"`
} `json:"paymentProfiles"`
} `json:"getCustomerPaymentProfileListResponse"`
}
type ValidateCustomerPaymentProfileRequest struct {
ValidateCustomerPaymentProfile ValidateCustomerPaymentProfile `json:"validateCustomerPaymentProfileRequest"`
}
type ValidateCustomerPaymentProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
ValidationMode string `json:"validationMode"`
}
type ValidateCustomerPaymentProfileResponse struct {
DirectResponse string `json:"directResponse"`
MessagesResponse
}
type CreateCustomerShippingAddressRequest struct {
CreateCustomerShippingAddress CreateCustomerShippingAddress `json:"createCustomerShippingAddressRequest"`
}
type CreateCustomerShippingAddress struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId,omitempty"`
Address *Address `json:"address,omitempty"`
}
type CreateCustomerShippingAddressResponse struct {
CustomerAddressID string `json:"customerAddressId,omitempty"`
MessagesResponse
}
type UpdateCustomerPaymentProfileRequest struct {
UpdateCustomerPaymentProfile UpdateCustomerPaymentProfile `json:"updateCustomerPaymentProfileRequest"`
}
type UpdateCustomerPaymentProfile struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
UpPaymentProfile UpPaymentProfile `json:"paymentProfile"`
ValidationMode string `json:"validationMode"`
}
type UpPaymentProfile struct {
BillTo *BillTo `json:"billTo"`
Payment Payment `json:"payment"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
}
type UpdateCustomerShippingAddressRequest struct {
UpdateCustomerShippingAddress UpdateCustomerShippingAddress `json:"updateCustomerShippingAddressRequest"`
}
type UpdateCustomerShippingAddress struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
CustomerProfileID string `json:"customerProfileId"`
Address Address `json:"address"`
}