-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
124 lines (105 loc) · 2.78 KB
/
main.go
File metadata and controls
124 lines (105 loc) · 2.78 KB
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
package main
import (
"bytes"
"flag"
"fmt"
api "github.com/GwentAPI/GwentBot/api"
"github.com/bwmarrin/discordgo"
"net/http"
"os"
"os/signal"
"strings"
"syscall"
"time"
)
/*
Set this variable with go build with the -ldflags="-X main.version=<value>" parameter.
*/
var version = "undefined"
// Variables used for command line parameters
var (
Token string
Client *http.Client
)
func init() {
versionFlag := flag.Bool("v", false, "Prints current version")
flag.StringVar(&Token, "t", "", "Bot Token")
flag.Parse()
if *versionFlag {
fmt.Println(version)
os.Exit(0)
}
}
func main() {
if Token == "" {
fmt.Println("Token not set.")
return
}
Client = &http.Client{Timeout: 10 * time.Second}
dg, err := discordgo.New("Bot " + Token)
if err != nil {
fmt.Println("error creating Discord session,", err)
return
}
// Register the messageCreate func as a callback for MessageCreate events.
dg.AddHandler(messageCreate)
// Open a websocket connection to Discord and begin listening.
err = dg.Open()
if err != nil {
fmt.Println("error opening connection,", err)
return
}
// Wait here until CTRL-C or other term signal is received.
fmt.Println("Bot is now running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
// Cleanly close down the Discord session.
dg.Close()
}
// This function will be called (due to AddHandler above) every time a new
// message is created on any channel that the autenticated bot has access to.
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
// Ignore all messages created by bots, including himself
// This isn't required in this specific example but it's a good practice.
// Also ignore lengthy messages
if m.Author.Bot || len(m.Content) > 100 {
return
}
// Find the channel that the message came from.
c, err := s.State.Channel(m.ChannelID)
if err != nil {
// Could not find channel.
return
}
// Find the guild for that channel.
g, err := s.State.Guild(c.GuildID)
if err != nil {
// Could not find guild.
return
}
if strings.HasPrefix(m.Content, "!card") {
cardQuery := strings.TrimPrefix(m.Content, "!card")
cardQuery = strings.TrimSpace((cardQuery))
search(s, g, c, m.Author, cardQuery)
return
}
}
func search(s *discordgo.Session, g *discordgo.Guild, c *discordgo.Channel, u *discordgo.User, q string) {
page, err := api.RequestPage(Client, q)
if err != nil {
s.ChannelMessageSend(c.ID, err.Error())
return
}
var buffer bytes.Buffer
card, err := api.RequestCard(Client, page.Results[0].Href)
if err != nil {
s.ChannelMessageSend(c.ID, err.Error())
return
}
buffer.WriteString("``")
buffer.WriteString(card.String())
buffer.WriteString("``")
s.ChannelMessageSend(c.ID, buffer.String())
return
}