mirror-nourybot/pkg/api/randomxkcd.go

37 lines
847 B
Go
Raw Normal View History

2021-10-18 14:57:44 +02:00
package api
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"github.com/lyx0/nourybot/pkg/utils"
2021-10-19 15:33:23 +02:00
log "github.com/sirupsen/logrus"
2021-10-18 14:57:44 +02:00
)
type XkcdResponse struct {
Num int `json:"num"`
SafeTitle string `json:"safe_title"`
Img string `json:"img"`
}
2021-10-20 23:21:13 +02:00
// RandomXkcd returns a link to a random Xkcd comic.
2021-10-18 14:57:44 +02:00
func RandomXkcd() string {
comicNum := fmt.Sprint(utils.GenerateRandomNumber(2468))
response, err := http.Get(fmt.Sprint("http://xkcd.com/" + comicNum + "/info.0.json"))
if err != nil {
2021-10-19 15:33:23 +02:00
log.Error(err)
2021-10-18 14:57:44 +02:00
}
responseData, err := ioutil.ReadAll(response.Body)
if err != nil {
2021-10-19 15:33:23 +02:00
log.Error(err)
2021-10-18 14:57:44 +02:00
}
var responseObject XkcdResponse
json.Unmarshal(responseData, &responseObject)
reply := fmt.Sprint("Random Xkcd #", responseObject.Num, " Title: ", responseObject.SafeTitle, " ", responseObject.Img)
return reply
}