Files
bitburner-src/src/RemoteFileAPI/MessageDefinitions.ts
T
2025-06-16 16:34:06 -07:00

86 lines
2.4 KiB
TypeScript

import type { SaveData } from "../types";
import type { BaseServer } from "../Server/BaseServer";
export class RFAMessage {
jsonrpc = "2.0"; // Transmits version of JSON-RPC. Compliance maybe allows some funky interaction with external tools?
public method?: string; // Is defined when it's a request/notification, otherwise undefined
public result?: ResultType; // Is defined when it's a response, otherwise undefined
public params?: FileDescription; // Optional parameters to method
public error?: string; // Only defined on error
public id?: number; // ID to keep track of request -> response interaction, undefined with notifications, defined with request/response
constructor(
obj: { method?: string; result?: ResultType; params?: FileDescription; error?: string; id?: number } = {},
) {
this.method = obj.method;
this.result = obj.result;
this.params = obj.params;
this.error = obj.error;
this.id = obj.id;
}
}
type ResultType =
| string
| number
| string[]
| FileContent[]
| RFAServerData[]
| {
identifier: string;
binary: boolean;
save: SaveData;
}
| FileMetadata
| FileMetadata[];
type FileDescription = FileData | FileContent | FileLocation | FileServer;
export interface FileData {
filename: string;
content: string;
server: string;
}
export interface FileContent {
filename: string;
content: string;
}
export interface FileLocation {
filename: string;
server: string;
}
export interface FileServer {
server: string;
}
export interface FileMetadata {
filename: string;
atime: number;
mtime: number;
btime: number;
}
export type RFAServerData = Pick<BaseServer, "hostname" | "hasAdminRights" | "purchasedByPlayer">;
export function isFileData(p: unknown): p is FileData {
const pf = p as FileData;
return typeof pf.server === "string" && typeof pf.filename === "string" && typeof pf.content === "string";
}
export function isFileLocation(p: unknown): p is FileLocation {
const pf = p as FileLocation;
return typeof pf.server === "string" && typeof pf.filename === "string";
}
export function isFileContent(p: unknown): p is FileContent {
const pf = p as FileContent;
return typeof pf.filename === "string" && typeof pf.content === "string";
}
export function isFileServer(p: unknown): p is FileServer {
const pf = p as FileServer;
return typeof pf.server === "string";
}