-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
102 lines (81 loc) · 1.93 KB
/
client.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
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
)
// ref: https://github.com/HackerNews/API
type HN struct {
baseURL *url.URL
}
func NewHN() *HN {
baseURL, err := url.Parse("https://hacker-news.firebaseio.com/v0")
if err != nil {
panic(err)
}
return &HN{baseURL: baseURL}
}
func (h *HN) Top() ([]int, error) {
return h.items("top")
}
func (h *HN) New() ([]int, error) {
return h.items("new")
}
func (h *HN) Best() ([]int, error) {
return h.items("best")
}
func (h *HN) Ask() ([]int, error) {
return h.items("ask")
}
func (h *HN) Show() ([]int, error) {
return h.items("show")
}
func (h *HN) Job() ([]int, error) {
return h.items("job")
}
func (h *HN) items(kind string) ([]int, error) {
requestURL := h.baseURL.JoinPath(fmt.Sprintf("/%sstories.json", kind))
request, err := http.NewRequestWithContext(context.Background(), http.MethodGet, requestURL.String(), nil)
if err != nil {
return nil, err
}
response, err := http.DefaultClient.Do(request)
if err != nil {
return nil, err
}
defer response.Body.Close()
var stories []int
if err := json.NewDecoder(response.Body).Decode(&stories); err != nil {
return nil, err
}
return stories, nil
}
func (h *HN) item(id int, item any) error {
requestURL := h.baseURL.JoinPath(fmt.Sprintf("/item/%d.json", id))
request, err := http.NewRequestWithContext(context.Background(), http.MethodGet, requestURL.String(), nil)
if err != nil {
return err
}
response, err := http.DefaultClient.Do(request)
if err != nil {
return err
}
defer response.Body.Close()
return json.NewDecoder(response.Body).Decode(item)
}
func (h *HN) Story(rank, id int) (*Story, error) {
story := NewStory(rank)
if err := h.item(id, story); err != nil {
return nil, err
}
return story, nil
}
func (h *HN) Comment(rank, id int) (*Comment, error) {
comment := NewComment(rank)
if err := h.item(id, &comment); err != nil {
return nil, err
}
return comment, nil
}