-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistener.js
83 lines (68 loc) · 2.69 KB
/
listener.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
const Tracking = require('tracking-api');
const mqtt = require('mqtt');
const userApi = new Tracking.UserApi();
const deviceApi = new Tracking.DeviceApi();
const MQTT_BROKER = 'mqtts://mqtt.remotethings.co.uk';
const USERNAME = '';
const PASSWORD = '';
// Listens for all new locations using MQTT
// Use this to avoid polling for new locations
function processMessage(topic, message){
let parts = topic.split('/');
let deviceId = parts[3];
let messageType = parts[4];
if (messageType === "datapoints")
{
processNewDatapoint(deviceId, message);
}
else if (messageType === "readings")
{
processNewSensorReading(deviceId, message);
}
}
function processNewSensorReading(deviceId, message){
let reading = JSON.parse(message);
console.log(`Received new reading from device ${deviceId}! ${reading.type}=${reading.value}`);
//Type can be a number of things, for example:
/*
if (reading.type === "temp")
{
// for temp, value is a float:
let temperature = reading.value;
processTemperature(deviceId, temperature);
}
*/
}
function processNewDatapoint(deviceId, message){
let newPoint = JSON.parse(message);
console.log(`Received new point from device ${deviceId}! ${newPoint.location.lat.toFixed(5)},${newPoint.location.lng.toFixed(5)}`+
` alt:${newPoint.altitude || 0 }m, speed:${newPoint.speed || 0} km/h`);
// Do something here with the point https://cp.remotethings.co.uk/docs/#definition-datapoint
}
userApi.userLogin({username: USERNAME, password: PASSWORD}, {}, (err, res) => {
if(err) throw new Error('Login Failed');
const authToken = res.id;
const userId = res.userId;
//Authenticate our clients
userApi.apiClient.defaultHeaders.Authorization = authToken;
deviceApi.apiClient.defaultHeaders.Authorization = authToken;
userApi.userPrototypeGetMqttCredentials(userId, (err, credentials) => {
const client = mqtt.connect(MQTT_BROKER, {
clientId: credentials.clientId,
username: credentials.username,
password: credentials.password,
clean: true // allow messages to be queued up when we're disconnected
});
client.on('connect', function (connack) {
//,'+/status/#','+/control/#'
client.subscribe([
'users/' + userId + '/devices/+/datapoints',
'users/' + userId + '/devices/+/readings'
], {qos:2}, function(err,granted){
if(err) console.error("Failed to subscribe", {err:err});
});
console.log('connected to mqtt - listening for new points');
});
client.on('message', processMessage);
});
});