-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
143 lines (116 loc) · 3.71 KB
/
main.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package main
import (
"bytes"
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"github.com/bwmarrin/discordgo"
"github.com/homeblest/pubg_stat_tracker/adding"
"github.com/homeblest/pubg_stat_tracker/listing"
"github.com/homeblest/pubg_stat_tracker/matches"
"github.com/homeblest/pubg_stat_tracker/players"
"github.com/homeblest/pubg_stat_tracker/regions"
"github.com/homeblest/pubg_stat_tracker/requesting"
"github.com/homeblest/pubg_stat_tracker/storage"
)
var (
token string
apiKey string
)
var addingSvc adding.Service
var requestSvc requesting.Service
var listingSvc listing.Service
var playerStorage players.Repository
func main() {
apiKey = os.Getenv("PUBG_API_KEY")
token = os.Getenv("DISCORD_BOT_TOKEN")
var matchStorage matches.Repository
playerStorage = new(storage.RedisPlayerStorage)
addingSvc = adding.NewService(matchStorage, playerStorage)
requestSvc = requesting.NewService(apiKey)
listingSvc = listing.NewService(playerStorage)
bot, err := discordgo.New("Bot " + token)
if err != nil {
fmt.Println("Error creating Discord session: ", err)
return
}
bot.AddHandler(messageCreate)
err = bot.Open()
if err != nil {
fmt.Println("Error opening Discord session: ", err)
}
// Wait here until CTRL-C or other term signal is received.
fmt.Println("PUBG_Stat_Tracker 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.
bot.Close()
}
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
// Ignore all messages created by the bot itself, and if the message doesn't start with ! (bang)
if m.Author.ID == s.State.User.ID || !strings.HasPrefix(m.Content, "!") {
return
}
inputString := strings.Split(m.Content, " ")
cmd := inputString[0]
switch cmd {
case "!status":
status, err := requestSvc.RequestStatus()
if err != nil {
s.ChannelMessageSend(m.ChannelID, "Apologies, the PUBG API seems to be down at the moment")
return
}
statusString := fmt.Sprintf("Type: %s - ID: %s - Release Date: %s - Version: %s",
status.Data.Type, status.Data.ID, status.Data.Attributes.ReleasedAt, status.Data.Attributes.Version,
)
s.ChannelMessageSend(m.ChannelID, statusString)
case "!stats":
if len(inputString) < 3 {
s.ChannelMessageSend(m.ChannelID, "Invalid command, use: !stats <playerName> <region> <gameMode>")
return
}
playerName := inputString[1]
shardID := regions.GetShardIDFromRegion(inputString[2])
// gameMode := inputString[3]
player, err := requestSvc.RequestPlayer(playerName, shardID)
if err != nil {
s.ChannelMessageSend(m.ChannelID, err.Error())
return
}
allSeasons, err := requestSvc.RequestSeasons(shardID)
if err != nil {
fmt.Println(err.Error())
s.ChannelMessageSend(m.ChannelID, "Failed requesting seasons")
return
}
var currentSeasonID string
for _, season := range allSeasons.Seasons {
if season.Attributes.IsCurrentSeason {
currentSeasonID = season.ID
}
}
playerSeasonStats, err := requestSvc.RequestSeasonStatistics(player.ID, currentSeasonID, shardID)
if err != nil {
fmt.Println(err.Error())
s.ChannelMessageSend(m.ChannelID, "Failed requesting season statistics")
return
}
player.GameModeStats = playerSeasonStats.Data.Attributes.GameModeStats
addingSvc.AddPlayer(*player)
s.ChannelMessageSend(m.ChannelID, "Added player to Redis")
case "!seasons":
seasonData, err := requestSvc.RequestSeasons("pc-eu")
if err != nil {
fmt.Println(err)
return
}
var buffer bytes.Buffer
for _, season := range seasonData.Seasons {
buffer.WriteString(fmt.Sprintf("%s\n", season.ID))
}
s.ChannelMessageSend(m.ChannelID, buffer.String())
}
}