summaryrefslogtreecommitdiff
path: root/assistant/assistant.go
blob: 00db82c73f33f7dd52689b0b1c05a5a34b3c2754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package assistant

import (
	"fmt"
	"net/http"
	"os"
)

func UnlockDoor(webhook string) error {
	res, err := http.Get(webhook)
	if err != nil || res.StatusCode/100 != 2 {
		return fmt.Errorf("got err sending message send %v %s", res, err)
	}
	return nil
}

func Do(command string) error {
	if command == "unlock" {
		return UnlockDoor(os.Getenv("UNLOCK_DOOR_WEBHOOK"))
	}
	return fmt.Errorf("unknown command %s", command)
}