-
Notifications
You must be signed in to change notification settings - Fork 1
/
transactions.go
221 lines (189 loc) · 5.55 KB
/
transactions.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
package fio
import (
"context"
"fmt"
"io"
"strconv"
"time"
"github.com/shopspring/decimal"
)
// TransactionsResponse represents response transactions.
type TransactionsResponse struct {
Info StatementInfo
Transactions []Transaction
}
// StatementInfo represents account statement info.
type StatementInfo struct {
AccountID int64
BankID string
Currency string
IBAN string
BIC string
OpeningBalance decimal.Decimal
ClosingBalance decimal.Decimal
DateStart time.Time
DateEnd time.Time
YearList int64
IDFrom int64
IDTo int64
IDLastDownload int64
IDList int64
}
// Transaction represents transaction.
type Transaction struct {
ID int64
Date time.Time
Amount decimal.Decimal
Currency string
Account string
AccountName string
BankName string
BankCode string
ConstantSymbol string
VariableSymbol string
SpecificSymbol string
UserIdentification string
RecipientMessage string
Type string
Specification string
Comment string
BIC string
OrderID string
PayerReference string
}
// ByPeriodOptions represents options passed to ByPeriod.
type ByPeriodOptions struct {
DateFrom time.Time
DateTo time.Time
}
// TransactionsService is a service for working with transactions.
type TransactionsService struct {
client *Client
}
// ByPeriod returns transactions in date period.
func (s *TransactionsService) ByPeriod(ctx context.Context, opts ByPeriodOptions) (*TransactionsResponse, error) {
urlStr := s.client.buildURL("v1/rest/periods", fmtDate(opts.DateFrom), fmtDate(opts.DateTo), "transactions.xml")
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return nil, err
}
resp, err := s.client.do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
return parseTransactionsResponse(resp.Body)
}
// ExportOptions represents options passed to Export.
type ExportOptions struct {
DateFrom time.Time
DateTo time.Time
Format ExportFormat
}
// Export writes transactions in date period to provided writer.
func (s *TransactionsService) Export(ctx context.Context, opts ExportOptions, w io.Writer) error {
exportFmt := fmt.Sprintf("transactions.%v", opts.Format)
urlStr := s.client.buildURL("v1/rest/periods", fmtDate(opts.DateFrom), fmtDate(opts.DateTo), exportFmt)
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return err
}
resp, err := s.client.do(req)
if err != nil {
return err
}
defer resp.Body.Close()
_, cerr := io.Copy(w, resp.Body)
return cerr
}
// GetStatementOptions represents options passed to GetStatement.
type GetStatementOptions struct {
Year int
ID int
}
// GetStatement returns statement by its year/id.
func (s *TransactionsService) GetStatement(ctx context.Context, opts GetStatementOptions) (*TransactionsResponse, error) {
urlStr := s.client.buildURL("v1/rest/by-id", strconv.Itoa(opts.Year), strconv.Itoa(opts.ID), "transactions.xml")
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return nil, err
}
resp, err := s.client.do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
return parseTransactionsResponse(resp.Body)
}
type ExportStatementOptions struct {
Year int
ID int
Format ExportFormat
}
// ExportStatement writes statement by its year/id to provided writer.
func (s *TransactionsService) ExportStatement(ctx context.Context, opts ExportStatementOptions, w io.Writer) error {
exportFmt := fmt.Sprintf("transactions.%v", opts.Format)
urlStr := s.client.buildURL("v1/rest/by-id", strconv.Itoa(opts.Year), strconv.Itoa(opts.ID), exportFmt)
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return err
}
resp, err := s.client.do(req)
if err != nil {
return err
}
defer resp.Body.Close()
_, cerr := io.Copy(w, resp.Body)
return cerr
}
// SinceLastDownload returns transactions since last download.
func (s *TransactionsService) SinceLastDownload(ctx context.Context) (*TransactionsResponse, error) {
urlStr := s.client.buildURL("ib_api/rest/last", "transactions.xml")
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return nil, err
}
resp, err := s.client.do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
return parseTransactionsResponse(resp.Body)
}
// SetLastDownloadIDOptions represents options passed to SetLastDownloadID.
type SetLastDownloadIDOptions struct {
ID int
}
// SetLastDownloadID sets the last downloaded id of statement.
func (s *TransactionsService) SetLastDownloadID(ctx context.Context, opts SetLastDownloadIDOptions) error {
urlStr := s.client.buildURL("v1/rest/set-last-id", strconv.Itoa(opts.ID), "")
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return err
}
resp, err := s.client.do(req)
if err != nil {
return err
}
return resp.Body.Close()
}
// SetLastDownloadDateOptions represents options passed to SetLastDownloadDate.
type SetLastDownloadDateOptions struct {
Date time.Time
}
// SetLastDownloadDate sets the last download date of statement.
func (s *TransactionsService) SetLastDownloadDate(ctx context.Context, opts SetLastDownloadDateOptions) error {
urlStr := s.client.buildURL("v1/rest/set-last-date", fmtDate(opts.Date), "")
req, err := s.client.newGetRequest(ctx, urlStr)
if err != nil {
return err
}
resp, err := s.client.do(req)
if err != nil {
return err
}
return resp.Body.Close()
}
func fmtDate(t time.Time) string {
return t.Format(dateFormat)
}