bobcat/ts/bobcat.classes.bobcat.ts

70 lines
2.0 KiB
TypeScript
Raw Normal View History

2022-02-24 19:16:21 +00:00
import * as plugins from './bobcat.plugins';
2022-02-25 20:25:29 +00:00
import * as interfaces from './interfaces';
2022-02-24 19:16:21 +00:00
/**
* maps to an individual bobcat miner
*/
export class Bobcat {
2022-02-25 19:36:44 +00:00
// STATIC
public static async createFromNetworkAddress(networkAddressArg: string) {
const newBobcat = new Bobcat(networkAddressArg);
2022-02-25 20:48:26 +00:00
try {
await newBobcat.checkMinerStatus();
await newBobcat.gatherMinerDetails();
} catch(err) {
console.log('initial adding completed with errors');
}
2022-02-25 19:36:44 +00:00
return newBobcat;
}
// INSTANCE
public networkAddress: string;
2022-02-25 20:25:29 +00:00
public latestStatus: interfaces.IMinerStatus;
public latestMinerDetails: interfaces.IMinerDetailsResponse
2022-02-25 19:36:44 +00:00
2022-02-25 19:57:46 +00:00
constructor(networkAddressArg: string) {
this.networkAddress = networkAddressArg;
2022-02-25 19:36:44 +00:00
}
/**
* checks the status of the miner
*/
public async checkMinerStatus() {
const response = await plugins.smartrequest.getJson(`http://${this.networkAddress}/status.json`);
2022-02-25 20:25:29 +00:00
const body: interfaces.IMinerStatus = response.body;
this.latestStatus = body;
return this.latestStatus;
2022-02-25 19:36:44 +00:00
}
/**
* gathers the miner details
*/
public async gatherMinerDetails() {
2022-02-25 20:25:29 +00:00
const response = await plugins.smartrequest.getJson(`http://${this.networkAddress}/miner.json`);
const body: interfaces.IMinerDetailsResponse = response.body;
this.latestMinerDetails = body;
return this.latestMinerDetails;
2022-02-25 19:36:44 +00:00
}
2022-02-25 20:33:24 +00:00
/**
* runs maintenance on the bobcat
*/
public async runMaintenance() {
await this.checkMinerStatus();
await this.gatherMinerDetails();
if (this.latestStatus.status !== 'Synced') {
console.log(`Miner ${this.latestMinerDetails.animal} is not synced. Restarting now!`);
2022-02-25 20:45:21 +00:00
await this.restart().catch();
2022-02-25 20:33:24 +00:00
}
}
2022-02-25 20:45:21 +00:00
public async restart() {
const response = await plugins.smartrequest.request(`http://${this.networkAddress}/admin/reboot`, {
method: 'POST',
headers: {
Authorization: 'Basic ' + Buffer.from('bobcat:miner').toString('base64')
}
});
console.log(response.statusCode);
}
2022-02-24 19:16:21 +00:00
}