-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifttt.go
39 lines (33 loc) · 902 Bytes
/
ifttt.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
package ifttt
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"net/http"
)
const iftttUrlTemplate string = "https://maker.ifttt.com/trigger/%s/with/key/%s"
type IftttClient interface {
// Triggers an event with the specified parameters
Trigger(event string, values []string) error
}
type iftttClientImpl struct {
key string
}
func (ifttt *iftttClientImpl) Trigger(event string, values []string) error {
if len(values) > 3 {
return errors.New("IFTTT supports at most 3 values")
}
body := new(bytes.Buffer)
m := make(map[string]string)
for i, v := range values {
m[fmt.Sprintf("value%d", i+1)] = v
}
json.NewEncoder(body).Encode(m)
_, err := http.Post(fmt.Sprintf(iftttUrlTemplate, event, ifttt.key), "application/json", body)
return err
}
// Creates a new IftttClient object with the given API key
func NewIftttClient(key string) IftttClient {
return &iftttClientImpl{key}
}