nodio-cli 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/cli/index.js +50 -0
- package/src/node/deviceIdentity.js +45 -0
- package/src/node/index.js +63 -9
- package/src/node/runtime.js +15 -1
- package/src/node/storage.js +49 -0
- package/src/server/models.js +2 -0
- package/src/server/routes.js +30 -4
- package/src/user/commands.js +4 -1
- package/src/user/index.js +3 -3
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodio-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Nodio distributed storage network",
|
|
5
5
|
"main": "src/server/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"bin": {
|
|
8
|
+
"nodio-cli": "src/cli/index.js",
|
|
8
9
|
"nodio-server": "src/server/index.js",
|
|
9
10
|
"nodio-node": "src/node/index.js",
|
|
10
11
|
"nodio": "src/user/index.js"
|
package/src/cli/index.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const path = require('path');
|
|
3
|
+
const { spawn } = require('child_process');
|
|
4
|
+
|
|
5
|
+
const commandMap = {
|
|
6
|
+
'nodio-node': path.join(__dirname, '..', 'node', 'index.js'),
|
|
7
|
+
'nodio-server': path.join(__dirname, '..', 'server', 'index.js'),
|
|
8
|
+
nodio: path.join(__dirname, '..', 'user', 'index.js')
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
function printHelp() {
|
|
12
|
+
console.log('Nodio CLI dispatcher');
|
|
13
|
+
console.log('');
|
|
14
|
+
console.log('Usage:');
|
|
15
|
+
console.log(' nodio-cli <command> [...args]');
|
|
16
|
+
console.log('');
|
|
17
|
+
console.log('Commands:');
|
|
18
|
+
console.log(' nodio-node Start donor node runtime');
|
|
19
|
+
console.log(' nodio-server Start central server');
|
|
20
|
+
console.log(' nodio User CLI (upload/download/delete)');
|
|
21
|
+
console.log('');
|
|
22
|
+
console.log('Example:');
|
|
23
|
+
console.log(' npx nodio-cli nodio-node 10gb');
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const [command, ...restArgs] = process.argv.slice(2);
|
|
27
|
+
|
|
28
|
+
if (!command || command === '--help' || command === '-h') {
|
|
29
|
+
printHelp();
|
|
30
|
+
process.exit(0);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const scriptPath = commandMap[command];
|
|
34
|
+
if (!scriptPath) {
|
|
35
|
+
console.error(`[nodio-cli] Unknown command: ${command}`);
|
|
36
|
+
printHelp();
|
|
37
|
+
process.exit(1);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const child = spawn(process.execPath, [scriptPath, ...restArgs], {
|
|
41
|
+
stdio: 'inherit'
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
child.on('exit', (code, signal) => {
|
|
45
|
+
if (signal) {
|
|
46
|
+
process.kill(process.pid, signal);
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
process.exit(code ?? 0);
|
|
50
|
+
});
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const fs = require('fs/promises');
|
|
2
|
+
const os = require('os');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
const crypto = require('crypto');
|
|
5
|
+
|
|
6
|
+
const DEVICE_DIR = path.join(os.homedir(), '.nodio');
|
|
7
|
+
const DEVICE_FILE = path.join(DEVICE_DIR, 'device-identity.json');
|
|
8
|
+
|
|
9
|
+
async function readDeviceIdentity() {
|
|
10
|
+
try {
|
|
11
|
+
const raw = await fs.readFile(DEVICE_FILE, 'utf-8');
|
|
12
|
+
const parsed = JSON.parse(raw);
|
|
13
|
+
return parsed && typeof parsed === 'object' ? parsed : {};
|
|
14
|
+
} catch {
|
|
15
|
+
return {};
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
async function getOrCreateDeviceKey() {
|
|
20
|
+
const identity = await readDeviceIdentity();
|
|
21
|
+
if (identity.deviceKey) {
|
|
22
|
+
return identity.deviceKey;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const deviceKey = crypto.randomUUID();
|
|
26
|
+
await fs.mkdir(DEVICE_DIR, { recursive: true });
|
|
27
|
+
await fs.writeFile(
|
|
28
|
+
DEVICE_FILE,
|
|
29
|
+
JSON.stringify(
|
|
30
|
+
{
|
|
31
|
+
deviceKey,
|
|
32
|
+
createdAt: new Date().toISOString()
|
|
33
|
+
},
|
|
34
|
+
null,
|
|
35
|
+
2
|
|
36
|
+
),
|
|
37
|
+
'utf-8'
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
return deviceKey;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
module.exports = {
|
|
44
|
+
getOrCreateDeviceKey
|
|
45
|
+
};
|
package/src/node/index.js
CHANGED
|
@@ -1,31 +1,85 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const path = require('path');
|
|
3
3
|
const os = require('os');
|
|
4
|
+
const net = require('net');
|
|
4
5
|
const { Command } = require('commander');
|
|
5
|
-
const { v4: uuidv4 } = require('uuid');
|
|
6
6
|
const { NodioNodeRuntime } = require('./runtime');
|
|
7
7
|
|
|
8
8
|
const program = new Command();
|
|
9
9
|
|
|
10
|
+
function parseCapacityGb(value) {
|
|
11
|
+
if (value === undefined || value === null || value === '') {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const raw = String(value).trim().toLowerCase();
|
|
16
|
+
const match = raw.match(/^([0-9]+(?:\.[0-9]+)?)(gb)?$/);
|
|
17
|
+
if (!match) {
|
|
18
|
+
throw new Error('capacity must be a number or <number>gb, e.g. 10 or 10gb');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
return Number(match[1]);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
async function isPortFree(port) {
|
|
25
|
+
return new Promise((resolve) => {
|
|
26
|
+
const server = net.createServer();
|
|
27
|
+
server.unref();
|
|
28
|
+
|
|
29
|
+
server.once('error', () => resolve(false));
|
|
30
|
+
server.once('listening', () => {
|
|
31
|
+
server.close(() => resolve(true));
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
server.listen(port, '127.0.0.1');
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
async function findFreePort(startPort, endPort) {
|
|
39
|
+
for (let port = startPort; port <= endPort; port += 1) {
|
|
40
|
+
// eslint-disable-next-line no-await-in-loop
|
|
41
|
+
if (await isPortFree(port)) {
|
|
42
|
+
return port;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
throw new Error(`no free port found in range ${startPort}-${endPort}`);
|
|
47
|
+
}
|
|
48
|
+
|
|
10
49
|
program
|
|
11
50
|
.name('nodio-node')
|
|
12
51
|
.description('Nodio donor node CLI')
|
|
13
|
-
.
|
|
14
|
-
.option('--
|
|
52
|
+
.argument('[capacity]', 'optional capacity shorthand, e.g. 10gb')
|
|
53
|
+
.option('--node-id <id>', 'unique node ID (optional; auto-assigned and persisted if omitted)')
|
|
54
|
+
.option('--server <url>', 'central server URL', 'https://api.nodio.me')
|
|
15
55
|
.option('--host <host>', 'host/IP exposed to network', '127.0.0.1')
|
|
16
|
-
.option('--port <port>', 'port to expose shard API
|
|
17
|
-
.option('--storage-dir <path>', 'local shard storage directory
|
|
56
|
+
.option('--port <port>', 'port to expose shard API (auto-picked when omitted)')
|
|
57
|
+
.option('--storage-dir <path>', 'local shard storage directory (defaults to ~/.nodio-nodes/node-<port>)')
|
|
18
58
|
.option('--capacity-gb <gb>', 'donated capacity in GB', '10')
|
|
59
|
+
.option('--auto-port-start <port>', 'start of auto-port range', '5001')
|
|
60
|
+
.option('--auto-port-end <port>', 'end of auto-port range', '5999')
|
|
19
61
|
.option('--heartbeat-ms <ms>', 'heartbeat interval in milliseconds', '30000');
|
|
20
62
|
|
|
21
|
-
program.action(async (options) => {
|
|
22
|
-
const
|
|
23
|
-
const
|
|
63
|
+
program.action(async (capacityArg, options) => {
|
|
64
|
+
const autoPortStart = Number(options.autoPortStart);
|
|
65
|
+
const autoPortEnd = Number(options.autoPortEnd);
|
|
66
|
+
const port = options.port
|
|
67
|
+
? Number(options.port)
|
|
68
|
+
: await findFreePort(autoPortStart, autoPortEnd);
|
|
69
|
+
|
|
70
|
+
const parsedCapacityArg = parseCapacityGb(capacityArg);
|
|
71
|
+
const capacityGb = parsedCapacityArg ?? Number(options.capacityGb);
|
|
24
72
|
const heartbeatMs = Number(options.heartbeatMs);
|
|
73
|
+
const storageDir = options.storageDir
|
|
74
|
+
? path.resolve(options.storageDir)
|
|
75
|
+
: path.join(os.homedir(), '.nodio-nodes', `node-${port}`);
|
|
25
76
|
|
|
26
77
|
if (!Number.isInteger(port) || port <= 0) {
|
|
27
78
|
throw new Error('port must be a positive integer');
|
|
28
79
|
}
|
|
80
|
+
if (!Number.isInteger(autoPortStart) || !Number.isInteger(autoPortEnd) || autoPortStart <= 0 || autoPortEnd < autoPortStart) {
|
|
81
|
+
throw new Error('auto-port range is invalid');
|
|
82
|
+
}
|
|
29
83
|
if (!Number.isFinite(capacityGb) || capacityGb <= 0) {
|
|
30
84
|
throw new Error('capacity-gb must be greater than 0');
|
|
31
85
|
}
|
|
@@ -38,7 +92,7 @@ program.action(async (options) => {
|
|
|
38
92
|
serverUrl: options.server,
|
|
39
93
|
publicUrl: `http://${options.host}:${port}`,
|
|
40
94
|
port,
|
|
41
|
-
storageDir
|
|
95
|
+
storageDir,
|
|
42
96
|
capacityBytes: Math.floor(capacityGb * 1024 * 1024 * 1024),
|
|
43
97
|
heartbeatIntervalMs: heartbeatMs
|
|
44
98
|
});
|
package/src/node/runtime.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const express = require('express');
|
|
2
2
|
const axios = require('axios');
|
|
3
3
|
const { LocalShardStore } = require('./storage');
|
|
4
|
+
const { getOrCreateDeviceKey } = require('./deviceIdentity');
|
|
4
5
|
|
|
5
6
|
function normalizeUrl(url) {
|
|
6
7
|
return String(url || '').replace(/\/+$/, '');
|
|
@@ -8,7 +9,7 @@ function normalizeUrl(url) {
|
|
|
8
9
|
|
|
9
10
|
class NodioNodeRuntime {
|
|
10
11
|
constructor(options) {
|
|
11
|
-
this.nodeId = options.nodeId;
|
|
12
|
+
this.nodeId = options.nodeId || null;
|
|
12
13
|
this.serverUrl = normalizeUrl(options.serverUrl);
|
|
13
14
|
this.publicUrl = normalizeUrl(options.publicUrl);
|
|
14
15
|
this.port = Number(options.port);
|
|
@@ -20,6 +21,11 @@ class NodioNodeRuntime {
|
|
|
20
21
|
|
|
21
22
|
async start() {
|
|
22
23
|
await this.shardStore.init();
|
|
24
|
+
|
|
25
|
+
if (!this.nodeId) {
|
|
26
|
+
this.nodeId = await this.shardStore.getSavedNodeId();
|
|
27
|
+
}
|
|
28
|
+
|
|
23
29
|
await this.startShardServer();
|
|
24
30
|
await this.registerNode();
|
|
25
31
|
await this.sendHeartbeat();
|
|
@@ -93,13 +99,21 @@ class NodioNodeRuntime {
|
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
async registerNode() {
|
|
102
|
+
const deviceKey = await getOrCreateDeviceKey();
|
|
103
|
+
const nodeKey = await this.shardStore.getOrCreateNodeKey();
|
|
104
|
+
|
|
96
105
|
const response = await axios.post(`${this.serverUrl}/api/nodes/register`, {
|
|
97
106
|
nodeId: this.nodeId,
|
|
107
|
+
deviceKey,
|
|
108
|
+
nodeKey,
|
|
98
109
|
url: this.publicUrl,
|
|
99
110
|
capacityBytes: this.capacityBytes,
|
|
100
111
|
freeBytes: await this.freeBytes()
|
|
101
112
|
});
|
|
102
113
|
|
|
114
|
+
this.nodeId = response.data.nodeId;
|
|
115
|
+
await this.shardStore.saveAssignedNodeId(this.nodeId);
|
|
116
|
+
|
|
103
117
|
const interval = Number(response.data.heartbeatIntervalMs);
|
|
104
118
|
if (Number.isFinite(interval) && interval > 0) {
|
|
105
119
|
this.heartbeatIntervalMs = interval;
|
package/src/node/storage.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
const fs = require('fs/promises');
|
|
2
2
|
const path = require('path');
|
|
3
|
+
const crypto = require('crypto');
|
|
3
4
|
const { sha256Hex } = require('../common/crypto');
|
|
4
5
|
|
|
5
6
|
class LocalShardStore {
|
|
@@ -7,6 +8,7 @@ class LocalShardStore {
|
|
|
7
8
|
this.baseDir = baseDir;
|
|
8
9
|
this.indexFile = path.join(baseDir, 'index.json');
|
|
9
10
|
this.shardsDir = path.join(baseDir, 'shards');
|
|
11
|
+
this.identityFile = path.join(baseDir, 'node-identity.json');
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
async init() {
|
|
@@ -31,6 +33,53 @@ class LocalShardStore {
|
|
|
31
33
|
await fs.writeFile(this.indexFile, JSON.stringify(index, null, 2), 'utf-8');
|
|
32
34
|
}
|
|
33
35
|
|
|
36
|
+
async readIdentity() {
|
|
37
|
+
try {
|
|
38
|
+
const raw = await fs.readFile(this.identityFile, 'utf-8');
|
|
39
|
+
const parsed = JSON.parse(raw);
|
|
40
|
+
return parsed && typeof parsed === 'object' ? parsed : {};
|
|
41
|
+
} catch {
|
|
42
|
+
return {};
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
async writeIdentity(identity) {
|
|
47
|
+
await fs.writeFile(this.identityFile, JSON.stringify(identity, null, 2), 'utf-8');
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
async getIdentity() {
|
|
51
|
+
return this.readIdentity();
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async getOrCreateNodeKey() {
|
|
55
|
+
const identity = await this.readIdentity();
|
|
56
|
+
if (identity.nodeKey) {
|
|
57
|
+
return identity.nodeKey;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const nodeKey = crypto.randomUUID();
|
|
61
|
+
await this.writeIdentity({ ...identity, nodeKey, updatedAt: new Date().toISOString() });
|
|
62
|
+
return nodeKey;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async getSavedNodeId() {
|
|
66
|
+
const identity = await this.readIdentity();
|
|
67
|
+
return identity.nodeId || null;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
async saveAssignedNodeId(nodeId) {
|
|
71
|
+
if (!nodeId) {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const identity = await this.readIdentity();
|
|
76
|
+
await this.writeIdentity({
|
|
77
|
+
...identity,
|
|
78
|
+
nodeId,
|
|
79
|
+
updatedAt: new Date().toISOString()
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
|
|
34
83
|
shardPath(shardId) {
|
|
35
84
|
return path.join(this.shardsDir, `${shardId}.bin`);
|
|
36
85
|
}
|
package/src/server/models.js
CHANGED
|
@@ -3,6 +3,8 @@ const mongoose = require('mongoose');
|
|
|
3
3
|
const nodeSchema = new mongoose.Schema(
|
|
4
4
|
{
|
|
5
5
|
nodeId: { type: String, required: true, unique: true, index: true },
|
|
6
|
+
deviceKey: { type: String, index: true },
|
|
7
|
+
nodeKey: { type: String, unique: true, sparse: true, index: true },
|
|
6
8
|
url: { type: String, required: true },
|
|
7
9
|
capacityBytes: { type: Number, required: true, min: 1 },
|
|
8
10
|
freeBytes: { type: Number, required: true, min: 0 },
|
package/src/server/routes.js
CHANGED
|
@@ -31,10 +31,10 @@ function buildRoutes(config) {
|
|
|
31
31
|
|
|
32
32
|
router.post('/nodes/register', async (req, res, next) => {
|
|
33
33
|
try {
|
|
34
|
-
const { nodeId, url, capacityBytes, freeBytes } = req.body;
|
|
34
|
+
const { nodeId, deviceKey, nodeKey, url, capacityBytes, freeBytes } = req.body;
|
|
35
35
|
|
|
36
|
-
if (!
|
|
37
|
-
return res.status(400).json({ error: '
|
|
36
|
+
if (!url) {
|
|
37
|
+
return res.status(400).json({ error: 'url is required' });
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
const capacity = Number(capacityBytes);
|
|
@@ -42,11 +42,28 @@ function buildRoutes(config) {
|
|
|
42
42
|
if (!Number.isFinite(capacity) || capacity <= 0 || !Number.isFinite(free) || free < 0) {
|
|
43
43
|
return res.status(400).json({ error: 'capacityBytes and freeBytes must be valid numbers' });
|
|
44
44
|
}
|
|
45
|
+
if (deviceKey && typeof deviceKey !== 'string') {
|
|
46
|
+
return res.status(400).json({ error: 'deviceKey must be a string when provided' });
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
let existingByNodeKey = null;
|
|
50
|
+
if (nodeKey) {
|
|
51
|
+
existingByNodeKey = await NodeModel.findOne({ nodeKey }).lean();
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (existingByNodeKey && nodeId && nodeId !== existingByNodeKey.nodeId) {
|
|
55
|
+
return res.status(409).json({ error: 'nodeKey is already associated with a different nodeId' });
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const effectiveNodeId = nodeId || existingByNodeKey?.nodeId || `donor-${uuidv4().slice(0, 8)}`;
|
|
45
59
|
|
|
46
60
|
const node = await NodeModel.findOneAndUpdate(
|
|
47
|
-
{ nodeId },
|
|
61
|
+
{ nodeId: effectiveNodeId },
|
|
48
62
|
{
|
|
49
63
|
$set: {
|
|
64
|
+
nodeId: effectiveNodeId,
|
|
65
|
+
...(deviceKey ? { deviceKey } : {}),
|
|
66
|
+
...(nodeKey ? { nodeKey } : {}),
|
|
50
67
|
url,
|
|
51
68
|
capacityBytes: capacity,
|
|
52
69
|
freeBytes: free,
|
|
@@ -343,15 +360,21 @@ function buildRoutes(config) {
|
|
|
343
360
|
const nodeUrlMap = new Map(onlineNodes.map((node) => [node.nodeId, node.url]));
|
|
344
361
|
|
|
345
362
|
const shardDeleteFailures = [];
|
|
363
|
+
let deleteAttempts = 0;
|
|
364
|
+
let deleteSuccesses = 0;
|
|
365
|
+
let deleteSkippedOffline = 0;
|
|
346
366
|
for (const placement of placements) {
|
|
347
367
|
const nodeUrl = nodeUrlMap.get(placement.nodeId);
|
|
348
368
|
if (!nodeUrl) {
|
|
369
|
+
deleteSkippedOffline += 1;
|
|
349
370
|
continue;
|
|
350
371
|
}
|
|
351
372
|
|
|
352
373
|
const deleteUrl = `${normalizeUrl(nodeUrl)}/shards/${placement.shardId}`;
|
|
374
|
+
deleteAttempts += 1;
|
|
353
375
|
try {
|
|
354
376
|
await axios.delete(deleteUrl, { timeout: 15000 });
|
|
377
|
+
deleteSuccesses += 1;
|
|
355
378
|
} catch (error) {
|
|
356
379
|
shardDeleteFailures.push({
|
|
357
380
|
shardId: placement.shardId,
|
|
@@ -376,6 +399,9 @@ function buildRoutes(config) {
|
|
|
376
399
|
fileId,
|
|
377
400
|
deletedShards: shardIds.length,
|
|
378
401
|
deletedPlacements: placements.length,
|
|
402
|
+
donorDeleteAttempts: deleteAttempts,
|
|
403
|
+
donorDeleteSuccesses: deleteSuccesses,
|
|
404
|
+
donorDeleteSkippedOffline: deleteSkippedOffline,
|
|
379
405
|
shardDeleteFailures
|
|
380
406
|
});
|
|
381
407
|
} catch (error) {
|
package/src/user/commands.js
CHANGED
|
@@ -210,7 +210,10 @@ async function deleteFile(options) {
|
|
|
210
210
|
console.log('Delete complete');
|
|
211
211
|
console.log(`fileId: ${payload.fileId || fileId}`);
|
|
212
212
|
console.log(`deletedShards: ${payload.deletedShards || 0}`);
|
|
213
|
-
console.log(`
|
|
213
|
+
console.log(`deletedPlacementsMetadata: ${payload.deletedPlacements || 0}`);
|
|
214
|
+
console.log(`donorDeleteAttempts: ${payload.donorDeleteAttempts || 0}`);
|
|
215
|
+
console.log(`donorDeleteSuccesses: ${payload.donorDeleteSuccesses || 0}`);
|
|
216
|
+
console.log(`donorDeleteSkippedOffline: ${payload.donorDeleteSkippedOffline || 0}`);
|
|
214
217
|
console.log(`shardDeleteFailures: ${(payload.shardDeleteFailures || []).length}`);
|
|
215
218
|
}
|
|
216
219
|
|
package/src/user/index.js
CHANGED
|
@@ -10,7 +10,7 @@ program
|
|
|
10
10
|
.command('upload')
|
|
11
11
|
.description('Encrypt, shard, and distribute a file across donor nodes')
|
|
12
12
|
.requiredOption('--file <path>', 'path to local file')
|
|
13
|
-
.option('--server <url>', 'central server URL', '
|
|
13
|
+
.option('--server <url>', 'central server URL', 'https://api.nodio.me')
|
|
14
14
|
.option('--file-id <id>', 'custom file ID (optional)')
|
|
15
15
|
.option('--shard-size-mb <mb>', 'plaintext shard size in MB', '1')
|
|
16
16
|
.option('--replicas <count>', 'replicas per shard (minimum 5)', '5')
|
|
@@ -24,7 +24,7 @@ program
|
|
|
24
24
|
.description('Download, verify, decrypt, and reconstruct a file')
|
|
25
25
|
.requiredOption('--file-id <id>', 'file ID to download')
|
|
26
26
|
.requiredOption('--key-base64 <key>', '32-byte AES key in base64 from upload output')
|
|
27
|
-
.option('--server <url>', 'central server URL', '
|
|
27
|
+
.option('--server <url>', 'central server URL', 'https://api.nodio.me')
|
|
28
28
|
.option('--output <path>', 'output file path')
|
|
29
29
|
.action(async (options) => {
|
|
30
30
|
await downloadFile(options);
|
|
@@ -34,7 +34,7 @@ program
|
|
|
34
34
|
.command('delete')
|
|
35
35
|
.description('Delete a file and its shard replicas from the network')
|
|
36
36
|
.requiredOption('--file-id <id>', 'file ID to delete')
|
|
37
|
-
.option('--server <url>', 'central server URL', '
|
|
37
|
+
.option('--server <url>', 'central server URL', 'https://api.nodio.me')
|
|
38
38
|
.action(async (options) => {
|
|
39
39
|
await deleteFile(options);
|
|
40
40
|
});
|