Spaces:
Runtime error
Runtime error
File size: 5,031 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | import { getDbInstance, rowToCamel, objToSnake } from "./core";
import { v4 as uuidv4 } from "uuid";
import { DEFAULT_BATCH_EXPIRATION_SECONDS } from "@/shared/constants/batch";
export interface FileRecord {
id: string;
bytes: number;
createdAt: number;
filename: string;
purpose: string;
content?: Buffer | null;
mimeType?: string | null;
apiKeyId?: string | null;
expiresAt?: number | null;
deletedAt?: number | null;
}
const FILE_METADATA_COLUMNS =
"id, bytes, created_at, filename, purpose, mime_type, api_key_id, expires_at, deleted_at";
export function createFile(file: Omit<FileRecord, "id" | "createdAt">): FileRecord {
const db = getDbInstance();
const id = "file-" + uuidv4().replaceAll("-", "").substring(0, 24);
const createdAt = Math.floor(Date.now() / 1000);
let expiresAt = file.expiresAt;
if (expiresAt === undefined && file.purpose === "batch") {
// Default: batch files expire after 30 days
expiresAt = createdAt + DEFAULT_BATCH_EXPIRATION_SECONDS;
}
const record: FileRecord = {
id,
bytes: file.bytes,
createdAt,
filename: file.filename,
purpose: file.purpose,
content: file.content ?? null,
mimeType: file.mimeType ?? null,
apiKeyId: file.apiKeyId ?? null,
expiresAt: expiresAt ?? null,
deletedAt: null,
};
db.prepare(
`
INSERT INTO files (id, bytes, created_at, filename, purpose, content, mime_type, api_key_id, expires_at, deleted_at)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
`
).run(
record.id,
record.bytes,
record.createdAt,
record.filename,
record.purpose,
record.content,
record.mimeType,
record.apiKeyId,
record.expiresAt,
record.deletedAt
);
return record;
}
export function getFile(id: string): FileRecord | null {
const db = getDbInstance();
const row = db
.prepare(`SELECT ${FILE_METADATA_COLUMNS} FROM files WHERE id = ? AND deleted_at IS NULL`)
.get(id);
return row ? (rowToCamel(row) as unknown as FileRecord) : null;
}
export function getFileContent(id: string): Buffer | null {
const db = getDbInstance();
const row = db
.prepare("SELECT content FROM files WHERE id = ? AND deleted_at IS NULL")
.get(id) as { content: Buffer | Uint8Array | string | null } | undefined;
if (!row?.content) return null;
return Buffer.isBuffer(row.content) ? row.content : Buffer.from(row.content);
}
export function listFiles(
options: {
apiKeyId?: string;
purpose?: string;
limit?: number;
after?: string;
order?: "asc" | "desc";
} = {}
): FileRecord[] {
const db = getDbInstance();
const { apiKeyId, purpose, limit = 20, after, order = "desc" } = options;
let query = `SELECT ${FILE_METADATA_COLUMNS} FROM files WHERE deleted_at IS NULL`;
const params: any[] = [];
if (apiKeyId) {
query += " AND api_key_id = ?";
params.push(apiKeyId);
}
if (purpose) {
query += " AND purpose = ?";
params.push(purpose);
}
if (after) {
// Get the creation time of the 'after' file to use for pagination
const afterFile = getFile(after);
if (afterFile) {
if (order === "desc") {
query += " AND (created_at < ? OR (created_at = ? AND id < ?))";
} else {
query += " AND (created_at > ? OR (created_at = ? AND id > ?))";
}
params.push(afterFile.createdAt, afterFile.createdAt, after);
}
}
query += ` ORDER BY created_at ${order === "asc" ? "ASC" : "DESC"}, id ${order === "asc" ? "ASC" : "DESC"}`;
query += " LIMIT ?";
params.push(limit);
const rows = db.prepare(query).all(...params);
return rows.map((row) => rowToCamel(row) as unknown as FileRecord);
}
export function countFiles(options: { apiKeyId?: string; purpose?: string } = {}): number {
const db = getDbInstance();
const { apiKeyId, purpose } = options;
let query = "SELECT COUNT(*) as c FROM files WHERE deleted_at IS NULL";
const params: any[] = [];
if (apiKeyId) {
query += " AND api_key_id = ?";
params.push(apiKeyId);
}
if (purpose) {
query += " AND purpose = ?";
params.push(purpose);
}
const row = db.prepare(query).get(...params) as { c: number } | undefined;
return row ? Number(row.c) : 0;
}
export function formatFileResponse(file: FileRecord) {
// Ensure numeric date fields are valid numbers to avoid NaN in API responses
const createdAt =
typeof file.createdAt === "number" && Number.isFinite(file.createdAt) ? file.createdAt : 0;
const expiresAt =
typeof file.expiresAt === "number" && Number.isFinite(file.expiresAt) ? file.expiresAt : null;
return {
id: file.id,
bytes: file.bytes,
created_at: createdAt,
filename: file.filename,
object: "file",
purpose: file.purpose,
expires_at: expiresAt,
};
}
export function deleteFile(id: string): boolean {
const db = getDbInstance();
const result = db
.prepare("UPDATE files SET deleted_at = ?, content = NULL WHERE id = ?")
.run(Math.floor(Date.now() / 1000), id);
return result.changes > 0;
}
|