forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wouldyourather.go
67 lines (55 loc) · 1.57 KB
/
wouldyourather.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
package wouldyourather
import (
"fmt"
"github.com/PuerkitoBio/goquery"
"github.com/jonas747/dcmd"
"github.com/jonas747/yagpdb/commands"
"github.com/jonas747/yagpdb/common"
"github.com/pkg/errors"
"net/http"
)
var Command = &commands.YAGCommand{
CmdCategory: commands.CategoryFun,
Name: "WouldYouRather",
Aliases: []string{"wyr"},
Description: "Get presented with 2 options.",
RunFunc: func(data *dcmd.Data) (interface{}, error) {
q1, q2, err := wouldYouRather()
if err != nil {
return nil, err
}
content := fmt.Sprintf("**Would you rather** (*<http://either.io>*)\n🇦 %s\n **OR**\n🇧 %s", q1, q2)
msg, err := common.BotSession.ChannelMessageSend(data.Msg.ChannelID, content)
if err != nil {
return nil, err
}
common.BotSession.MessageReactionAdd(data.Msg.ChannelID, msg.ID, "🇦")
err = common.BotSession.MessageReactionAdd(data.Msg.ChannelID, msg.ID, "🇧")
if err != nil {
return nil, err
}
return nil, nil
},
}
func wouldYouRather() (q1 string, q2 string, err error) {
req, err := http.NewRequest("GET", "http://either.io/", nil)
if err != nil {
panic(err)
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
return
}
doc, err := goquery.NewDocumentFromResponse(resp)
if err != nil {
return
}
r1 := doc.Find("div.result.result-1 > .option-text")
r2 := doc.Find("div.result.result-2 > .option-text")
if len(r1.Nodes) < 1 || len(r2.Nodes) < 1 {
return "", "", errors.New("Failed finding questions, format may have changed.")
}
q1 = r1.Nodes[0].FirstChild.Data
q2 = r2.Nodes[0].FirstChild.Data
return
}