sco/bot/bot.go

253 lines
6.9 KiB
Go
Raw Normal View History

2020-09-09 01:14:51 +00:00
package bot
2020-09-08 22:58:55 +00:00
import (
"os"
"os/signal"
"regexp"
"strings"
"github.com/mattermost/mattermost-server/v5/model"
)
type Bot struct {
2020-09-09 01:14:51 +00:00
APIURL string
AccountEmail string
AccountFirstname string
AccountLastname string
AccountPassword string
AccountUsername string
BotName string
Buildarch string
DebuggingChannelName string
TeamName string
Version string
WebsocketURL string
2020-09-08 23:13:15 +00:00
client *model.Client4
webSocketClient *model.WebSocketClient
botUser *model.User
botTeam *model.Team
debuggingChannel *model.Channel
2020-09-08 22:58:55 +00:00
}
func New(options ...func(s *Bot)) *Bot {
b := new(Bot)
for _, opt := range options {
opt(b)
}
return b
}
2020-09-09 01:14:51 +00:00
func (b *Bot) Main() int {
println(b.BotName)
2020-09-08 22:58:55 +00:00
b.SetupGracefulShutdown()
2020-09-09 01:14:51 +00:00
b.client = model.NewAPIv4Client(b.APIURL)
2020-09-08 22:58:55 +00:00
// Lets test to see if the mattermost server is up and running
b.MakeSureServerIsRunning()
// lets attempt to login to the Mattermost server as the bot user
// This will set the token required for all future calls
// You can get this token with client.AuthToken
b.LoginAsTheBotUser()
// If the bot user doesn't have the correct information lets update his profile
b.UpdateTheBotUserIfNeeded()
// Lets find our bot team
b.FindBotTeam()
// This is an important step. Lets make sure we use the botTeam
// for all future web service requests that require a team.
//client.SetTeamId(botTeam.Id)
// Lets create a bot channel for logging debug messages into
b.CreateBotDebuggingChannelIfNeeded()
2020-09-09 01:14:51 +00:00
b.SendMsgToDebuggingChannel("_"+b.BotName+" has **started** running_", "")
2020-09-08 22:58:55 +00:00
// Lets start listening to some channels via the websocket!
2020-09-08 23:13:15 +00:00
var err *model.AppError
2020-09-09 01:14:51 +00:00
b.webSocketClient, err = model.NewWebSocketClient4(b.WebsocketURL, b.client.AuthToken)
2020-09-08 22:58:55 +00:00
if err != nil {
println("We failed to connect to the web socket")
PrintError(err)
}
b.webSocketClient.Listen()
go func() {
for {
select {
case resp := <-b.webSocketClient.EventChannel:
b.HandleWebSocketResponse(resp)
}
}
}()
// You can block forever with
select {}
2020-09-09 01:14:51 +00:00
return 0
2020-09-08 22:58:55 +00:00
}
func (b *Bot) MakeSureServerIsRunning() {
2020-09-08 23:13:15 +00:00
if props, resp := b.client.GetOldClientConfig(""); resp.Error != nil {
2020-09-08 22:58:55 +00:00
println("There was a problem pinging the Mattermost server. Are you sure it's running?")
PrintError(resp.Error)
os.Exit(1)
} else {
println("Server detected and is running version " + props["Version"])
}
}
func (b *Bot) LoginAsTheBotUser() {
2020-09-09 01:14:51 +00:00
if user, resp := b.client.Login(b.AccountEmail, b.AccountPassword); resp.Error != nil {
2020-09-08 22:58:55 +00:00
println("There was a problem logging into the Mattermost server. Are you sure ran the setup steps from the README.md?")
PrintError(resp.Error)
os.Exit(1)
} else {
2020-09-08 23:13:15 +00:00
b.botUser = user
2020-09-08 22:58:55 +00:00
}
}
func (b *Bot) UpdateTheBotUserIfNeeded() {
2020-09-09 01:14:51 +00:00
if b.botUser.FirstName != b.AccountFirstname || b.botUser.LastName != b.AccountLastname || b.botUser.Username != b.AccountUsername {
b.botUser.FirstName = b.AccountFirstname
b.botUser.LastName = b.AccountLastname
b.botUser.Username = b.AccountUsername
2020-09-08 22:58:55 +00:00
2020-09-08 23:13:15 +00:00
if user, resp := b.client.UpdateUser(b.botUser); resp.Error != nil {
println("We failed to update the Bot user account")
2020-09-08 22:58:55 +00:00
PrintError(resp.Error)
os.Exit(1)
} else {
2020-09-08 23:13:15 +00:00
b.botUser = user
2020-09-08 22:58:55 +00:00
println("Looks like this might be the first run so we've updated the bots account settings")
}
}
}
func (b *Bot) FindBotTeam() {
2020-09-09 01:14:51 +00:00
if team, resp := b.client.GetTeamByName(b.TeamName, ""); resp.Error != nil {
2020-09-08 22:58:55 +00:00
println("We failed to get the initial load")
2020-09-09 01:14:51 +00:00
println("or we do not appear to be a member of the team '" + b.TeamName + "'")
2020-09-08 22:58:55 +00:00
PrintError(resp.Error)
os.Exit(1)
} else {
2020-09-08 23:13:15 +00:00
b.botTeam = team
2020-09-08 22:58:55 +00:00
}
}
func (b *Bot) CreateBotDebuggingChannelIfNeeded() {
2020-09-09 01:14:51 +00:00
if rchannel, resp := b.client.GetChannelByName(b.DebuggingChannelName, b.botTeam.Id, ""); resp.Error != nil {
2020-09-08 22:58:55 +00:00
println("We failed to get the channels")
PrintError(resp.Error)
} else {
2020-09-08 23:13:15 +00:00
b.debuggingChannel = rchannel
2020-09-08 22:58:55 +00:00
return
}
// Looks like we need to create the logging channel
channel := &model.Channel{}
2020-09-09 01:14:51 +00:00
channel.Name = b.DebuggingChannelName
2020-09-08 23:13:15 +00:00
channel.DisplayName = "Debugging For Bot"
2020-09-08 22:58:55 +00:00
channel.Purpose = "This is used as a test channel for logging bot debug messages"
channel.Type = model.CHANNEL_OPEN
2020-09-08 23:13:15 +00:00
channel.TeamId = b.botTeam.Id
if rchannel, resp := b.client.CreateChannel(channel); resp.Error != nil {
2020-09-09 01:14:51 +00:00
println("We failed to create the channel " + b.DebuggingChannelName)
2020-09-08 22:58:55 +00:00
PrintError(resp.Error)
} else {
2020-09-08 23:13:15 +00:00
b.debuggingChannel = rchannel
2020-09-09 01:14:51 +00:00
println("Looks like this might be the first run so we've created the channel " + b.DebuggingChannelName)
2020-09-08 22:58:55 +00:00
}
}
func (b *Bot) SendMsgToDebuggingChannel(msg string, replyToId string) {
post := &model.Post{}
2020-09-08 23:13:15 +00:00
post.ChannelId = b.debuggingChannel.Id
2020-09-08 22:58:55 +00:00
post.Message = msg
post.RootId = replyToId
2020-09-08 23:13:15 +00:00
if _, resp := b.client.CreatePost(post); resp.Error != nil {
2020-09-08 22:58:55 +00:00
println("We failed to send a message to the logging channel")
PrintError(resp.Error)
}
}
func (b *Bot) HandleWebSocketResponse(event *model.WebSocketEvent) {
2020-09-08 23:13:15 +00:00
b.HandleMsgFromDebuggingChannel(event)
2020-09-08 22:58:55 +00:00
}
func (b *Bot) HandleMsgFromDebuggingChannel(event *model.WebSocketEvent) {
// If this isn't the debugging channel then lets ingore it
2020-09-08 23:13:15 +00:00
if event.Broadcast.ChannelId != b.debuggingChannel.Id {
2020-09-08 22:58:55 +00:00
return
}
// Lets only reponded to messaged posted events
if event.Event != model.WEBSOCKET_EVENT_POSTED {
return
}
println("responding to debugging channel msg")
post := model.PostFromJson(strings.NewReader(event.Data["post"].(string)))
if post != nil {
// ignore my events
2020-09-08 23:13:15 +00:00
if post.UserId == b.botUser.Id {
2020-09-08 22:58:55 +00:00
return
}
// if you see any word matching 'alive' then respond
if matched, _ := regexp.MatchString(`(?:^|\W)alive(?:$|\W)`, post.Message); matched {
2020-09-08 23:13:15 +00:00
b.SendMsgToDebuggingChannel("Yes I'm running", post.Id)
2020-09-08 22:58:55 +00:00
return
}
// if you see any word matching 'up' then respond
if matched, _ := regexp.MatchString(`(?:^|\W)up(?:$|\W)`, post.Message); matched {
2020-09-08 23:13:15 +00:00
b.SendMsgToDebuggingChannel("Yes I'm running", post.Id)
2020-09-08 22:58:55 +00:00
return
}
// if you see any word matching 'running' then respond
if matched, _ := regexp.MatchString(`(?:^|\W)running(?:$|\W)`, post.Message); matched {
2020-09-08 23:13:15 +00:00
b.SendMsgToDebuggingChannel("Yes I'm running", post.Id)
2020-09-08 22:58:55 +00:00
return
}
// if you see any word matching 'hello' then respond
if matched, _ := regexp.MatchString(`(?:^|\W)hello(?:$|\W)`, post.Message); matched {
2020-09-08 23:13:15 +00:00
b.SendMsgToDebuggingChannel("Yes I'm running", post.Id)
2020-09-08 22:58:55 +00:00
return
}
}
2020-09-08 23:13:15 +00:00
b.SendMsgToDebuggingChannel("I did not understand you!", post.Id)
2020-09-08 22:58:55 +00:00
}
func PrintError(err *model.AppError) {
println("\tError Details:")
println("\t\t" + err.Message)
println("\t\t" + err.Id)
println("\t\t" + err.DetailedError)
}
func (b *Bot) SetupGracefulShutdown() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
for _ = range c {
2020-09-08 23:13:15 +00:00
if b.webSocketClient != nil {
b.webSocketClient.Close()
2020-09-08 22:58:55 +00:00
}
2020-09-09 01:14:51 +00:00
b.SendMsgToDebuggingChannel("_"+b.BotName+" has **stopped** running_", "")
2020-09-08 22:58:55 +00:00
os.Exit(0)
}
}()
}