-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
72 lines (59 loc) · 2.2 KB
/
app.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
const express = require('express')
const path = require('path')
const app = express()
const router = express.Router()
const bodyParser = require('body-parser')
const hub = require('./app.iothub.js')
const port = 3000
let connectionString = ''
app.use(bodyParser.urlencoded({ extended: true }))
app.use('/api', router)
app.use(express.static('wwwroot'))
router.get('/', (req, res, next) => res.sendFile('index.html', { root: path.join(__dirname, 'wwwroot/index.html') }))
router.get('/connection-string', (req, res) => {
if (connectionString && connectionString.length > 0) {
const hubRegex = /(?<=HostName=).*(?=;SharedAccessKeyName)/i.exec(connectionString)
const hubName = hubRegex.length > 0 ? hubRegex[0] : ''
res.json(hubName)
} else {
res.json('not configured')
}
})
router.post('/connection-string', (req, res) => {
connectionString = req.body.connectionstring
if (connectionString && connectionString.length > 0) {
const hubRegex = /(?<=HostName=).*(?=;SharedAccessKeyName)/i.exec(connectionString)
const hubName = hubRegex.length > 0 ? hubRegex[0] : ''
res.json(hubName)
} else {
res.json('not configured')
}
})
router.get('/getDevices', (req, res) => {
if (connectionString.length > 0) {
hub.getDeviceList(connectionString, list => res.json(list))
} else {
res.json({})
}
})
router.get('/getInterfaces', async (req, res) => {
const result = await hub.getInterfaces(connectionString, req.query.deviceId)
console.log(`getInterfaces on ${req.query.deviceId}`)
res.json(result)
})
router.get('/getInterfaceDetails', async (req, res) => {
const result = await hub.getInterfaceDetails(connectionString, req.query.urn)
console.log(`getInterfaceDetails on ${req.query.urn}`)
res.json(result)
})
router.post('/runCommand', async (req, res) => {
const result = await hub.runCommand(
connectionString,
req.query.deviceId,
req.query.interfaceName,
req.query.command,
req.query.param)
console.log(`runCommand on ${req.query.deviceId}/${req.query.interfaceName}/${req.query.command}/${req.query.param}\r\nResponse: ${JSON.stringify(result)}`)
res.json(result)
})
app.listen(port, () => console.log(`IoT Express app listening on port ${port}`))