forked from rwestlund/quickbooks-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
customer.go
260 lines (239 loc) · 7.08 KB
/
customer.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
// Copyright (c) 2018, Randy Westlund. All rights reserved.
// This code is under the BSD-2-Clause license.
package quickbooks
import (
"bytes"
"encoding/json"
"errors"
"net/http"
"net/url"
"strconv"
null "gopkg.in/guregu/null.v4"
)
// Customer represents a QuickBooks Customer object.
type Customer struct {
ID string `json:"Id,omitempty"`
SyncToken string `json:",omitempty"`
MetaData MetaData `json:",omitempty"`
Title null.String `json:",omitempty"`
GivenName null.String `json:",omitempty"`
MiddleName null.String `json:",omitempty"`
FamilyName null.String `json:",omitempty"`
Suffix null.String `json:",omitempty"`
DisplayName string `json:",omitempty"`
FullyQualifiedName null.String `json:",omitempty"`
CompanyName null.String `json:",omitempty"`
PrintOnCheckName string `json:",omitempty"`
Active bool `json:",omitempty"`
PrimaryPhone TelephoneNumber `json:",omitempty"`
AlternatePhone TelephoneNumber `json:",omitempty"`
Mobile TelephoneNumber `json:",omitempty"`
Fax TelephoneNumber `json:",omitempty"`
PrimaryEmailAddr *EmailAddress `json:",omitempty"`
WebAddr *WebSiteAddress `json:",omitempty"`
//DefaultTaxCodeRef
Taxable *bool `json:",omitempty"`
TaxExemptionReasonID *string `json:"TaxExemptionReasonId,omitempty"`
BillAddr *PhysicalAddress `json:",omitempty"`
ShipAddr *PhysicalAddress `json:",omitempty"`
Notes string `json:",omitempty"`
Job null.Bool `json:",omitempty"`
BillWithParent bool `json:",omitempty"`
ParentRef ReferenceType `json:",omitempty"`
Level int `json:",omitempty"`
//SalesTermRef
//PaymentMethodRef
Balance json.Number `json:",omitempty"`
OpenBalanceDate Date `json:",omitempty"`
BalanceWithJobs json.Number `json:",omitempty"`
//CurrencyRef
PrimaryTaxIdentifier null.String `json:",omitempty"`
}
// GetAddress prioritizes the ship address, but falls back on bill address
func (c Customer) GetAddress() PhysicalAddress {
if c.ShipAddr != nil {
return *c.ShipAddr
}
if c.BillAddr != nil {
return *c.BillAddr
}
return PhysicalAddress{}
}
// GetWebsite de-nests the Website object
func (c Customer) GetWebsite() string {
if c.WebAddr != nil {
return c.WebAddr.URI
}
return ""
}
// GetPrimaryEmail de-nests the PrimaryEmailAddr object
func (c Customer) GetPrimaryEmail() string {
if c.PrimaryEmailAddr != nil {
return c.PrimaryEmailAddr.Address
}
return ""
}
// FetchCustomers gets the full list of Customers in the QuickBooks account.
func (c *Client) FetchCustomers() ([]Customer, error) {
// See how many customers there are.
var r struct {
QueryResponse struct {
TotalCount int
}
}
err := c.query("SELECT COUNT(*) FROM Customer", &r)
if err != nil {
return nil, err
}
if r.QueryResponse.TotalCount == 0 {
return make([]Customer, 0), nil
}
var customers = make([]Customer, 0, r.QueryResponse.TotalCount)
for i := 0; i < r.QueryResponse.TotalCount; i += queryPageSize {
var page, err = c.fetchCustomerPage(i + 1)
if err != nil {
return nil, err
}
customers = append(customers, page...)
}
return customers, nil
}
// Fetch one page of results, because we can't get them all in one query.
func (c *Client) fetchCustomerPage(startpos int) ([]Customer, error) {
var r struct {
QueryResponse struct {
Customer []Customer
StartPosition int
MaxResults int
}
}
q := "SELECT * FROM Customer ORDERBY Id STARTPOSITION " +
strconv.Itoa(startpos) + " MAXRESULTS " + strconv.Itoa(queryPageSize)
err := c.query(q, &r)
if err != nil {
return nil, err
}
// Make sure we don't return nil if there are no customers.
if r.QueryResponse.Customer == nil {
r.QueryResponse.Customer = make([]Customer, 0)
}
return r.QueryResponse.Customer, nil
}
// FetchCustomerByID returns a customer with a given ID.
func (c *Client) FetchCustomerByID(id string) (*Customer, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/customer/" + id
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var req *http.Request
req, err = http.NewRequest("GET", u.String(), nil)
if err != nil {
return nil, err
}
req.Header.Add("Accept", "application/json")
var res *http.Response
res, err = c.Client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
return nil, errors.New("Got status code " + strconv.Itoa(res.StatusCode))
}
var r struct {
Customer Customer
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Customer, err
}
// CreateCustomer creates the given Customer on the QuickBooks server,
// returning the resulting Customer object.
func (c *Client) CreateCustomer(customer *Customer) (*Customer, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/customer"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var j []byte
j, err = json.Marshal(customer)
if err != nil {
return nil, err
}
var req *http.Request
req, err = http.NewRequest("POST", u.String(), bytes.NewBuffer(j))
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
var res *http.Response
res, err = c.Client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
return nil, parseFailure(res)
}
var r struct {
Customer Customer
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Customer, err
}
// UpdateCustomer updates the given Customer on the QuickBooks server,
// returning the resulting Customer object. It's a sparse update, as not all QB
// fields are present in our Customer object.
func (c *Client) UpdateCustomer(customer *Customer) (*Customer, error) {
var u, err = url.Parse(string(c.Endpoint))
if err != nil {
return nil, err
}
u.Path = "/v3/company/" + c.RealmID + "/customer"
var v = url.Values{}
v.Add("minorversion", minorVersion)
u.RawQuery = v.Encode()
var d = struct {
*Customer
Sparse bool `json:"sparse"`
}{
Customer: customer,
Sparse: true,
}
var j []byte
j, err = json.Marshal(d)
if err != nil {
return nil, err
}
var req *http.Request
req, err = http.NewRequest("POST", u.String(), bytes.NewBuffer(j))
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
var res *http.Response
res, err = c.Client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
return nil, parseFailure(res)
}
var r struct {
Customer Customer
Time Date
}
err = json.NewDecoder(res.Body).Decode(&r)
return &r.Customer, err
}