client.js
1.7 KB
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
var util = require('util');
var events = require('events');
var WebSocket = require('faye-websocket');
module.exports = Client;
function Client(req, socket, head) {
this.ws = new WebSocket(req, socket, head);
this.ws.onmessage = this.message.bind(this);
this.ws.onclose = this.close.bind(this);
this.id = this.uniqueId('ws');
}
util.inherits(Client, events.EventEmitter);
Client.prototype.message = function message(event) {
// console.log('... Incoming %s ...', event.type);
var data = this.data(event);
if(this[data.command]) return this[data.command](data);
};
Client.prototype.close = function close(event) {
if(this.ws) {
this.ws.close();
this.ws = null;
}
this.emit('end', event);
};
// Commands
Client.prototype.hello = function hello() {
this.send({
command: 'hello',
protocols: [
'http://livereload.com/protocols/official-7'
],
serverName: 'tiny-lr'
});
};
Client.prototype.info = function info(data) {
this.plugins = data.plugins;
this.url = data.url;
};
// Server commands
Client.prototype.reload = function reload(files) {
files.forEach(function(file) {
console.log('... Reload %s ...', file);
this.send({
command: 'reload',
path: file,
liveCss: true,
liveJs: true
});
}, this);
};
// Utilities
Client.prototype.data = function _data(event) {
var data = {};
try {
data = JSON.parse(event.data);
} catch (e) {}
return data;
};
Client.prototype.send = function send(data) {
this.ws.send(JSON.stringify(data));
};
var idCounter = 0;
Client.prototype.uniqueId = function uniqueId(prefix) {
var id = idCounter++;
return prefix ? prefix + id : id;
};