Merge pull request #157 from velour/cowsayslash

cowsay: make messages visible :(
This commit is contained in:
Chris Sexton 2019-02-21 10:05:00 -05:00 committed by GitHub
commit dab1eff9dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -173,11 +173,14 @@ func (p *TalkerPlugin) registerWeb() {
http.HandleFunc("/slash/cowsay", func(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
log.Printf("Cowsay:\n%+v", r.PostForm.Get("text"))
channel := r.PostForm.Get("channel_id")
log.Printf("channel: %s", channel)
msg, err := p.cowSay(r.PostForm.Get("text"))
if err != nil {
fmt.Fprintf(w, "Error running cowsay: %s", err)
p.Bot.Send(bot.Message, channel, fmt.Sprintf("Error running cowsay: %s", err))
return
}
fmt.Fprintf(w, "%s", msg)
p.Bot.Send(bot.Message, channel, msg)
w.WriteHeader(200)
})
}