-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver.js
125 lines (102 loc) · 3.84 KB
/
server.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
const express = require('express');
const cors = require('cors');
const http = require('http');
const path = require('path');
const axios = require('axios');
const bodyParser = require('body-parser');
const EventSource = require("eventsource");
var constants = {}
try {
constants = require('./constants')
} catch (error) {
console.log("Module 'constants' not found, trying Heroku config vars.")
}
const eventListeners = require('./eventListeners.js');
var SSE = require('express-sse');
var sse = new SSE([]);
eventListeners.sse = sse;
const app = express();
app.use(cors())
app.use(bodyParser.json()); // support json encoded bodies
app.use('/', express.static(path.join(__dirname, 'dist')));
const port = process.env.PORT || '3001';
app.set('port', port);
const access_token_1 = process.env.ACCESS_TOKEN_1 || constants.access_token_1;
const device_id_1 = process.env.DEVICE_ID_1 || constants.device_id_1;
const access_token_2 = process.env.ACCESS_TOKEN_2 || constants.access_token_2;
const device_id_2 = process.env.DEVICE_ID_2 || constants.device_id_2;
eventListeners.deviceIds = [ device_id_1, device_id_2 ];
const devices = [
{
device_id: device_id_1,
access_token: access_token_1
}
]
if (device_id_2) {
devices.push({
device_id: device_id_2,
access_token: access_token_2
})
}
const server = http.createServer(app);
for (let device of devices) {
let eventURL = 'https://api.particle.io/v1/devices/' + device.device_id + '/events?access_token=' + device.access_token
var source = new EventSource(eventURL);
/////////////////////////////////////////////////////////
// Add your event listeners here.
// You don't have to change anything else in this file.
/////////////////////////////////////////////////////////
source.addEventListener('buttonStateChanged', eventListeners.handleButtonStateChanged)
source.addEventListener('blinkingStateChanged', eventListeners.handleBlinkingStateChanged)
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
}
// Read a variable. Example:
// GET /api/device/0/variable/buttonState
app.get('/api/device/:id/variable/:name', (req, res) => {
let id = req.params.id;
let variableName = req.params.name;
if (id >= devices.length) {
res.status(500).send({ error: "invalid device id" });
}
else {
let device = devices[id];
let url = 'https://api.particle.io/v1/devices/' + device.device_id + '/' + variableName + '?access_token=' + device.access_token;
axios.get(url)
.then(response => {
res.send({
timeStamp: response.data.coreInfo.last_heard,
result: response.data.result,
});
})
.catch( error => {
res.status(500).send({ error: "could not read current value" });
});
}
})
// Call a function. Example:
// POST /api/device/0/function/blinkRed
app.post('/api/device/:id/function/:name', (req, res) => {
let id = req.params.id;
let functionName = req.params.name;
if (id >= devices.length) {
res.status(500).send({ error: "invalid device id" });
}
else {
let device = devices[id];
let data = { arg: req.body.arg };
let url = 'https://api.particle.io/v1/devices/' + device.device_id + '/' + functionName + '?access_token=' + device.access_token;
axios.post(url, data)
.then( response => {
res.send({ result: response.data.return_value })
})
.catch( error => {
res.status(500).send({ error: "could not execute function " + functionName })
});
}
})
// GET /api/events
app.get('/api/events', sse.init);
server.listen(port, () => {
console.log("app listening on port " + port);
});