This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
/
index.js
496 lines (462 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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
const { spawn } = require('child_process')
const Ganache = require('ganache-core')
const IPFS = require('ipfs')
const HttpIPFS = require('ipfs/src/http')
const ipfsAPI = require('ipfs-api')
const fs = require('fs')
const memdown = require('memdown')
const net = require('net')
const path = require('path')
const proxy = require('http-proxy')
const key = fs.readFileSync(`${__dirname}/data/localhost.key`, 'utf8')
const cert = fs.readFileSync(`${__dirname}/data/localhost.cert`, 'utf8')
const PORTS = {
graphql: 4007
}
const portInUse = port =>
new Promise(function(resolve) {
const srv = net
.createServer()
.once('error', () => resolve(true))
.once('listening', () => srv.once('close', () => resolve(false)).close())
.listen(port, '0.0.0.0')
})
const startGanache = (opts = {}) =>
new Promise((resolve, reject) => {
console.log('Starting ganache...')
const ganacheOpts = {
total_accounts: opts.total_accounts || 5,
default_balance_ether: 100,
db_path: `${__dirname}/data/db`,
network_id: 999,
mnemonic:
'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'
// blockTime: 3
}
if (opts.inMemory) {
ganacheOpts.db = memdown()
} else {
try {
fs.mkdirSync(`${__dirname}/data/db`)
} catch (e) {
/* Ignore */
}
}
const server = Ganache.server(ganacheOpts)
const port = 8545
server.listen(port, err => {
if (err) {
return reject(err)
}
console.log(`Ganache listening on port ${port}.`)
resolve(server)
})
})
const startIpfs = async () => {
console.log('Start IPFS')
const ipfs = await IPFS.create({
repo: `${__dirname}/data/ipfs`,
preload: {
enabled: false
},
config: {
Addresses: {
API: '/ip4/0.0.0.0/tcp/5002',
Gateway: '/ip4/0.0.0.0/tcp/8080',
Swarm: []
},
Bootstrap: [],
Discovery: {
MDNS: { Enabled: false },
webRTCStar: { Enabled: false }
}
}
})
const httpAPI = new HttpIPFS(ipfs)
await httpAPI.start()
console.log('Started IPFS')
return httpAPI
}
const populateIpfs = ({ logFiles } = {}) =>
new Promise((resolve, reject) => {
const ipfs = ipfsAPI('localhost', '5002', { protocol: 'http' })
console.log('Populating IPFS...')
ipfs.util.addFromFs(
path.resolve(__dirname, './fixtures'),
{ recursive: true },
(err, result) => {
if (err) {
return reject(err)
}
if (logFiles) {
result.forEach(r => console.log(` ${r.hash} ${r.path}`))
}
console.log(`Populated IPFS with ${result.length} files.`)
resolve(result)
}
)
})
function writeTruffleAddress(contract, network, address) {
const filename = `${__dirname}/../contracts/build/contracts/${contract}.json`
const rawContract = fs.readFileSync(filename)
const Contract = JSON.parse(rawContract)
try {
Contract.networks[network] = Contract.networks[network] || {}
Contract.networks[network].address = address
fs.writeFileSync(filename, JSON.stringify(Contract, null, 2))
} catch (error) {
// Didn't copy contract build files into the build directory?
console.log('Could not write contract address to truffle file')
}
}
const contractsPath = `${__dirname}/../contracts/build`
const writeTruffle = () =>
new Promise(resolve => {
console.log('Writing truffle...')
try {
const rawAddresses = fs.readFileSync(contractsPath + '/contracts.json')
const addresses = JSON.parse(rawAddresses)
if (addresses.Marketplace) {
writeTruffleAddress('V00_Marketplace', '999', addresses.Marketplace)
}
if (addresses.IdentityEvents) {
writeTruffleAddress('IdentityEvents', '999', addresses.IdentityEvents)
}
if (addresses.OGN) {
writeTruffleAddress('OriginToken', '999', addresses.OGN)
}
} catch (e) {
console.log(e)
}
console.log('contracts.json written OK')
resolve()
})
const startSslProxy = () =>
new Promise(resolve => {
console.log('Starting secure proxies...')
const Ports = [
[443, 3000],
[8546, 8545],
[8081, 8080],
[5003, 5002]
]
Ports.map(pair => {
const [src, port] = pair
proxy
.createServer({
xfwd: true,
ws: true,
target: { port },
ssl: { key, cert }
})
.on('error', e => console.error(e.code))
.listen(src)
console.log(`Started proxy ${src} => ${port}`)
})
resolve()
})
const deployContracts = ({ skipIfExists, filename = 'contracts' }) =>
new Promise((resolve, reject) => {
console.log('Deploying contracts...')
const filePath = `${contractsPath}/${filename}.json`
if (skipIfExists && fs.existsSync(filePath)) {
try {
const c = JSON.parse(fs.readFileSync(filePath))
if (Object.keys(c).length) return resolve()
} catch (e) {
/* Regenerate file */
}
}
const originContractsPath = path.resolve(__dirname, '../graphql')
const startServer = spawn(
`node`,
['-r', '@babel/register', 'fixtures/populate-server.js', filename],
{
cwd: originContractsPath,
stdio: 'inherit',
env: process.env
}
)
startServer.on('exit', code => {
if (code === 0) {
console.log('Deploying contracts finished OK.')
resolve()
} else {
reject('Deploying contracts failed.')
reject()
}
})
})
const startRelayer = () =>
new Promise(resolve => {
console.log('Starting relayer server...')
const cwd = path.resolve(__dirname, '../../infra/relayer')
const startServer = spawn(`node`, ['src/app.js'], {
cwd,
stdio: 'inherit',
env: {
...process.env,
NETWORK_ID: '999',
LOG_LEVEL: process.env.LOG_LEVEL || 'NONE'
}
})
startServer.on('exit', () => {
console.log('Relayer stopped.')
})
resolve(startServer)
})
const startBridge = () =>
new Promise(resolve => {
console.log('Starting bridge server...')
const cwd = path.resolve(__dirname, '../../infra/bridge')
const startServer = spawn(`node`, ['src/app.js'], {
cwd,
stdio: 'inherit',
env: {
...process.env,
DATABASE_URL: 'postgres://origin:origin@localhost/origin',
LOG_LEVEL: process.env.LOG_LEVEL || 'NONE'
}
})
startServer.on('exit', () => {
console.log('Bridge stopped.')
})
resolve(startServer)
})
const startMockBridge = () =>
new Promise(resolve => {
console.log('Starting mock bridge server...')
const cwd = path.resolve(__dirname, '../../infra/bridge')
const startServer = spawn(`node`, ['src/mockServer.js'], {
cwd,
stdio: 'inherit',
env: {
...process.env
}
})
startServer.on('exit', () => {
console.log('Mock bridge stopped.')
})
resolve(startServer)
})
const startListener = () =>
new Promise(resolve => {
console.log('Starting listener server...')
const cwd = path.resolve(__dirname, '../../infra/discovery')
const spawnedListener = spawn(
`node`,
[
'src/listener/listener.js',
'--network=localhost',
'--marketplace',
'--identity',
'--elasticsearch',
'--messaging-events'
],
{
cwd,
stdio: 'inherit',
env: {
...process.env,
ELASTICSEARCH_HOST: 'localhost:9200',
DATABASE_URL: 'postgres://origin:origin@localhost/origin',
LOG_LEVEL: process.env.LOG_LEVEL || 'NONE'
}
}
)
spawnedListener.on('exit', () => {
console.log('Listener stopped.')
})
resolve(spawnedListener)
})
const startDiscovery = () =>
new Promise(resolve => {
console.log('Starting discovery server...')
const cwd = path.resolve(__dirname, '../../infra/discovery')
const spawnedDiscovery = spawn(
`node`,
[
'src/apollo/app.js',
'--network=localhost',
'--marketplace',
'--identity',
'--elasticsearch'
],
{
cwd,
stdio: 'inherit',
env: {
...process.env,
NETWORK_ID: '999',
ELASTICSEARCH_HOST: 'localhost:9200',
DATABASE_URL: 'postgres://origin:origin@localhost/origin',
LOG_LEVEL: process.env.LOG_LEVEL || 'NONE'
}
}
)
spawnedDiscovery.on('exit', () => {
console.log('Discovery stopped.')
})
resolve(spawnedDiscovery)
})
const startGraphql = () =>
new Promise(resolve => {
console.log('Starting graphql server...')
const startServer = spawn(`node`, ['-r', '@babel/register', 'server'], {
cwd: path.resolve(__dirname, '../graphql'),
stdio: 'inherit',
env: { ...process.env, GRAPHQL_SERVER_PORT: PORTS.graphql }
})
startServer.on('exit', () => console.log('GraphQL Server stopped.'))
resolve(startServer)
})
const started = {}
let extrasResult
module.exports = async function start(opts = {}) {
if (opts.ganache && !started.ganache) {
const ganacheOpts = opts.ganache === true ? {} : opts.ganache
if (await portInUse(8545)) {
if (!opts.quiet) {
console.log('Ganache already started')
}
} else {
started.ganache = await startGanache(ganacheOpts)
}
}
if (opts.ipfs && !started.ipfs) {
if (await portInUse(5002)) {
if (!opts.quiet) {
console.log('IPFS already started')
}
} else {
started.ipfs = await startIpfs()
}
if (opts.populate && !started.populate) {
started.populate = true
await populateIpfs()
}
}
if (opts.deployContracts && !started.contracts) {
if (!fs.existsSync(`${contractsPath}/contracts.json`)) {
fs.writeFileSync(`${contractsPath}/contracts.json`, '{}')
}
if (!fs.existsSync(`${contractsPath}/tests.json`)) {
fs.writeFileSync(`${contractsPath}/tests.json`, '{}')
}
await deployContracts({
skipIfExists: opts.skipContractsIfExists,
filename: opts.contractsFile
})
started.contracts = true
}
if (opts.writeTruffle) {
await writeTruffle()
}
if (opts.sslProxy) {
await startSslProxy()
}
if (opts.graphqlServer) {
if (await portInUse(PORTS.graphql)) {
if (!opts.quiet) {
console.log('GraphQL Server already started')
}
} else {
started.graphql = await startGraphql()
}
}
if (opts.bridge) {
if (!(await portInUse(5432))) {
console.log('Bridge server requires Postgres to be running on port 5432')
} else if (await portInUse(5000)) {
console.log('Bridge server already started')
} else {
if (!(await portInUse(6379))) {
// Without Redis, bridge server can be used for some actions such
// as reading/writing identity.
console.warn(
'Redis not started. Bridge server will not be fully functional'
)
}
started.bridge = await startBridge()
}
}
if (opts.mockBridge) {
if (await portInUse(5000)) {
if (!opts.quiet) {
console.log('Mock bridge server already started')
}
} else {
started.mockBridge = await startMockBridge()
}
}
if (opts.listener) {
if (!(await portInUse(5432))) {
console.log('Listener requires Postgres to be running on port 5432')
} else if (!(await portInUse(9200))) {
console.log('Listener requires ElasticSearch to be running on port 9200')
} else {
started.listener = await startListener()
}
}
if (opts.discovery) {
if (!(await portInUse(5432))) {
console.log('Discovery requires Postgres to be running on port 5432')
} else if (!(await portInUse(9200))) {
console.log('Discovery requires ElasticSearch to be running on port 9200')
} else if (!(await portInUse(6379))) {
console.log('Discovery requires Redis to be running on port 6379')
} else if (await portInUse(4000)) {
console.log('Discovery Server already started')
} else {
started.discovery = await startDiscovery()
}
}
if (opts.relayer && !started.relayer) {
if (await portInUse(5100)) {
if (!opts.quiet) {
console.log('Relayer already started')
}
} else {
started.relayer = await startRelayer()
}
}
if (opts.extras && !started.extras) {
extrasResult = await opts.extras()
started.extras = true
}
if (process.env.DOCKER) {
// Used to indicate to other services in Docker that the services package
// is complete via wait-for.sh
net.createServer().listen(1111, '0.0.0.0')
}
const shutdownFn = async function shutdown() {
console.log('Shutting services down...')
if (started.ganache) {
await started.ganache.close()
}
if (started.relayer) {
started.relayer.kill('SIGHUP')
}
if (started.graphql) {
started.graphql.kill('SIGHUP')
}
if (started.listener) {
started.listener.kill('SIGHUP')
}
if (started.discovery) {
started.discovery.kill('SIGHUP')
}
if (started.bridge) {
started.bridge.kill('SIGHUP')
}
if (started.mockBridge) {
started.mockBridge.kill('SIGHUP')
}
if (started.ipfs) {
await started.ipfs.stop()
await started.ipfs._ipfs.stop()
}
}
shutdownFn.extrasResult = extrasResult
return shutdownFn
}