forked from BryanSLam/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoin.go
56 lines (46 loc) · 1.19 KB
/
coin.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
package commands
import (
"encoding/json"
"io"
"io/ioutil"
"net/http"
"regexp"
"strings"
"github.com/BryanSLam/discord-bot/datasource"
"github.com/BryanSLam/discord-bot/util"
)
// NewCoinCommand TODO: @doc
func NewCoinCommand() *Command {
return &Command{
Match: func(s string) bool {
return regexp.MustCompile(`(?i)^!coin [\w]+$`).MatchString(s)
},
Fn: Coin,
}
}
// Coin TODO: @doc
func Coin(rw io.ReadWriter, logger *util.Logger, _ map[string]interface{}) {
buf, err := ioutil.ReadAll(rw)
if err != nil {
rw.Write([]byte(err.Error()))
return
}
slice := strings.Split(string(buf), " ")
ticker := strings.ToUpper(slice[1])
coinURL := coinAPIURL + ticker + "&tsyms=USD"
logger.Info("Fetching coin info for: " + ticker)
resp, err := http.Get(coinURL)
if err != nil {
logger.Trace("Coin request failed. Message: " + err.Error())
rw.Write([]byte(err.Error()))
return
}
coin := datasource.Coin{Symbol: ticker}
if err = json.NewDecoder(resp.Body).Decode(&coin); err != nil || coin.Response == "Error" {
logger.Trace("JSON decoding failed. Message: " + err.Error())
rw.Write([]byte(err.Error()))
return
}
rw.Write([]byte(coin.OutputJSON()))
defer resp.Body.Close()
}