This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
482 lines (436 loc) · 13.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
import './wdyr'
import {
AppRegistry,
Platform,
PermissionsAndroid,
Linking,
ToastAndroid,
} from 'react-native'
import moment from 'moment'
import Http, { AxiosRequestConfig } from 'axios'
import Logger from 'react-native-file-log'
import { Logger as CommonLogger } from 'shock-common'
import { Provider } from 'react-redux'
import { PersistGate } from 'redux-persist/integration/react'
import React from 'react'
import RNBootSplash from 'react-native-bootsplash'
// @ts-expect-error
import url from 'url'
import { throttledExchangeKeyPair } from './app/store/actions/ConnectionActions'
import * as NavigationService from './app/services/navigation'
import * as Cache from './app/services/cache'
import * as Encryption from './app/services/encryption'
import configureStore, { log, getStore } from './app/store'
import RootStack from './app/navigators/Root'
import { LNURL_SCREEN, LOGIN } from './app/routes'
import WithConnWarning from './app/components/WithConnWarning'
import { hostWasSet, tokenDidInvalidate } from './app/store/actions'
import { DISABLE_ENCRYPTION } from './app/config'
import Loading from './app/screens/Loading'
Logger.setTag('ShockWallet')
Logger.setFileLogEnabled(true)
Logger.setConsoleLogEnabled(__DEV__)
Logger.inject((...content) => {
try {
const s = getStore()
if (s.getState().debug.enabled) {
s.dispatch(log(...content))
}
} catch (e) {
if (e.message.indexOf('You may not call') !== 0) {
throw e
}
}
})
CommonLogger.setLogger({
debug(...msgs) {
Logger.log(...msgs)
},
error(...msgs) {
Logger.log(...msgs)
},
info(...msgs) {
Logger.log(...msgs)
},
log(...msgs) {
Logger.log(...msgs)
},
})
if (Platform.OS === 'android') {
PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
)
PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.READ_EXTERNAL_STORAGE,
)
}
// https://github.com/moment/moment/issues/2781#issuecomment-160739129
moment.locale('en', {
relativeTime: {
future: 'in %s',
past: '%s ago',
s: 'just now',
ss: '%ss',
m: '1m',
mm: '%dm',
h: '1h',
hh: '%dh',
d: '1d',
dd: '%dd',
M: 'a month',
MM: '%dM',
y: 'a year',
yy: '%dY',
},
})
const nonEncryptedRoutes = [
'/api/security/exchangeKeys',
'/healthz',
'/ping',
'/api/lnd/wallet/status',
'/api/gun/auth',
]
AppRegistry.registerComponent('shockwallet', () => ShockWallet)
/**
* @typedef {object} State
* @prop {boolean} ready
*/
const { persistor, store } = configureStore()
/**
* @augments React.PureComponent<{}, State,never>
*/
export default class ShockWallet extends React.PureComponent {
state = {
ready: false,
}
/**
* handleUrl is called when a protocol link brings the app back
* from background
* it is not called when the protocol link opens the app when closed
* @param {{url: string}} e */
handleUrl = e => {
ToastAndroid.show('Protocol link detected', 1500)
NavigationService.navigate(LNURL_SCREEN, { protocol_link: e.url })
}
async componentDidMount() {
const nodeURL = await Cache.getNodeURL()
if (nodeURL !== null) {
Http.defaults.url = `http://${nodeURL}`
store.dispatch(hostWasSet(nodeURL))
}
RNBootSplash.hide({ duration: 250 })
this.setState({
ready: true,
})
Linking.addEventListener('url', this.handleUrl)
const url = await Linking.getInitialURL()
if (url) {
this.handleUrl({ url })
}
}
componentWillUnmount() {
Linking.removeEventListener('url', this.handleUrl)
}
render() {
if (!this.state.ready) {
return null
}
let rootNode = null
if (__DEV__) {
// Special care must be had inside <WithConnWarning />: don't remount the
// RootStack
rootNode = (
<WithConnWarning>
<RootStack ref={NavigationService.setTopLevelNavigator} />
</WithConnWarning>
)
} else {
rootNode = <RootStack ref={NavigationService.setTopLevelNavigator} />
}
return (
<Provider store={store}>
<PersistGate loading={<Loading />} persistor={persistor}>
{rootNode}
</PersistGate>
</Provider>
)
}
}
const cache = new Map()
/**
* @param {AxiosRequestConfig} config
*/
const getAuthorizationToken = async config => {
if (!config.headers.Authorization) {
try {
const token = await Cache.getToken()
// eslint-disable-next-line require-atomic-updates
return token
} catch (err) {
Logger.log(`Unable to retrieve token: ${err.message}`)
Logger.log(JSON.stringify(err))
return null
}
}
return null
}
// Adds an Authorization token to the header before sending any request
Http.interceptors.request.use(async config => {
try {
const { connection } = store.getState()
try {
const nodeURL = await Cache.getNodeURL()
if (config.url && !config.url.includes('http') && nodeURL) {
// eslint-disable-next-line require-atomic-updates
config.baseURL = `http://${nodeURL}`
}
} catch (err) {
Logger.log(`Unable to retrieve base URL: ${err.message}`)
Logger.log(JSON.stringify(err))
}
// Logger.log('Device ID:', connection.deviceId)
if (!config.headers['X-ShockWallet-Device-ID'] && connection.deviceId) {
// eslint-disable-next-line require-atomic-updates
config.headers.common['X-ShockWallet-Device-ID'] = connection.deviceId
}
/**
* @param {number} status
*/
Http.defaults.validateStatus = status => status < 300 || status === 304
const path = url.parse(config.url).pathname
// eslint-disable-next-line require-atomic-updates
config.headers.common['shock-cache-hash'] = 'N/A'
if (cache.has(path)) {
const cachedData = cache.get(path)
// eslint-disable-next-line require-atomic-updates
config.headers.common['shock-cache-hash'] = cachedData.hash
}
if (
connection.APIPublicKey &&
!nonEncryptedRoutes.includes(path) &&
//config.data &&
!DISABLE_ENCRYPTION
) {
const stringifiedData = config.data ? JSON.stringify(config.data) : ''
const authToken = await getAuthorizationToken(config)
const {
encryptedData,
encryptedKey,
iv,
encryptedToken,
} = await Encryption.encryptData(
stringifiedData,
connection.APIPublicKey,
authToken,
)
if (authToken) {
// eslint-disable-next-line require-atomic-updates
config.headers.common['X-Shock-Encryption-Token'] = encryptedToken
// eslint-disable-next-line require-atomic-updates
config.headers.common['X-Shock-Encryption-IV'] = iv
// eslint-disable-next-line require-atomic-updates
config.headers.common['X-Shock-Encryption-Key'] = encryptedKey
}
// eslint-disable-next-line require-atomic-updates
config.data = {
data: encryptedData,
encryptionKey: encryptedKey,
token: encryptedToken,
iv,
}
// @ts-expect-error
// eslint-disable-next-line require-atomic-updates
config.originalData = stringifiedData
}
if (DISABLE_ENCRYPTION && !config.headers.common.Authorization) {
const authToken = await getAuthorizationToken(config)
// eslint-disable-next-line require-atomic-updates
config.headers.common.Authorization = `Bearer ${authToken}`
}
return config
} catch (err) {
Logger.log(err && err.response ? err.response : err)
return config
}
})
/**
* @param {import('axios').AxiosResponse<any>} response
* @returns {Promise<import('axios').AxiosResponse<any>>}
*/
const decryptResponse = async response => {
try {
// const decryptionTime = Date.now()
const { connection } = store.getState()
const path = url.parse(response?.config.url).pathname
// Logger.log('[ENCRYPTION] Decrypting Path:', path)
// if (response.status === 304) {
// Logger.log('Using cached response for: ', path)
// const cachedData = cache.get(path)
// if (cachedData?.response) {
// return { ...cachedData.response, status: 304 }
// }
// }
if (DISABLE_ENCRYPTION) {
return response
}
if (
connection.APIPublicKey &&
!nonEncryptedRoutes.includes(path) &&
response.data.encryptedData &&
connection.sessionId
) {
const decryptedKey = await Encryption.decryptKey(
response.data.encryptedKey,
connection.sessionId,
)
const { decryptedData } = await Encryption.decryptData({
encryptedData: response.data.encryptedData,
key: decryptedKey,
iv: response.data.iv,
})
// Logger.log(`[HTTP] Decrypted data in: ${Date.now() - decryptionTime}ms`)
const decryptedResponse = {
...response,
data: JSON.parse(decryptedData),
}
if (response.config.method?.toLowerCase() === 'get') {
cache.set(path, {
hash: response.data.metadata.hash,
response: decryptedResponse,
})
}
return decryptedResponse
}
if (
path !== '/api/security/exchangeKeys' &&
response.headers['x-session-id']
) {
Logger.log(
'[HTTP] Exchanging Keys...',
!!connection.APIPublicKey,
!!response.data.encryptedData,
!!connection.sessionId,
path,
)
cache.clear()
await throttledExchangeKeyPair({
deviceId: connection.deviceId,
sessionId: response.headers['x-session-id'],
cachedSessionId: connection.sessionId,
baseURL: response.config.baseURL,
})(store.dispatch, store.getState, {})
cache.clear()
}
return response
} catch (err) {
Logger.log(err)
throw err
}
}
// Logging for HTTP responses
Http.interceptors.response.use(
async response => {
const decryptedResponse = await decryptResponse(response)
try {
// if (
// decryptedResponse &&
// decryptedResponse.status !== undefined &&
// decryptedResponse.status !== 304
// ) {
// const method = decryptedResponse.config.method
// ? decryptedResponse.config.method
// : 'common'
// Logger.log(
// `<--- ${method.toUpperCase()} ${decryptedResponse.config.url} (${
// decryptedResponse.status
// })`,
// )
// Logger.log(
// 'Server Headers:',
// decryptedResponse.headers
// ? JSON.stringify(decryptedResponse.headers)
// : null,
// )
// Logger.log(
// 'Response:',
// decryptedResponse.data
// ? JSON.stringify(decryptedResponse.data)
// : null,
// )
// }
return decryptedResponse
} catch (err) {
Logger.log(err)
return decryptedResponse
}
},
async error => {
if (error && error.response) {
const decryptedResponse = await decryptResponse(error.response)
if (typeof decryptedResponse.data === 'string') {
decryptedResponse.data = JSON.parse(decryptedResponse.data)
}
const { connection } = store.getState()
const encryptionErrors = ['deviceId']
if (
error.response.status === 401 &&
!encryptionErrors.includes(decryptedResponse.data.field)
) {
Logger.log('An error has occurred:', decryptedResponse.data)
Logger.log('Clearing auth data')
if (
decryptedResponse.data.field &&
decryptedResponse.data.field === 'lnd_locked'
) {
const addr = await Cache.getNodeURL()
await Cache.writeStoredAuthData(null)
store.dispatch(tokenDidInvalidate())
await Cache.writeNodeURLOrIP(addr)
store.dispatch(hostWasSet(addr || ''))
NavigationService.navigate(LOGIN)
} else {
await Cache.writeStoredAuthData(null)
}
//
}
if (encryptionErrors.includes(decryptedResponse.data.field)) {
Logger.log(
'[ENCRYPTION] An error has occurred:',
decryptedResponse.data,
)
cache.clear()
await throttledExchangeKeyPair({
deviceId: connection.deviceId,
sessionId: decryptedResponse.headers['x-session-id'],
cachedSessionId: connection.sessionId,
baseURL: decryptedResponse.config.baseURL,
})(store.dispatch, store.getState, {})
cache.clear()
// eslint-disable-next-line require-atomic-updates
decryptedResponse.config.headers['x-shockwallet-device-id'] =
connection.deviceId
if (
// @ts-expect-error
decryptedResponse.config.originalData
) {
// @ts-expect-error
const response = await Http[
decryptedResponse.config.method?.toLowerCase() ?? 'get'
](
decryptedResponse.config.url,
// @ts-expect-error
JSON.parse(decryptedResponse.config.originalData),
decryptedResponse.config.headers,
)
return Promise.resolve(response)
}
}
const errorData = { ...error, response: decryptedResponse }
if (decryptedResponse.data.errorMessage) {
errorData.message = decryptedResponse.data.errorMessage
}
return Promise.reject(errorData)
}
return Promise.reject(error)
},
)