-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtopic.go
93 lines (78 loc) · 1.87 KB
/
topic.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
package jike
import (
"bytes"
"encoding/json"
"github.com/0neSe7en/jikefm/musicapi"
)
type Audio struct {
Title string `json:"title"`
Author string `json:"author"`
Type string `json:"type"`
}
type Topic struct {
Content string `json:"content"`
}
type User struct {
ScreenName string `json:"screenName"`
}
type LinkInfo struct {
LinkUrl string `json:"linkUrl"`
Source string `json:"source"`
Title string `json:"title"`
Audio Audio `json:"audio"`
}
type Message struct {
Content string `json:"content"`
LinkInfo LinkInfo `json:"linkInfo"`
Topic Topic `json:"topic"`
User User `json:"user"`
Mp3Url string
}
func (m Message) GetTitle() string {
return m.LinkInfo.Title
}
type Response struct {
Data []Message `json:"data"`
LoadMoreKey string `json:"loadMoreKey"`
}
type Request struct {
Limit int `json:"limit"`
TopicId string `json:"topic"`
LoadMoreKey string `json:"loadMoreKey"`
}
func FetchMoreSelected(session *Session, topicId string, skip string) (res Response, err error) {
req := Request{
TopicId: topicId,
Limit: 20,
}
req.LoadMoreKey = skip
jsonStr, err := json.Marshal(req)
if err != nil {
return
}
body, err := session.Post(topicSelected, bytes.NewBuffer(jsonStr))
if err != nil {
return
}
if err := json.Unmarshal(body, &res); err != nil {
return res, err
}
return res, err
}
func FetchMoreSelectedFM(session *Session, topicId string, skip string) ([]Message, string, error) {
res, err := FetchMoreSelected(session, topicId, skip)
if err != nil {
return nil, "", err
}
var messages []Message
for _, msg := range res.Data {
if msg.LinkInfo.Source == "163.com" && msg.LinkInfo.Audio.Type == "AUDIO" {
url := musicapi.NeteaseUrlToMp3(msg.LinkInfo.LinkUrl)
if url != "" {
msg.Mp3Url = url
messages = append(messages, msg)
}
}
}
return messages, res.LoadMoreKey, nil
}