fix(core): update

This commit is contained in:
Philipp Kunz 2022-02-25 21:25:29 +01:00
parent ceab0fb872
commit c0f03d11b6
2 changed files with 46 additions and 12 deletions

View File

@ -1,4 +1,5 @@
import * as plugins from './bobcat.plugins'; import * as plugins from './bobcat.plugins';
import * as interfaces from './interfaces';
/** /**
* maps to an individual bobcat miner * maps to an individual bobcat miner
@ -8,11 +9,14 @@ export class Bobcat {
public static async createFromNetworkAddress(networkAddressArg: string) { public static async createFromNetworkAddress(networkAddressArg: string) {
const newBobcat = new Bobcat(networkAddressArg); const newBobcat = new Bobcat(networkAddressArg);
await newBobcat.gatherMinerDetails(); await newBobcat.gatherMinerDetails();
await newBobcat.checkMinerStatus();
return newBobcat; return newBobcat;
} }
// INSTANCE // INSTANCE
public networkAddress: string; public networkAddress: string;
public latestStatus: interfaces.IMinerStatus;
public latestMinerDetails: interfaces.IMinerDetailsResponse
constructor(networkAddressArg: string) { constructor(networkAddressArg: string) {
this.networkAddress = networkAddressArg; this.networkAddress = networkAddressArg;
@ -23,23 +27,18 @@ export class Bobcat {
*/ */
public async checkMinerStatus() { public async checkMinerStatus() {
const response = await plugins.smartrequest.getJson(`http://${this.networkAddress}/status.json`); const response = await plugins.smartrequest.getJson(`http://${this.networkAddress}/status.json`);
const body: { const body: interfaces.IMinerStatus = response.body;
"status": string, this.latestStatus = body;
"gap": string, return this.latestStatus;
"miner_height": string,
"blockchain_height": string,
"epoch": "rpc"
} = response.body;
return response;
} }
/** /**
* gathers the miner details * gathers the miner details
*/ */
public async gatherMinerDetails() { public async gatherMinerDetails() {
const response: { const response = await plugins.smartrequest.getJson(`http://${this.networkAddress}/miner.json`);
const body: interfaces.IMinerDetailsResponse = response.body;
} = plugins.smartrequest.getJson(`http://${this.networkAddress}/miner.json`); this.latestMinerDetails = body;
return this.latestMinerDetails;
} }
} }

35
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1,35 @@
export interface IMinerStatus {
status: string;
gap: string;
miner_height: string;
blockchain_height: string;
epoch: 'rpc';
}
export interface IMinerDetailsResponse {
ota_version: string;
region: 'region_eu868';
frequency_plan: 'eu868';
animal: string;
pubkey: string;
miner: {
State: 'running';
Status: string;
Names: ['/miner'];
Image: string;
Created: number;
};
p2p_status: string[];
miner_height: string;
epoch: string;
ports_desc: "only need to port forward 44158. For 22, only when need remote support. public port open/close isn't accurate here, if your listen_addr is IP address, it should be OK";
ports: { [key: string]: string };
private_ip: string;
public_ip: string;
peerbook: string[];
height: string[];
temp0: string;
temp1: string;
timestamp: string;
errors: string;
}