-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
281 lines (265 loc) · 9.2 KB
/
index.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
'use strict'
const bsh = require('./lib/bsh-const.js')
const bshAppliance = require('./lib/bsh-appliance.js')
const request = require('request')
const EventEmitter = require('events')
const debug = console.log
var generateError = (code => { return {
nr: code,
error: bsh.errors[code].resp || 'Unknown',
text: bsh.errors[code].desc || 'Unknown'
}})
// Check whether a given scope is valid or throw an error
function bshCheckScope(scope) {
let newScope = scope.split(' ')
for (let i in newScope) {
if (bsh.scopes[newScope[i]] === undefined) {
let sub = newScope[i].split('-')
if (sub[0] !== undefined) {
if (bsh.scopes[sub[0]] === undefined || bsh.scopes[sub[0]].find(x => x === sub[1]) === undefined) {
throw(new Error('unknown scope: ' + newScope[i]))
delete newScope[i]
}
}
}
}
return newScope.join(' ')
}
/** Main class for the Home-Connect API */
class BSH extends EventEmitter {
/** Create a new API instance
* @constructor
* @param {string} client - The client API key, as found on the developer portal
* @param {string} url - The base URL (excluding end '/')
* @param {string} redirect - The redirect URL, as registered on the developer portal
* @param {string} scope - Space separated string with the requested access scope
*/
constructor(client, url, redirect, scope) {
super()
this.debug = debug
this.client = client
this.baseUrl = url || 'https://simulator.home-connect.com/'
this.redirect = redirect || 'https://apiclient.home-connect.com/o2c.html'
this.scope = bshCheckScope(scope || 'IdentifyAppliance Monitor')
this.access_token
this.refresh_token
this.state_token
this.appliances
}
/**
* Provides Home-Connect defined authentication URL with parameters
* @returns {string} OUath2 authorization URL
*/
getAuthUrl() {
this.state_token = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
let r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8); return v.toString(16)
})
let params = [
'client_id=' + this.client,
'redirect_uri=' + this.redirect,
'response_type=code',
'scope=' + this.scope,
'state=' + this.state_token
]
return this.baseUrl + '/security/oauth/authorize' + '?' + params.join('&')
}
/**
* Request Oauth2 autorization code
* @param {string} auth_url - authorization url (if not provided, will be generated with getAuthUrl)
* @returns {string} - received 'code'
*/
authorize(auth_url) {
return new Promise((resolve, reject) => {
let url = auth_url || this.getAuthUrl()
console.log(url)
request
.get({ url: url })
.on('error', (err) => reject(err))
.on('response', (resp) => {
if (resp.statusCode === 200) {
let redirect = resp.request.href
let err = redirect.indexOf('error=')
if (err >= 0) {
reject(decodeURI(redirect.slice(err)))
} else {
let result = redirect.match(/code=([^\&]*)/)[1]
if (this.state !== undefined) {
let state = redirect.match(/state=([^\&]*)/)[1]
if (state !== this.state) {
reject(new Error('Invalid state returned'))
}
}
resolve(result)
}
} else {
reject(new Error('Invalid response ' + resp.statusCode))
}
})
})
}
/**
* Request a new access token or refresh the token
* @param {string} refresh - refresh token, if undefined a new access token will be requested
* @returns {object} - an object containing access & refresh token
*/
getTokens(refresh) {
return new Promise((resolve, reject) => {
let form = {
client_id: this.client,
redirect_uri: this.redirect
}
if (refresh === undefined) {
// refresh token request
form.grant_type = 'refresh_token'
form.refresh_token = this.refresh_token
} else {
// access token request
form.grant_type = 'authorization_code'
form.code = refresh
}
request
.post({ url: this.baseUrl + '/security/oauth/token', form: form, headers: { 'Content-Type': 'application/x-www-form-urlencoded' }})
.on('error', (err) => {
this.emit('token.invalid')
reject(new Error(err))
})
.on('response', resp => {
resp.on('data', (data) => {
let result = JSON.parse(data.toString())
if (resp.statusCode === 200) {
if (result.access_token !== undefined && result.refresh_token !== undefined) {
this.access_token = result.access_token
this.refresh_token = result.refresh_token
let now = new Date()
let valid = Number(result.expires_in)
result.requested = now
result.expires = new Date(now.getTime() + valid * 1000)
delete result.id
delete result.expires_in
this.emit('token.available', result)
resolve(result)
} else {
this.emit('token.invalid')
reject(new Error('Invalid reply'))
}
} else {
this.emit('token.invalid')
reject(new Error(result.error + ' (' + result.error_description + ')'))
}
})
})
})
}
/** Refresh the access token */
refreshTokens() {
this.debug('Token refresh')
return this.getTokens()
}
/** Override the access and refresh tokens */
setTokens(access, refresh) {
this.access_token = access
this.refresh_token = refresh
}
/**
* Get data from the home-connect server (get calls only)
* @param {object} api - the api part of the URL to call, e.g. '/api/homeappliances' and the call type
* @param {object} params - the parameters that will be substituted in the URL
* @param {string} body - optional body for the request
* @returns {Promise} - result of the call
*/
async _executeCall(api, params, body) {
return new Promise((resolve, reject) => {
// Check if there is a valid access token
if (this.access_token === undefined) {
reject(new Error('No token set'))
}
// Expand the parameters into the URL
let url = this.baseUrl + bsh.expandUrl(api.url, params)
// Make an HTTP request (get, put, delete)
let func = eval('request.' + api.http)
func({ url: url, body: body, headers:
{ 'Accept': 'application/vnd.bsh.sdk.v1+json',
'Content-Type': 'application/vnd.bsh.sdk.v1+json'
}
}).auth(null, null, true, this.access_token)
.on('error', (err) => reject(err))
.on('response', (resp) => {
if (resp.statusCode === 204) {
resolve('{ "data": "OK" }') // always return JSON
}
resp.on('data', (data) => {
let result = data.toString()
if (resp.statusCode !== 200) {
if (resp.statusCode === 401) { // token has expired? refresh token
this.refreshTokens()
.then(resolve(this._executeCall(api, params, body)))
.catch(err => { // token refresh failed
reject(err)
})
} else {
let err = generateError(resp.statusCode)
try {
result = JSON.parse(result)
err.detail = result.error || result
} catch (e) {
err.detail = result
}
reject(err)
}
} else {
resolve(result)
}
})
})
})
}
/**
* Return the (promise of) list of appliances
* @param {boolean} force - false: read from cache; true: read from server
* @returns {Promise} - An array with appliance objects
*/
async getAppliances(force) {
try {
let result
if (this.appliances === undefined || force) {
result = await this._executeCall(bsh.api.homeappliances.getList)
result = JSON.parse(result)
if (result.data !== undefined && result.data.homeappliances !== undefined) {
result = await result.data.homeappliances.reduce(
(obj, item) => { let idx = item.haId; delete item.haId; obj[idx] = new bshAppliance(this, idx, item); return obj }, {}
)
} else {
result = Promise.reject('invalid format')
}
this.appliances = result
} else {
result = Promise.resolve(this.appliances)
}
return result
} catch(err) {
return Promise.reject(err)
}
}
/**
* Return the (promise of) list of appliances
* @param {string} haId - Home Appliance identifier
* @returns {Promise} - An array with appliance objects
*/
async getAppliance(haId) {
if (this.appliance !== undefined && this.appliance[haId] !== undefined) {
return Promise.resolve(this.appliances[haId])
} else {
try {
let result = await this.getAppliances(true)
if (result[haId] === undefined) {
return Promise.reject('Unknown appliance')
} else {
return Promise.resolve(result[haId])
}
} catch(err) {
return Promise.reject(err)
}
}
}
}
module.exports = BSH