-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
45 lines (33 loc) · 1.09 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
var EventEmitter = require('events').EventEmitter;
var util = require('util');
var SSDP = require('node-ssdp');
var Device = require('./lib/Device');
function Dial(){
if(!(this instanceof Dial)) return new Dial();
var self = this;
EventEmitter.call(self);
var ssdp = this.ssdp = new SSDP({
log: false
});
ssdp.on('response', function(msg){
// parse the response
var header = msg.toString('utf-8');
var headerLocation = header.match(/Location:(.*)/i);
if(!(headerLocation && headerLocation[1])) return;
var location = headerLocation[1].trim();
var device = new Device({
location: location
});
device.description()
.then(function(){
self.emit('device', device);
});
});
}
util.inherits(Dial, EventEmitter);
Dial.prototype.discover = function(){
// search Target (ST) defined on page 4 of https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGlhbC1tdWx0aXNjcmVlbi5vcmd8ZGlhbHxneDo1NTA2NDQ5MDZmMzdkNzI0
this.ssdp.search('urn:dial-multiscreen-org:service:dial:1');
};
// it's fine for this to be a singleton
module.exports = Dial();