-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
141 lines (115 loc) · 2.91 KB
/
server.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
const { EventEmitter } = require('events')
const { Network } = require('./network')
const toBuffer = require('to-buffer')
const protocol = require('rpc-protocol')
const crypto = require('hypercore-crypto')
const assert = require('assert')
const extend = require('extend')
// quick util
const bind = (self, f) => (...args) => f.call(self, ...args)
/**
*/
class Server extends EventEmitter {
/**
*/
static defaults(defaults, ...overrides) {
return extend(true, {
port: 54809,
lookup: false,
announce: true,
ephemeral: false,
}, defaults, ...overrides)
}
/**
*/
constructor(key, opts) {
super()
this.setMaxListeners(0)
if (key && !Buffer.isBuffer(key) && 'object' === typeof key) {
opts = key
key = null
}
if (null === opts || 'object' !== typeof opts) {
opts = {}
}
opts = Object.assign(this.constructor.defaults(), opts)
if ('string' === typeof key || Buffer.isBuffer(key)) {
if (!opts.key && !opts.publicKey) {
opts.publicKey = key
}
}
if (opts.key && !opts.publicKey) {
opts.publicKey = opts.key
delete opts.key
}
if (!opts.publicKey || !opts.secretKey) {
Object.assign(opts, crypto.keyPair())
}
if ('string' === typeof opts.publicKey) {
opts.publicKey = toBuffer(opts.publicKey, 'hex')
}
if ('string' === typeof opts.secretKey) {
opts.secretKey = toBuffer(opts.secretKey, 'hex')
}
assert(Buffer.isBuffer(opts.publicKey), 'public key is not a buffer')
assert(Buffer.isBuffer(opts.secretKey), 'secret key is not a buffer')
this.onconnection = bind(this, this.onconnection)
this.onerror = bind(this, this.onerror)
this.onpeer = bind(this, this.onpeer)
this.publicKey = opts.publicKey
this.secretKey = opts.secretKey
this.discoveryKey = crypto.discoveryKey(this.publicKey)
this.network = new Network(opts)
this.network.on('connection', this.onconnection)
this.network.on('error', this.onerror)
this.network.on('peer', this.onpeer)
this.network.ready(() => {
const { announce, lookup } = opts
this.network.join(this.discoveryKey, { announce, lookup })
})
}
/**
*/
get key() {
return this.publicKey
}
close(callback) {
this.network.close(callback)
}
/**
*/
onerror(err) {
if (err) {
this.emit('error', err)
}
}
/**
*/
onconnection(connection, info, socket) {
this.emit('connection', connection, info, socket)
}
/**
*/
onpeer(peer) {
this.emit('peer', peer)
}
}
/**
*/
function createServer(key, opts, onconnection) {
if ('function' === typeof opts) {
onconnection = opts
opts = null
}
const server = new Server(key, opts)
if ('function' === typeof onconnection) {
server.on('connection', onconnection)
}
return server
}
/**
* Module exports.
*/
module.exports = Object.assign(createServer, {
Server,
})