You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.4 KiB
JavaScript
120 lines
3.4 KiB
JavaScript
5 years ago
|
var Netflux = require("netflux-websocket");
|
||
|
var WebSocket = require("ws"); // jshint ignore:line
|
||
|
var nThen = require("nthen");
|
||
|
|
||
|
var Util = require("../../www/common/common-util");
|
||
|
var Rpc = require("../../www/common/rpc");
|
||
|
|
||
|
var Nacl = require("tweetnacl");
|
||
|
|
||
|
var makeKeys = function () {
|
||
|
var keys = Nacl.sign.keyPair.fromSeed(Nacl.randomBytes(Nacl.sign.seedLength));
|
||
|
return {
|
||
|
secret: Nacl.util.encodeBase64(keys.secretKey),
|
||
|
public: Nacl.util.encodeBase64(keys.publicKey),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
var Client = module.exports;
|
||
|
|
||
|
var createNetwork = Client.createNetwork = function (url, cb) {
|
||
|
var CB = Util.once(cb);
|
||
|
|
||
|
var info = {};
|
||
|
|
||
|
Netflux.connect(url, function (url) {
|
||
|
info.websocket = new WebSocket(url)
|
||
|
.on('error', function (err) {
|
||
|
console.log(err);
|
||
|
})
|
||
|
.on('close', function (err) {
|
||
|
console.log("close");
|
||
|
console.log(err);
|
||
|
});
|
||
|
return info.websocket;
|
||
|
}).then(function (network) {
|
||
|
info.network = network;
|
||
|
CB(void 0, info);
|
||
|
}, function (err) {
|
||
|
CB(err);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
var die = function (client) {
|
||
|
var disconnect = Util.find(client, ['config', 'network', 'disconnect']);
|
||
|
if (typeof(disconnect) === 'function') {
|
||
|
disconnect();
|
||
|
} else {
|
||
|
console.error("disconnect was not a function");
|
||
|
}
|
||
|
var close = Util.find(client, ['config', 'websocket', 'close']);
|
||
|
if (typeof(close) === 'function') {
|
||
|
client.config.websocket.close();
|
||
|
} else {
|
||
|
console.error("close was not a function");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Client.create = function (config, cb) {
|
||
|
if (typeof(config) === 'function') {
|
||
|
cb = config;
|
||
|
config = {};
|
||
|
}
|
||
|
var client = {
|
||
|
config: config,
|
||
|
};
|
||
|
var CB = Util.once(function (err, arg) {
|
||
|
if (err) { die(client); }
|
||
|
cb(err, arg);
|
||
|
});
|
||
|
|
||
|
client.shutdown = function () {
|
||
|
die(client);
|
||
|
};
|
||
|
|
||
|
nThen(function (w) {
|
||
|
if (config.network) { return; }
|
||
|
// connect to the network...
|
||
|
createNetwork('ws://localhost:3000/cryptpad_websocket', w(function (err, info) {
|
||
|
//console.log(_network);
|
||
|
config.network = info.network;
|
||
|
config.websocket = info.websocket;
|
||
|
}));
|
||
|
}).nThen(function (w) {
|
||
|
// make sure the network has a historyKeeper id on it
|
||
|
// we're responsible for adding it
|
||
|
if (config.network.historyKeeper) { return; }
|
||
|
var channel = Util.uint8ArrayToHex(Nacl.randomBytes(16));
|
||
|
config.network.join(channel).then(w(function (wc) {
|
||
|
wc.members.some(function (member) {
|
||
|
if (member.length !== 16) { return; }
|
||
|
config.network.historyKeeper = member;
|
||
|
return true;
|
||
|
});
|
||
|
wc.leave();
|
||
|
}), function (err) {
|
||
|
w.abort();
|
||
|
CB(err);
|
||
|
});
|
||
|
}).nThen(function (w) {
|
||
|
// connect to the anonRpc
|
||
|
Rpc.createAnonymous(config.network, w(function (err, rpc) {
|
||
|
if (err) {
|
||
|
return void CB('ANON_RPC_CONNECT_ERR');
|
||
|
}
|
||
|
client.anonRpc = rpc;
|
||
|
}));
|
||
|
var keys = makeKeys();
|
||
|
Rpc.create(config.network, keys.secret, keys.public, w(function (err, rpc) {
|
||
|
if (err) {
|
||
|
return void CB('RPC_CONNECT_ERR');
|
||
|
}
|
||
|
client.rpc = rpc;
|
||
|
}));
|
||
|
}).nThen(function () {
|
||
|
CB(void 0, client);
|
||
|
});
|
||
|
};
|
||
|
|