forked from goinvest/iexcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.go
295 lines (258 loc) · 6.78 KB
/
helpers.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
// Copyright (c) 2019 The iexcloud developers. All rights reserved.
// Project site: https://github.com/goinvest/iexcloud
// Use of this source code is governed by a MIT-style license that
// can be found in the LICENSE file for the project.
package iex
import (
"encoding/json"
"fmt"
"strconv"
"time"
)
// Date models a report date
type Date time.Time
// UnmarshalJSON implements the Unmarshaler interface for Date.
func (d *Date) UnmarshalJSON(data []byte) error {
var aux string
err := json.Unmarshal(data, &aux)
if err != nil {
return fmt.Errorf("error unmarshaling date to string: %s", err)
}
if aux == "" {
aux = "1929-10-24"
}
t, err := time.Parse("2006-01-02", aux)
if err != nil {
return fmt.Errorf("error converting %s string to date: %s", aux, err)
}
*d = Date(t)
return nil
}
// MarshalJSON implements the Marshaler interface for Date.
func (d *Date) MarshalJSON() ([]byte, error) {
t := time.Time(*d)
return json.Marshal(t.Format("2006-01-02"))
}
// PathRange refers to the date range used in the path of an endpoint.
type PathRange int
// Enum values for PathRange.
const (
Mo1 PathRange = iota
Mo3
Mo6
Yr1
Yr2
Yr5
YTD
Next
)
var pathRangeDescription = map[PathRange]string{
Mo1: "One month (default)",
Mo3: "Three months",
Mo6: "Six months",
Yr1: "One year",
Yr2: "Two years",
Yr5: "Five years",
YTD: "Year-to-data",
Next: "Next upcoming",
}
// PathRanges maps the string keys from the JSON to the PathRange
// constant values.
var PathRanges = map[string]PathRange{
"next": Next,
"1m": Mo1,
"3m": Mo3,
"6m": Mo6,
"5y": Yr5,
"2y": Yr2,
"1y": Yr1,
"ytd": YTD,
}
// PathRangeJSON maps a PathRange to the string used in the JSON.
var PathRangeJSON = map[PathRange]string{
Mo1: "1m",
Mo3: "3m",
Mo6: "6m",
Yr1: "1y",
Yr2: "2y",
Yr5: "5y",
YTD: "ytd",
Next: "next",
}
// MarshalJSON implements the Marshaler interface for PathRange.
func (p *PathRange) MarshalJSON() ([]byte, error) {
return json.Marshal(PathRangeJSON[*p])
}
// UnmarshalJSON implements the Unmarshaler interface for PathRange.
func (p *PathRange) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("error unmarshaling path range, got %s", data)
}
return p.Set(s)
}
// Set sets the issue type using a string.
func (p *PathRange) Set(s string) error {
// Ensure the provided string matches on the keys in the map.
got, ok := PathRanges[s]
if !ok {
return fmt.Errorf("invalid issue type %q", s)
}
// Set the issue type to the value found in the map per the key.
*p = got
return nil
}
// String implements the Stringer interface for PathRange.
func (p PathRange) String() string {
return pathRangeDescription[p]
}
// EpochTime refers to unix timestamps used for some fields in the API
type EpochTime time.Time
// MarshalJSON implements the Marshaler interface for EpochTime.
func (e EpochTime) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprint(time.Time(e).Unix())), nil
}
// UnmarshalJSON implements the Unmarshaler interface for EpochTime.
func (e *EpochTime) UnmarshalJSON(data []byte) (err error) {
s := string(data)
if s == "null" {
return
}
ts, err := strconv.Atoi(string(data))
if err != nil {
return err
}
// Per docs: If the value is -1, IEX has not quoted the symbol in the trading day.
if ts == -1 {
return
}
*e = EpochTime(time.Unix(int64(ts)/1000, 0))
return
}
// String implements the Stringer interface for EpochTime.
func (e EpochTime) String() string { return time.Time(e).String() }
// IssueType refers to the common issue type of the stock.
type IssueType int
const (
blank IssueType = iota
ad
re
ce
si
lp
cs
et
)
var issueTypeDescription = map[IssueType]string{
ad: "American Depository Receipt (ADR)",
re: "Real Estate Investment Trust (REIT)",
ce: "Closed end fund (Stock and Bond Fund)",
si: "Secondary Issue",
lp: "Limited Partnership",
cs: "Common Stock",
et: "Exchange Traded Fund (ETF)",
blank: "Not available",
}
// IssueTypes maps the string keys from the JSON to the IssueType constant
// values.
var IssueTypes = map[string]IssueType{
"ad": ad,
"re": re,
"ce": ce,
"cef": ce,
"si": si,
"lp": lp,
"cs": cs,
"et": et,
"": blank,
}
// IssueTypeJSON maps an IssueType to the string used in the JSON.
var IssueTypeJSON = map[IssueType]string{
ad: "ad",
re: "re",
ce: "ce",
si: "si",
lp: "lp",
cs: "cs",
et: "et",
blank: "",
}
// String implements the Stringer interface for IssueType.
func (i IssueType) String() string {
return issueTypeDescription[i]
}
// MarshalJSON implements the Marshaler interface for IssueType.
func (i *IssueType) MarshalJSON() ([]byte, error) {
return json.Marshal(IssueTypeJSON[*i])
}
// UnmarshalJSON implements the Unmarshaler interface for IssueType.
func (i *IssueType) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("issueType should be a string, got %s", data)
}
return i.Set(s)
}
// Set sets the issue type using a string.
func (i *IssueType) Set(s string) error {
// Ensure the provided string matches on the keys in the map.
got, ok := IssueTypes[s]
if !ok {
return fmt.Errorf("invalid issue type %q", s)
}
// Set the issue type to the value found in the map per the key.
*i = got
return nil
}
// AnnounceTime refers to the time of earnings announcement.
type AnnounceTime int
const (
bto AnnounceTime = iota
dmt
amc
)
var announceTimeDescription = map[AnnounceTime]string{
bto: "Before open",
dmt: "During trading",
amc: "After close",
}
// AnnounceTimes maps the string keys from the JSON to the AnnounceType
// constant values.
var AnnounceTimes = map[string]AnnounceTime{
"BTO": bto,
"DMT": dmt,
"AMC": amc,
}
// AnnounceTimeJSON maps an AnnounceTime to the string used in the JSON.
var AnnounceTimeJSON = map[AnnounceTime]string{
bto: "BTO",
dmt: "DMT",
amc: "AMC",
}
// UnmarshalJSON implements the Unmarshaler interface for AnnounceTime.
func (a *AnnounceTime) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("announceTime should be a string, got %s", data)
}
return a.Set(s)
}
// Set sets the issue type using a string.
func (a *AnnounceTime) Set(s string) error {
// Ensure the provided string matches on the keys in the map.
got, ok := AnnounceTimes[s]
if !ok {
return fmt.Errorf("invalid issue type %q", s)
}
// Set the issue type to the value found in the map per the key.
*a = got
return nil
}
// MarshalJSON implements the Marshaler interface for AnnounceTime.
func (a *AnnounceTime) MarshalJSON() ([]byte, error) {
return json.Marshal(AnnounceTimeJSON[*a])
}
// String implements the Stringer interface for AnnounceTime.
func (a AnnounceTime) String() string {
return announceTimeDescription[a]
}