aboutsummaryrefslogtreecommitdiff
path: root/schedule.go
blob: 43c70567bcbed643c16baf43c5a3420691c4f04e (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* schedule.go
* GoHue library for Philips Hue
* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
*/

package hue

import (
    "fmt"
    "encoding/json"
)

type Schedule struct {
    Name        string   `json:"name"`
    Description string   `json:"description"`
	Command struct {
		Address string   `json:"address"`
		Body    struct {
		    Scene string `json:"scene"`
		} `json:"body"`
		Method string    `json:"method"`
	} `json:"command"`
    Localtime   string   `json:"localtime"`
    Time        string   `json:"time"`
	Created     string   `json:"created"`
	Status      string   `json:"status"`
	Autodelete  bool     `json:"autodelete"`
    ID          string
}

func (bridge *Bridge) GetSchedules() ([]Schedule, error) {
    uri := fmt.Sprintf("/api/%s/schedules", bridge.Username)
    body, _, err := bridge.Get(uri)
    if err != nil {
        return []Schedule{}, err
    }

    schedules := map[string]Schedule{}
    err = json.Unmarshal(body, &schedules)
	if err != nil {
		return []Schedule{}, err
	}

    scheduleList := []Schedule{}
    for key, value := range schedules {
        schedule := Schedule{}
        schedule = value
        schedule.ID = key
        scheduleList = append(scheduleList, schedule)
    }

    // for sched := range scheduleList {
    //     fmt.Println("\n\nScheduleoutput: ", scheduleList[sched])
    // }

    return scheduleList, nil
}

// func (bridge *Bridge) CreateSchedule(schedule interface{}) error {
//     return nil
// }
//
// func (bridge *Bridge) GetSchedule(index int) (interface{}, error) {
//     return []interface{}, nil
// }
//
// func (bridge *Bridge) SetSchedule(index int, schedule interface{}) error {
//     return nil
// }
//
// func (bridge *Bridge) DeleteSchedule(index int) error {
//     return nil
// }