-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
154 lines (139 loc) · 3.99 KB
/
index.js
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Generated by CoffeeScript 1.6.3
var authorizationTries, checkForError, currentLights, findBridgeIp, getLights, newUser, request, setState, setUpUser, ssdp, url, user;
request = require('request');
ssdp = require('node-ssdp');
url = null;
user = null;
currentLights = [];
exports.init = function(username, onAuthorize, callback) {
var onSuccess;
user = username;
console.log('looking for Hue bridge ...');
onSuccess = function(lights) {
var i, light;
console.log("found " + lights.length + " lights");
currentLights = (function() {
var _i, _len, _results;
_results = [];
for (i = _i = 0, _len = lights.length; _i < _len; i = ++_i) {
light = lights[i];
light.setState = setState(i);
_results.push(light);
}
return _results;
})();
return callback(currentLights);
};
return findBridgeIp(function(ip) {
url = "http://" + ip + "/api/" + user + "/";
console.log('found Hue bridge at ' + ip);
console.log('getting lights info ...');
return setUpUser(ip, onAuthorize, function() {
return getLights(ip, onSuccess);
});
});
};
exports.setState = function(index, state, callback) {
return setState(index)(state, callback);
};
exports.lights = function() {
return currentLights;
};
setState = function(index) {
return function(state, callback) {
if (currentLights[index] == null) {
return console.log('no light with index ' + index);
} else {
return request.put({
url: url + 'lights/' + (index + 1) + '/state/',
body: JSON.stringify(state),
json: true
}, callback);
}
};
};
findBridgeIp = function(callback) {
var client, ips;
client = new ssdp();
ips = [];
client.on("response", function(msg, rinfo) {
var ip;
ip = rinfo.address;
if (ips.indexOf(ip) > -1) {
return;
}
ips.push(ip);
console.log('checking', ip);
return request.get("http://" + ip + "/debug/clip.html", function(_, response) {
if ((response != null) && response.statusCode === 200) {
client.removeAllListeners();
return callback(ip);
} else {
return console.log('no bridge found on', ip);
}
});
});
return client.search('urn:schemas-upnp-org:device:InternetGatewayDevice:1');
};
getLights = function(ip, success, error) {
return request.get("http://" + ip + "/api/" + user + "/lights", {
json: true
}, function(_, __, lightsInfo) {
var err, idx, light, lights;
if ((err = checkForError(lightsInfo))) {
return error(err);
} else {
lights = (function() {
var _results;
_results = [];
for (idx in lightsInfo) {
light = lightsInfo[idx];
_results.push(light);
}
return _results;
})();
return success(lights);
}
});
};
checkForError = function(bridgeResponse) {
var _ref;
if (((_ref = bridgeResponse[0]) != null ? _ref.error : void 0) != null) {
return bridgeResponse[0].error.description;
} else {
return null;
}
};
authorizationTries = 0;
setUpUser = function(ip, authorizePrompt, callback) {
console.log('\nauthorizing with bridge.');
return authorizePrompt(function() {
authorizationTries++;
process.stdout.write('please wait ...');
return newUser(ip, function(err, response, body) {
var _ref, _ref1;
if ((response != null) && (((_ref = body[0]) != null ? (_ref1 = _ref['success']) != null ? _ref1['username'] : void 0 : void 0) != null)) {
console.log('SUCCESS\n');
return callback();
} else {
console.log('ERROR\n', body);
if (authorizationTries < 3) {
return setUpUser(ip, authorizePrompt, callback);
} else {
console.log('giving up.');
return process.exit(1);
}
}
});
});
};
newUser = function(ip, callback) {
return request.post({
url: "http://" + ip + "/api",
body: JSON.stringify({
"devicetype": "leap controller",
"username": user
}),
json: true
}, callback);
};