mirror-nourybot/pkg/commands/weather.go
2021-10-31 15:03:31 +01:00

24 lines
513 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/api/aiden"
log "github.com/sirupsen/logrus"
)
// Weather calls the weather api for a given location and responds
// with the current weather data.
func Weather(channel, location string, nb *bot.Bot) {
reply, err := aiden.ApiCall(fmt.Sprintf("api/v1/misc/weather/%s", location))
if err != nil {
nb.Send(channel, "Something went wrong FeelsBadMan")
log.Error(err)
return
}
nb.Send(channel, reply)
}