-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathconfig.js
More file actions
45 lines (36 loc) · 1.26 KB
/
config.js
File metadata and controls
45 lines (36 loc) · 1.26 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
const nest = require('depnest')
const Config = require('ssb-config/inject')
const ssbKeys = require('ssb-keys')
const Path = require('path')
const merge = require('lodash/merge')
const appName = process.env.ssb_appname || 'ssb'
const opts = appName === 'ssb' ? null : null
exports.gives = nest('config.sync.load')
exports.create = (api) => {
var config
return nest('config.sync.load', () => {
if (config) return config
console.log('LOADING config')
config = Config(appName, opts)
config.keys = ssbKeys.loadOrCreateSync(Path.join(config.path, 'secret'))
config = merge(
config,
Connections(config),
Remote(config)
)
return config
})
}
function Connections (config) {
const connections = (process.platform === 'win32')
? undefined // this seems wrong?
: { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth', server: true }] } }
return connections ? { connections } : {}
}
function Remote (config) {
const pubkey = config.keys.id.slice(1).replace(`.${config.keys.curve}`, '')
const remote = (process.platform === 'win32')
? undefined // `net:127.0.0.1:${config.port}~shs:${pubkey}` // currently broken
: `unix:${Path.join(config.path, 'socket')}:~noauth:${pubkey}`
return remote ? { remote } : {}
}