| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #!/usr/bin/env node
- const path = require('path');
- const ssbConfig = require(path.join(__dirname, '..', 'src', 'server', 'ssb_config'));
- const ssbClient = require(path.join(__dirname, '..', 'src', 'server', 'node_modules', 'ssb-client'));
- const socketPath = path.join(ssbConfig.path, 'socket');
- const publicInteger = (ssbConfig.keys.public || '').replace('.ed25519', '');
- const remote = `unix:${socketPath}~noauth:${publicInteger}`;
- const cmd = process.argv[2];
- const args = process.argv.slice(3);
- const usage = () => {
- console.error('Usage: sh oasis.sh <command> [args]');
- console.error('');
- console.error('PUB admin commands (sbot must be running: sh oasis.sh server):');
- console.error(' whoami Print this PUB id');
- console.error(' invite [N] Create an invite code (default uses=1)');
- console.error(' name <text> Set PUB display name');
- console.error(' announce <host> [port] Publish a pub address (default port=8008)');
- console.error(' follow <feedId> Follow another PUB');
- console.error(' status Show peer / replication status');
- console.error(' gossip List known gossip peers');
- process.exit(1);
- };
- if (!cmd) usage();
- const call = (fn, ...a) => new Promise((res, rej) => fn(...a, (e, r) => e ? rej(e) : res(r)));
- ssbClient(ssbConfig.keys, { remote, caps: ssbConfig.caps }).then(async (ssb) => {
- try {
- switch (cmd) {
- case 'whoami': {
- const r = await call(ssb.whoami.bind(ssb));
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- case 'invite': {
- const uses = Math.max(1, parseInt(args[0] || '1', 10));
- const code = await call(ssb.invite.create.bind(ssb.invite), uses);
- console.log(code);
- break;
- }
- case 'name': {
- const text = String(args[0] || '');
- if (!text) { console.error('Missing name'); process.exit(1); }
- const me = await call(ssb.whoami.bind(ssb));
- const r = await call(ssb.publish.bind(ssb), { type: 'about', about: me.id, name: text });
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- case 'announce': {
- const host = args[0];
- const port = parseInt(args[1] || '8008', 10);
- if (!host) { console.error('Missing host'); process.exit(1); }
- const me = await call(ssb.whoami.bind(ssb));
- const r = await call(ssb.publish.bind(ssb), { type: 'pub', address: { key: me.id, host, port } });
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- case 'follow': {
- const feedId = args[0];
- if (!feedId) { console.error('Missing feedId'); process.exit(1); }
- const r = await call(ssb.publish.bind(ssb), { type: 'contact', contact: feedId, following: true });
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- case 'status': {
- const r = await call(ssb.status.bind(ssb));
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- case 'gossip': {
- const r = await call(ssb.gossip.peers.bind(ssb.gossip));
- console.log(JSON.stringify(r, null, 2));
- break;
- }
- default:
- usage();
- }
- ssb.close();
- } catch (e) {
- console.error('Error:', e.message || e);
- process.exit(1);
- }
- }).catch((e) => {
- console.error('Connection error:', e.message || e);
- console.error('Is the Oasis sbot running? (sh oasis.sh server)');
- process.exit(1);
- });
|