|
| 1 | +import fs from "fs"; |
| 2 | +import path from "path"; |
| 3 | +import { BaseArtifact } from "./baseArtifact"; |
| 4 | +import { ArtifactUploadResponse, GameEnvironment } from "../types"; |
| 5 | + |
| 6 | +export class FileArtifact extends BaseArtifact { |
| 7 | + private baseDir: string; |
| 8 | + |
| 9 | + constructor(baseDir: string = "agent_data") { |
| 10 | + super("FileArtifact", "Handles file-based storage operations", "storage"); |
| 11 | + this.baseDir = baseDir; |
| 12 | + this.ensureDirectoryExists(baseDir); |
| 13 | + } |
| 14 | + |
| 15 | + private ensureDirectoryExists(dir: string): void { |
| 16 | + if (!fs.existsSync(dir)) { |
| 17 | + fs.mkdirSync(dir, { recursive: true }); |
| 18 | + } |
| 19 | + } |
| 20 | + |
| 21 | + private getFilePath(filename: string): string { |
| 22 | + return path.join(this.baseDir, filename); |
| 23 | + } |
| 24 | + |
| 25 | + async save( |
| 26 | + data: Record<string, unknown>, |
| 27 | + filename: string, |
| 28 | + ): Promise<ArtifactUploadResponse> { |
| 29 | + try { |
| 30 | + const filePath = this.getFilePath(filename); |
| 31 | + const jsonData = JSON.stringify(data, null, 2); |
| 32 | + fs.writeFileSync(filePath, jsonData, "utf8"); |
| 33 | + |
| 34 | + return { |
| 35 | + success: true, |
| 36 | + url: filePath, |
| 37 | + error: null, |
| 38 | + }; |
| 39 | + } catch (error) { |
| 40 | + return { |
| 41 | + success: false, |
| 42 | + url: null, |
| 43 | + error: |
| 44 | + error instanceof Error ? error.message : "Unknown error occurred", |
| 45 | + }; |
| 46 | + } |
| 47 | + } |
| 48 | + |
| 49 | + async load(filename: string): Promise<Record<string, unknown>> { |
| 50 | + try { |
| 51 | + const filePath = this.getFilePath(filename); |
| 52 | + if (!fs.existsSync(filePath)) { |
| 53 | + throw new Error(`File not found: ${filePath}`); |
| 54 | + } |
| 55 | + |
| 56 | + const data = fs.readFileSync(filePath, "utf8"); |
| 57 | + return JSON.parse(data); |
| 58 | + } catch (error) { |
| 59 | + throw new Error( |
| 60 | + `Failed to load file: ${error instanceof Error ? error.message : "Unknown error"}`, |
| 61 | + ); |
| 62 | + } |
| 63 | + } |
| 64 | + |
| 65 | + async delete(filename: string): Promise<boolean> { |
| 66 | + try { |
| 67 | + const filePath = this.getFilePath(filename); |
| 68 | + if (fs.existsSync(filePath)) { |
| 69 | + fs.unlinkSync(filePath); |
| 70 | + return true; |
| 71 | + } |
| 72 | + return false; |
| 73 | + } catch { |
| 74 | + return false; |
| 75 | + } |
| 76 | + } |
| 77 | + |
| 78 | + async list(): Promise<string[]> { |
| 79 | + try { |
| 80 | + return fs.readdirSync(this.baseDir); |
| 81 | + } catch { |
| 82 | + return []; |
| 83 | + } |
| 84 | + } |
| 85 | + |
| 86 | + async modifyEnvironment(environment: GameEnvironment): Promise<void> { |
| 87 | + // Default implementation - no environment modifications needed for file storage |
| 88 | + console.log("FileArtifact: modifyEnvironment called", environment); |
| 89 | + return Promise.resolve(); |
| 90 | + } |
| 91 | +} |
0 commit comments