Added getChatID
This commit is contained in:
parent
5aa25dc84a
commit
0bf31df81e
1 changed files with 26 additions and 9 deletions
35
main.go
35
main.go
|
@ -96,13 +96,13 @@ type TextMessageDetails struct {
|
||||||
MessageText string `json:"messageText"`
|
MessageText string `json:"messageText"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func scrape(liveChatID string, key string) {
|
func scrape(liveChatID string) {
|
||||||
for {
|
for {
|
||||||
if streaming == true {
|
if streaming == true {
|
||||||
// Check for chat messages
|
// Check for chat messages
|
||||||
println("Scary, we are expending a Google API credit (on stream)!")
|
println("Scary, we are expending a Google API credit (on stream)!")
|
||||||
|
|
||||||
response, err := http.Get("https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=" + liveChatID + "&part=snippet,authorDetails&key=" + key)
|
response, err := http.Get("https://www.googleapis.com/youtube/v3/liveChat/messages?liveChatId=" + liveChatID + "&part=snippet,authorDetails&key=" + configFile.ApiKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Error getting chat messages: " + err.Error() + ", trying again in 20 seconds")
|
println("Error getting chat messages: " + err.Error() + ", trying again in 20 seconds")
|
||||||
time.Sleep(time.Second * 20)
|
time.Sleep(time.Second * 20)
|
||||||
|
@ -183,6 +183,23 @@ func getUserSecondDifference(channelID string) (int64, bool) {
|
||||||
return int64(time.Now().Sub(earliestSentMessage).Seconds()), true
|
return int64(time.Now().Sub(earliestSentMessage).Seconds()), true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getLiveChatID(videoID string) string {
|
||||||
|
response, err := http.Get("https://www.googleapis.com/youtube/v3/videos?part=liveStreamingDetails&id=" + videoID + "&key=" + configFile.ApiKey)
|
||||||
|
if err != nil {
|
||||||
|
panic("Error getting live chat ID: " + err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
var responseJSON map[string]interface{}
|
||||||
|
err = json.NewDecoder(response.Body).Decode(&responseJSON)
|
||||||
|
if err != nil {
|
||||||
|
panic("Error decoding JSON: " + err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
liveChatID := responseJSON["items"].([]interface{})[0].(map[string]interface{})["liveStreamingDetails"].(map[string]interface{})["activeLiveChatId"].(string)
|
||||||
|
|
||||||
|
return liveChatID
|
||||||
|
}
|
||||||
|
|
||||||
type PendingSession struct {
|
type PendingSession struct {
|
||||||
IP string
|
IP string
|
||||||
EventCallback func()
|
EventCallback func()
|
||||||
|
@ -685,16 +702,16 @@ func main() {
|
||||||
// Set the live status
|
// Set the live status
|
||||||
streaming = true
|
streaming = true
|
||||||
streamingSince = time.Now()
|
streamingSince = time.Now()
|
||||||
liveChatID, ok := data["liveChatID"].(string)
|
videoID, ok := data["videoID"].(string)
|
||||||
if !ok {
|
if !ok {
|
||||||
c.JSON(400, gin.H{"error": "Invalid JSON"})
|
c.JSON(400, gin.H{"error": "Invalid JSON"})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start the chat message checker
|
// Start the chat message checker
|
||||||
println("Starting chat message checker: ", liveChatID)
|
println("Starting chat message checker: ", videoID)
|
||||||
|
|
||||||
go scrape(liveChatID, configFile.ApiKey)
|
go scrape(getLiveChatID(videoID))
|
||||||
|
|
||||||
// Return 200
|
// Return 200
|
||||||
c.JSON(200, gin.H{"message": "Stream started"})
|
c.JSON(200, gin.H{"message": "Stream started"})
|
||||||
|
@ -801,13 +818,13 @@ func main() {
|
||||||
case "2":
|
case "2":
|
||||||
if !streaming {
|
if !streaming {
|
||||||
streaming = true
|
streaming = true
|
||||||
var liveChatID string
|
var videoID string
|
||||||
print("Enter live chat ID: ")
|
print("Enter video ID: ")
|
||||||
_, err := fmt.Scanln(&liveChatID)
|
_, err := fmt.Scanln(&videoID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Error reading input: " + err.Error())
|
println("Error reading input: " + err.Error())
|
||||||
}
|
}
|
||||||
go scrape(liveChatID, configFile.ApiKey)
|
go scrape(getLiveChatID(videoID))
|
||||||
println("OK: Stream started")
|
println("OK: Stream started")
|
||||||
} else {
|
} else {
|
||||||
println("ERR: Stream already started")
|
println("ERR: Stream already started")
|
||||||
|
|
Loading…
Add table
Reference in a new issue