forked from yyoshiki41/go-radiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.go
282 lines (240 loc) · 6.15 KB
/
program.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
package radiko
import (
"context"
"encoding/xml"
"errors"
"fmt"
"io"
"io/ioutil"
"path"
"strconv"
"time"
"github.com/chikulla/go-radiko/internal/util"
)
// Stations is a slice of Station.
type Stations []Station
// Station is a struct.
type Station struct {
ID string `xml:"id,attr"`
Name string `xml:"name"`
Scd Scd `xml:"scd,omitempty"`
Progs Progs `xml:"progs,omitempty"`
}
type RadioStations []RadioStation
type RadioStation struct {
ID string `xml:"id"`
Name string `xml:"name"`
}
// Scd is a struct.
type Scd struct {
Progs Progs `xml:"progs"`
}
// Progs is a slice of Prog.
type Progs struct {
Date string `xml:"date"`
Progs []Prog `xml:"prog"`
}
// Prog is a struct.
type Prog struct {
Ft string `xml:"ft,attr"`
To string `xml:"to,attr"`
Ftl string `xml:"ftl,attr"`
Tol string `xml:"tol,attr"`
Dur string `xml:"dur,attr"`
Title string `xml:"title"`
SubTitle string `xml:"sub_title"`
Desc string `xml:"desc"`
Pfm string `xml:"pfm"`
Info string `xml:"info"`
URL string `xml:"url"`
}
func (c *Client) GetRadioStations(ctx context.Context) (RadioStations, error) {
apiEndpoint := path.Join(apiV3, "station/list", fmt.Sprintf("%s.xml", c.AreaID()))
req, err := c.newRequest(ctx, "GET", apiEndpoint, &Params{})
if err != nil {
return nil, err
}
resp, err := c.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var d radioStationsData
if err = decodeRadioStationsData(resp.Body, &d); err != nil {
return nil, err
}
return d.radioStations(), nil
}
func (c *Client) GetProgramsByStation(ctx context.Context, stationId string, date time.Time) ([]Prog, error) {
apiEndpoint := path.Join(apiV3, "program/station/date", util.ProgramsDate(date), fmt.Sprintf("%s.xml", stationId))
req, err := c.newRequest(ctx, "GET", apiEndpoint, &Params{})
if err != nil {
return nil, err
}
resp, err := c.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var d stationsData
if err = decodeStationsData(resp.Body, &d); err != nil {
return nil, err
}
return d.programs(), nil
}
func (c *Client) FindProgramByStation(ctx context.Context, stationId string, date time.Time) (*Prog, error) {
progs, err := c.GetProgramsByStation(ctx, stationId, date)
if err != nil {
return nil, err
}
target, err := strconv.Atoi(util.Datetime(date))
if err != nil {
return nil, err
}
for _, prog := range progs {
from, err := strconv.Atoi(prog.Ft)
if err != nil {
return nil, err
}
to, err := strconv.Atoi(prog.To)
if err != nil {
return nil, err
}
if from <= target && to > target {
return &prog, nil
}
}
return nil, errors.New("CAN'T FIND THE PROGRAM")
}
// GetStations returns the program's meta-info.
func (c *Client) GetStations(ctx context.Context, date time.Time) (Stations, error) {
apiEndpoint := path.Join(apiV3,
"program/date", util.ProgramsDate(date),
fmt.Sprintf("%s.xml", c.AreaID()))
req, err := c.newRequest(ctx, "GET", apiEndpoint, &Params{})
if err != nil {
return nil, err
}
resp, err := c.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var d stationsData
if err = decodeStationsData(resp.Body, &d); err != nil {
return nil, err
}
return d.stations(), nil
}
// GetNowPrograms returns the program's meta-info which are currently on the air.
func (c *Client) GetNowPrograms(ctx context.Context) (Stations, error) {
apiEndpoint := apiPath(apiV2, "program/now")
req, err := c.newRequest(ctx, "GET", apiEndpoint, &Params{
query: map[string]string{
"area_id": c.AreaID(),
},
})
if err != nil {
return nil, err
}
resp, err := c.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var d stationsData
if err = decodeStationsData(resp.Body, &d); err != nil {
return nil, err
}
return d.stations(), nil
}
// GetProgramByStartTime returns a specified program.
// This API wraps GetStations.
func (c *Client) GetProgramByStartTime(ctx context.Context, stationID string, start time.Time) (*Prog, error) {
if stationID == "" {
return nil, errors.New("StationID is empty")
}
stations, err := c.GetStations(ctx, start)
if err != nil {
return nil, err
}
ft := util.Datetime(start)
var prog *Prog
for _, s := range stations {
if s.ID == stationID {
for _, p := range s.Progs.Progs {
if p.Ft == ft {
prog = &p
break
}
}
}
}
if prog == nil {
return nil, ErrProgramNotFound
}
return prog, nil
}
// GetWeeklyPrograms returns the weekly programs.
func (c *Client) GetWeeklyPrograms(ctx context.Context, stationID string) (Stations, error) {
apiEndpoint := path.Join(apiV3,
"program/station/weekly",
fmt.Sprintf("%s.xml", stationID))
req, err := c.newRequest(ctx, "GET", apiEndpoint, &Params{})
if err != nil {
return nil, err
}
resp, err := c.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var d stationsData
if err = decodeStationsData(resp.Body, &d); err != nil {
return nil, err
}
return d.stations(), nil
}
type radioStationsData struct {
XMLName xml.Name `xml:"stations"`
RadioStations RadioStations `xml:"station"`
}
func (d *radioStationsData) radioStations() RadioStations {
return d.RadioStations
}
func decodeRadioStationsData(input io.Reader, stations *radioStationsData) error {
b, err := ioutil.ReadAll(input)
if err != nil {
return err
}
if err = xml.Unmarshal(b, stations); err != nil {
return err
}
return nil
}
// stationsData includes a response struct for client's users.
type stationsData struct {
XMLName xml.Name `xml:"radiko"`
XMLStations struct {
XMLName xml.Name `xml:"stations"`
Stations Stations `xml:"station"`
} `xml:"stations"`
}
// stations returns Stations which is a response struct for client's users.
func (d *stationsData) stations() Stations {
return d.XMLStations.Stations
}
func (d *stationsData) programs() []Prog {
return d.XMLStations.Stations[0].Progs.Progs
}
// decodeStationsData parses the XML-encoded data and stores the result.
func decodeStationsData(input io.Reader, stations *stationsData) error {
b, err := ioutil.ReadAll(input)
if err != nil {
return err
}
if err = xml.Unmarshal(b, stations); err != nil {
return err
}
return nil
}