14 lines
547 B
TypeScript
14 lines
547 B
TypeScript
import { space, system } from "$sb/syscalls.ts";
|
|
import { AttachmentMeta } from "$sb/types.ts";
|
|
import { indexObjects } from "./api.ts";
|
|
|
|
// Note: clearFileIndex is not called but since this is the only attachmet:index listener, this should be fine (famous last words)
|
|
export async function indexAttachment(name: string) {
|
|
if (await system.getMode() === "ro") {
|
|
return;
|
|
}
|
|
console.log("Indexing attachment", name);
|
|
const fileMeta = await space.getAttachmentMeta(name);
|
|
await indexObjects<AttachmentMeta>(fileMeta.name, [fileMeta]);
|
|
}
|