2021-10-02 00:16:34 +00:00
|
|
|
"use strict";
|
|
|
|
|
2022-01-08 16:59:08 +00:00
|
|
|
import fs from 'fs';
|
2021-10-02 00:16:34 +00:00
|
|
|
import os from 'os';
|
2022-01-08 23:47:52 +00:00
|
|
|
import path from 'path';
|
2021-10-02 00:16:34 +00:00
|
|
|
|
2022-01-08 21:37:03 +00:00
|
|
|
import log from 'log'; const l = log.get("agent");
|
2021-10-02 00:16:34 +00:00
|
|
|
|
2022-01-08 21:37:03 +00:00
|
|
|
import settings from '../../settings.mjs';
|
|
|
|
|
2022-01-08 16:59:08 +00:00
|
|
|
import PeerServer from './PeerServer.mjs';
|
|
|
|
import parse_peer_name from '../parse/peer_name.mjs';
|
2022-01-08 21:55:18 +00:00
|
|
|
import hostuuid from '../io/hostuuid.mjs';
|
2021-10-02 00:16:34 +00:00
|
|
|
|
|
|
|
class Agent {
|
2022-01-08 16:59:08 +00:00
|
|
|
constructor(config) {
|
|
|
|
this.config = config;
|
2021-10-02 00:16:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 16:59:08 +00:00
|
|
|
async find_secret() {
|
2022-01-08 23:47:52 +00:00
|
|
|
if(this.config.secret_join_filepath !== "CHANGE_ME") {
|
|
|
|
let filepath = path.resolve(
|
|
|
|
path.dirname(settings.cli.config),
|
|
|
|
this.config.secret_join_filepath
|
|
|
|
);
|
|
|
|
if(fs.existsSync(filepath))
|
|
|
|
return await fs.promises.readFile(filepath, "utf-8");
|
|
|
|
}
|
2022-01-08 16:59:08 +00:00
|
|
|
|
|
|
|
if(this.config.secret_join !== "CHANGE_ME")
|
|
|
|
return this.config.secret_join;
|
2021-10-02 00:16:34 +00:00
|
|
|
|
2022-01-08 23:47:52 +00:00
|
|
|
throw new Error(`Error: Failed to find join secret.`);
|
2022-01-08 16:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async init() {
|
2021-10-02 00:16:34 +00:00
|
|
|
/** Our peer id - calculated automatically from the system's uuid */
|
2022-01-09 00:57:06 +00:00
|
|
|
this.peer_id = await hostuuid(this.config.net.port);
|
2021-10-02 00:16:34 +00:00
|
|
|
this.peer_name = os.hostname();
|
|
|
|
|
2022-01-08 16:59:08 +00:00
|
|
|
this.server = new PeerServer(
|
|
|
|
this.peer_id,
|
|
|
|
await this.find_secret()
|
|
|
|
);
|
|
|
|
this.server.retries = this.config.net.peer_retries;
|
2021-10-02 00:16:34 +00:00
|
|
|
|
2022-01-08 21:55:18 +00:00
|
|
|
l.notice(`Starting peer listener....`);
|
2022-01-08 16:59:08 +00:00
|
|
|
await this.server.listen(
|
|
|
|
this.config.net.port,
|
|
|
|
this.config.net.bind_address
|
|
|
|
);
|
2022-01-08 21:55:18 +00:00
|
|
|
l.notice(`Listening on ${this.config.net.bind_address}:${this.config.net.port}`);
|
2021-10-02 00:16:34 +00:00
|
|
|
|
2022-01-08 16:59:08 +00:00
|
|
|
await this.server.add_peers(...this.config.peers.map(
|
|
|
|
peer => parse_peer_name(peer)
|
|
|
|
));
|
2022-01-08 21:55:18 +00:00
|
|
|
l.notice(`Added ${this.config.peers.length} initial peers`);
|
2022-01-08 16:59:08 +00:00
|
|
|
if(this.config.peers.length < 1)
|
|
|
|
l.warn(`No initial peers were specified! It's recommended that you specify at least 1 on every host.`);
|
2021-10-02 00:16:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Agent;
|