Exemple #1
0
func (lc LightController) RemoveLight(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
	lightId, err := strconv.Atoi(p.ByName("id"))
	if !utils.LogError(err) {
		args := []string{"-d", "-m", strconv.Itoa(lightId)}
		utils.RunCommand(w, "/usr/sbin/aprontest", args)
	}
}
Exemple #2
0
func (lc LightController) SetName(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
	lightId, err := strconv.Atoi(p.ByName("id"))
	if !utils.LogError(err) {
		var light models.Light
		body, err := ioutil.ReadAll(r.Body)
		fmt.Println("state body:", string(body))
		err = json.Unmarshal(body, &light)
		if !utils.LogError(err) {
			args := []string{"-m", strconv.Itoa(lightId), "--set-name", light.Username}
			utils.RunCommand(w, "/usr/sbin/aprontest", args)
		}
	}
}
Exemple #3
0
func (lc LightController) AddLight(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
	args := []string{"-a", "-r", "zigbee"}
	utils.RunCommand(w, "/usr/sbin/aprontest", args)
}