-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
424 lines (417 loc) · 14.9 KB
/
index.js
File metadata and controls
424 lines (417 loc) · 14.9 KB
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
import os from 'os'
import fs from 'fs'
import path from 'path'
import crypto from 'crypto'
import assert from 'assert'
import { NanoresourcePromise, Nanoresource } from 'nanoresource-promise/emitter'
import { USwarm } from '@uswarm/core'
import dswarm from 'dswarm'
import pump from 'pump'
export default class DWebIdentity extends Nanoresource {
constructor (opts = {}) {
super()
this.dhtOpts = opts.dhtOpts || null
this.seq = opts.seq || 0
this.homeDir = opts.homeDir || os.homeDir()
this.idDir = path.join(this.homeDir, opts.idDir || 'identities')
this.user = opts.user
this.userIdDir = path(this.idDir, this.user)
this.iddb = null
this.dht = null
this.key = opts.key || null
this.dk = crypto.createHash('sha256'.update(`${this.user}`).digest())
this.secretKey = null
this.currentKeypair = opts.currentKeypair || null
this.keypair = null
this.deviceDir = path.join(this.userIdDir, opts.deviceDir || 'devices')
this.isReady = false
this.isMaster = false
this.localSlaveKey = null
}
async _open () {
const key = (this.key !== null) ? this.key : null
this.iddb = new DappDb(this.userIdDir, key, {
valueEncoding: 'json'
})
this.dht = new USwarm(this.dhtOpts || {
ephemeral: false
})
await new Promise((resolve, reject) => {
this.dht.on('listening', () => {
this.iddb.ready(err => {
if (err) return reject(err)
if (this.key === null) {
this.isMaster = true
this.key = this.iddb.local.key
this.secretKey = this.iddb.local.secretKey
this.keypair = { publicKey: this.key, secretKey: this.secretKey }
this.isReady = true
return resolve(null)
} else {
this.isMaster = false
this.secretKey = null
this.keypair = null
this.localSlaveKey = this.iddb.local.key
this.isReady = true
swarm.join(key, { lookup: true, announce: true })
swarm.on('connection', (socket, details) => {
pump(socket, this.iddb.replicate({ live: true }), socket)
return resolve(null)
})
}
})
})
})
}
_isAuthorized () {
const { iddb, isMaster, isReady, localSlaveKey } = this
if (!isReady) await this.open()
if (!isMaster && localSlaveKey !== null && isReady) {
iddb.authorized(localSlaveKey, (err, auth) => {
if (err) return false
else if (auth === true) return true
else return false
})
} else if (isMaster) {
return true
} else if (!isMaster && !localSlaveKey) {
return false
}
}
async register () {
const { dht, iddb, keypair, dk, user, isMaster, isReady } = this
if (!isReady) await this.open()
const { publicKey, secretKey } = keypair
const uB = Buffer.from(user)
return new Promise((resolve, reject) => {
if (this._isAuthorized() && isMaster && this.checkUserAvailability()) {
dht.muser.put(uB, { dk, keypair }, (err, { key, ...info }) => {
if (err) return reject(err)
if (key) {
const defaultIdentityPrefix = '/identities/default'
const data = { user, dk, publicKey, timestamp: new Date().toISOString() }
const d = JSON.stringify(data)
iddb.put(defaultIdentityPrefix, d, err => {
if (err) return reject(err)
})
const resolveData = { data: d, secretKey }
return resolve(resolveData)
}
})
} else {
return reject(new Error('registration requires authorization to the master identity document.'))
}
})
}
checkUserAvailability () {
const { user, isReady } = this
if (!isReady) await this.open()
const uB = Buffer.from(user)
dht.on('listening', uB => {
dht.muser.get(uB, (err, value) => {
if (err) return true
else return false
})
})
}
async getDefaultUser () {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
iddb.get('/identities/default', (err, nodes) => {
if (err) return reject(err)
if (nodes) {
let len = nodes.length
let nP = len - 1
return resolve(nodes[nP].value)
}
})
})
}
async getSeq () {
const { dht, user, isReady } = this
if (!isReady) await this.open()
const uB = Buffer.from(user)
return new Promise((resolve, reject) => {
dht.on('listening', uB => {
dht.muser.get(uB, (err, value) => {
if (err) return reject(new Error(err))
if (value) {
const { seq } = value
return resolve(seq)
}
})
})
})
}
async addDevice (label) {
const { iddb, user, isMaster, isReady } = this
if (!isReady) await this.open()
const deviceId = crypto.randomBytes(32)
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document'))
const cwd = DEVICE_DIR
fs.stat(cwd, (err, stat) => {
if (err) fs.mkdir(cwd)
})
if (isMaster) label = 'master'
const deviceFilename = `${deviceId}.device`
const deviceFile = path.join(cwd, deviceFilename)
fs.stat(deviceFile, (err, stat) => {
if (err) {
const deviceFileData = { deviceId, label, user }
const dfd = JSON.stringify(deviceFileData)
fs.writeFile(deviceFile, dfd)
if (isMaster) const deviceTreeKey = '!devices!master'
else const deviceTreeKey = `/devices/${deviceId}`
iddb.put(deviceTreeKey, dfd, err => {
if (err) return reject(err)
})
return resolve({
dfd
})
} else {
return reject(new Error('DEVICE EXISTS'))
}
})
})
}
getDevices() {
const { iddb, isReady } = this
if (!isReady) this.open()
return new Promise((resolve, reject) => {
iddb.list('/devices/', (err, list) => {
if (err) return reject(err)
return resolve(list.map(n => n.value))
})
})
}
async addSubIdentity (label, idData) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document'))
if (!idData.username) return reject(new Error('idData must include a username.'))
if (!idData.platform) return reject(new Error('idData must include a platform.'))
if (!idData.address) return reject(new Error('idData must include an address.'))
if (!idData.publicKey) return reject(new Error('idData must include a publicKey.'))
const putKey = `/identities/${label}`
const { platform, address, username, publicKey } = idData
const timestamp = new Date().toISOString()
const data = { label, platform, address, username, publicKey, timestamp }
const d = JSON.stringify(data)
iddb.put(putKey, d, err => {
if (err) return reject(new Error(err))
else return resolve()
})
})
}
async addIdentitySecret (label, secretKey) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document.'))
const idPutKey = `/identities/${label}`
const secretPutKey = `/identities/${label}/SECRET`
iddb.put(idPutKey, secretKey, err => {
if (err) return reject(new Error(err))
else return resolve()
})
})
}
async getSecret (label) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
iddb.get(`/identities/${label}/SECRET`, (err, nodes) => {
if (err) return reject(new Error(err))
if (nodes) {
let len = nodes.length
let nP = len - 1
return resolve(nodes[nP].value)
}
})
})
}
async getSubIdentity (label) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
iddb.get(`/identities/${label}`, (err, nodes) => {
if (err) return reject(new Error(err))
if (nodes) {
let len = nodes.length
let nP = len - 1
return resolve(nodes[nP].value)
}
})
})
}
async removeIdentity (label) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document.'))
if (label === 'default') return reject(new Error('CANNOT_DEL_DEFAULT'))
const delKey = `/identities/${label}`
const delKeySecret = `/identities/${label}/SECRET`
iddb.del(delKey)
iddb.del(delKeySecret)
return resolve()
})
}
async getDb () {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve => {
if (iddb) return resolve(iddb)
else return reject()
}))
}
doesDefaultExist () {
const { iddb, isReady } = this
if (!isReady) await this.open()
const defaultKey = '/identities/default'
iddb.get(defaultKey, (err, nodes) => {
if (err) return false
if (nodes[0]) return true
})
}
getRemoteUsers() {
const { iddb, isReady } = this
if (!isReady) this.open()
return new Promise((resolve, reject) => {
iddb.list('/users/', (err, list) => {
if (err) return reject(err)
return resolve(list.map(n => n.value))
})
})
}
async getRemoteUser (user) {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
iddb.get(`/users/${user}`, (err, nodes) => {
if (err) return reject(err)
if (nodes) {
let len = nodes.length
let nP = len - 1
return resolve(nodes[nP].value)
}
})
})
}
async addUserData (opts) {
const { iddb, user, isReady } = this
if (!isReady) this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID.'))
if (!opts.avatar) return reject(new Error('Opts must include an avatar.'))
if (!opts.bio) return reject(new Error('Opts must include a bio.'))
if (!opts.location) return reject(new Error('Opts must include a location.'))
if (!opts.url) return reject(new Error('Opts must include a URL.'))
if (!opts.displayName) return reject(new Error('Opts must include a display name.'))
if (this.doesDefaultExist()) {
const { avatar, bio, location, url, displayName, bkgImage } = opts
const d = JSON.stringify(data)
const userDataKey = "/user"
iddb.put(userDataKey, d, err => {
if (err) return reject(new Error(err))
else return resolve(null)
})
} else {
return reject(new Error('Default record does not exist or this ID instance has no DB.'))
}
})
}
async addRemoteUser (opts) {
const { iddb, user, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document.'))
if (!opts.username) return reject(new Error('opts must include a username of remote user'))
if (!opts.publicKey) return reject(new Error('opts must include the publicKey of the remote user'))
if (!opts.dk) return reject(new Error('opts must include the discoveryKey of the remote user'))
const { username, dk, publicKey } = opts
if (typeof username !== 'string') return reject(new Error('username must be a string'))
if (typeof dk !== 'string') return reject(new Error('dk must be a string'))
if (typeof publicKey !== 'string') return reject(new Error('publicKey must be a string'))
const putUserKey = `/users/${username}`
const data = { username, publicKey, dk }
const d = JSON.stringify(data)
iddb.put(putUserKey, d, err => {
if (err) return reject(err)
})
return resolve()
})
}
updateRegistration () {
const { dht, iddb, currentKeypair: keypair, seq, dk, user, isReady } = this
const opts = { seq, keypair, dk }
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this ID document.'))
if (!this.isMaster) return reject(new Error('Only the master can update registration on the DHT.'))
dht.on('listening', () => {
const uB = Buffer.from(user)
dht.muser.put(uB, { keypair, dk, seq }, (err, { key, ...info }) => {
if (err) return reject(err)
if (key) {
const defaultIdentityPrefix = '/identities/default'
const data = { user, dk, publicKey, timestamp: new Date().toISOString() }
const d = JSON.stringify(data)
iddb.put(defaultIdentityPrefix, d, err => {
if (err) return reject(err)
})
return resolve()
}
})
})
})
}
async getMasterDevice () {
const { iddb, isReady } = this
if (!isReady) await this.open()
return new Promise((resolve, reject) => {
iddb.get('!devices!master', (err, nodes) => {
if (err) return reject(err)
if (nodes) {
let len = nodes.length
let nP = len - 1
return resolve(nodes[nP].value)
}
})
})
}
async addAppData (opts) {
const { iddb, user, isReady } = this
if (!isReady) this.open()
return new Promise((resolve, reject) => {
if (!this._isAuthorized()) return reject(new Error('You are not authorized to write to this identity document.'))
if (!opts.appName) return reject(new Error('You must include an appName in opts'))
if (!opts.dataType) return reject(new Error('You must include a dataType in opts'))
if (!opts.data) return reject(new Error('You must include data in opts'))
if (!opts.keyName) return reject(new Error('You must include a keyName in opts'))
const { appName, dataType, data, keyName } = opts
const putKey = `/apps/${appName}/${dataType}/${keyName}`
const d = JSON.stringify(data)
iddb.put(putKey, d, err => {
if (err) return reject()
return resolve()
})
})
}
async getUserData () {
const { iddb, user, isReady } = this
if (!isReady) this.open()
return new Promise((resolve, reject) => {
iddb.get('/user', (err, nodes) => {
if (err) return reject(new Error(err))
if (nodes) {
let len = nodes.length - 1
return resolve(nodes[len].value)
}
})
})
}
}