-
Notifications
You must be signed in to change notification settings - Fork 0
/
mds-agency-cli.js
executable file
·219 lines (194 loc) · 6.26 KB
/
mds-agency-cli.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/usr/local/bin/node
/*
Copyright 2019 Ellis and Associates Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const fs = require('fs')
const request = require('request')
const {
argv
} = require('yargs')
require('dotenv').config()
const env = process.env
const log = console.log.bind(console)
async function makeSecureClient() {
// get the OAuth access token
async function getAccessToken() {
return new Promise((resolve, reject) => {
const auth_body = {
client_id: env.CLIENT_ID,
client_secret: env.CLIENT_SECRET,
audience: 'https://sandbox.ladot.io',
grant_type: 'client_credentials'
}
const auth_request = {
method: 'POST',
url: 'https://auth.ladot.io/oauth/token',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify(auth_body)
}
request(auth_request, (error, response, body) => {
if (error) {
reject(err)
} else {
body = JSON.parse(body)
const {
access_token
} = body
resolve(access_token)
}
})
})
}
const access_token = await getAccessToken()
async function sendGet(url) {
log('GET', url)
return new Promise((resolve, reject) => {
const get_request = {
method: 'GET',
url: url,
headers: {
authorization: `Bearer ${access_token}`
}
}
request(get_request, (err, response, body) => {
if (err) {
reject(err)
} else {
resolve(JSON.parse(body))
}
})
})
}
async function sendPost(url, body) {
log('POST', url, body)
return new Promise((resolve, reject) => {
const post_request = {
method: 'POST',
url: url,
headers: {
authorization: `Bearer ${access_token}`,
'content-type': 'application/json'
},
body: body
}
request(post_request, (err, response, body) => {
if (err) {
reject(err)
} else if (response.statusCode >= 300) {
reject(body)
} else {
resolve(JSON.parse(body))
}
})
})
}
const baseUrl = 'https://sandbox.ladot.io/agency/dev'
async function sendVehicle(vehicle) {
const body = JSON.stringify(vehicle)
// log('sending body:', body.length, body.slice(0, 100), '...')
return sendPost(`${baseUrl}/vehicles`, body)
}
async function sendEvent(event) {
const body = JSON.stringify(event)
// log('sending body:', body.length, body.slice(0, 100), '...')
return sendPost(`${baseUrl}/vehicles/${event.telemetry.device_id}/event`, body)
}
async function sendTelemetry(telemetry) {
// accommodate single element, if that's what we were sent
if (!Array.isArray(telemetry)) {
telemetry = [telemetry]
}
const body = JSON.stringify({
data: telemetry
})
// log('sending body:', body.length, body.slice(0, 100), '...')
return sendPost(`${baseUrl}/vehicles/telemetry`, body)
}
async function sendWipe(wipe) {
// log('sending body:', body.length, body.slice(0, 100), '...')
if (!wipe || !wipe.device_id) {
return 'missing device_id'
} else {
return sendGet(`${baseUrl}/admin/wipe/${wipe.device_id}`)
}
}
return Promise.resolve({
sendVehicle,
sendEvent,
sendTelemetry,
sendWipe
})
}
if (argv._.length < 2) {
log('usage: mds-cli [vehicle|event|telemetry] params...')
process.exit(0)
}
if (!env.CLIENT_ID || !env.CLIENT_SECRET) {
log('need CLIENT_ID and CLIENT_SECRET')
process.exit(0)
}
async function main() {
const client = await makeSecureClient()
const payload = argv._[1]
let json
if (payload.endsWith('.json')) {
try {
json = JSON.parse(fs.readFileSync(payload).toString())
} catch (err) {
log('failed to read "' + payload + '" (' + err.message + ')')
process.exit(1)
}
} else {
try {
json = JSON.parse(payload)
} catch (err) {
log('malformed json "' + payload + '" (' + err.message + ')')
process.exit(1)
}
}
const verb = argv._[0]
switch (verb) {
case 'v':
case 'vehicle':
return client.sendVehicle(json)
case 'e':
case 'event':
return client.sendEvent(json)
case 't':
case 'telemetry':
return client.sendTelemetry(json)
case 'w':
case 'wipe':
return client.sendWipe(json)
default:
return Promise.reject('"' + verb + '" is not vehicle, event, telemetry, or wipe')
}
}
main().then((result) => {
log(result)
}, (failure) => {
// TODO use payload response type instead of peering into body
if (failure.slice && failure.slice(0, 2) === '{"') {
failure = JSON.parse(failure)
}
if (failure.error_description) {
log(failure.error_description + ' (' + failure.error + ')')
} else if (failure.result) {
log(failure.result)
} else {
log('failure:', failure)
}
}).catch((err) => {
log('exception:', err.stack)
})