mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
28 lines
748 B
TypeScript
28 lines
748 B
TypeScript
import { JsonParseStream } from '@std/json/json-parse-stream';
|
|
import { TextLineStream } from '@std/streams/text-line-stream';
|
|
|
|
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
|
import { Storages } from '@/storages.ts';
|
|
import { type EventStub } from '@/utils/api.ts';
|
|
import { nostrNow } from '@/utils.ts';
|
|
|
|
const signer = new AdminSigner();
|
|
const store = await Storages.db();
|
|
|
|
const readable = Deno.stdin.readable
|
|
.pipeThrough(new TextDecoderStream())
|
|
.pipeThrough(new TextLineStream())
|
|
.pipeThrough(new JsonParseStream());
|
|
|
|
for await (const t of readable) {
|
|
const event = await signer.signEvent({
|
|
content: '',
|
|
created_at: nostrNow(),
|
|
tags: [],
|
|
...t as EventStub,
|
|
});
|
|
|
|
await store.event(event);
|
|
}
|
|
|
|
Deno.exit(0);
|