53 lines
1.1 KiB
TypeScript
Executable File
53 lines
1.1 KiB
TypeScript
Executable File
#!/usr/bin/env -S deno run
|
|
import { readLines } from 'https://deno.land/std@0.178.0/io/mod.ts';
|
|
|
|
const HELLTHREAD_LIMIT = Number(Deno.env.get('HELLTHREAD_LIMIT') || 20);
|
|
|
|
interface InputMessage {
|
|
type: 'new' | 'lookback';
|
|
event: Event;
|
|
receivedAt: number;
|
|
sourceType: 'IP4' | 'IP6' | 'Import' | 'Stream' | 'Sync';
|
|
sourceInfo: string;
|
|
}
|
|
|
|
interface OutputMessage {
|
|
id: string;
|
|
action: 'accept' | 'reject' | 'shadowReject';
|
|
msg: string;
|
|
}
|
|
|
|
interface Event {
|
|
id: string;
|
|
sig: string;
|
|
kind: number;
|
|
tags: string[][];
|
|
pubkey: string;
|
|
content: string;
|
|
created_at: number;
|
|
}
|
|
|
|
function handleMessage(msg: InputMessage): OutputMessage {
|
|
if (msg.event.kind === 1) {
|
|
const p = msg.event.tags.filter((tag) => tag[0] === 'p');
|
|
|
|
if (p.length > HELLTHREAD_LIMIT) {
|
|
return {
|
|
id: msg.event.id,
|
|
action: 'reject',
|
|
msg: `Event rejected due to ${p.length} "p" tags (${HELLTHREAD_LIMIT} is the limit).`,
|
|
};
|
|
}
|
|
}
|
|
|
|
return {
|
|
id: msg.event.id,
|
|
action: 'accept',
|
|
msg: '',
|
|
};
|
|
}
|
|
|
|
for await (const line of readLines(Deno.stdin)) {
|
|
console.log(JSON.stringify(handleMessage(JSON.parse(line))));
|
|
}
|