1427df4bdc
Hop-State: A_06FP8GM0PKJTMF45B7016J0 Hop-Proposal: R_06FP8GKFXXZG84ETVCPS5ZG Hop-Task: T_06FP8F45T3G4Z4ESW9NZQQR Hop-Attempt: AT_06FP8F45T3QS81M2ZM4SJ3G
125 lines
3.8 KiB
TypeScript
125 lines
3.8 KiB
TypeScript
/**
|
|
* Swarm Gossip Endpoint
|
|
*
|
|
* POST: Exchange node and handle information with other nodes
|
|
*
|
|
* SECURITY: All requests must be cryptographically signed by the sender node.
|
|
*/
|
|
|
|
import { NextResponse } from 'next/server';
|
|
import { z } from 'zod';
|
|
import { processGossip } from '@/lib/swarm/gossip';
|
|
import { markNodeSuccess } from '@/lib/swarm/registry';
|
|
import { verifySwarmRequest } from '@/lib/swarm/signature';
|
|
import type { SwarmGossipPayload } from '@/lib/swarm/types';
|
|
import { getPublicSwarmDomain, isPublicSwarmDomain } from '@/lib/swarm/node-domain';
|
|
|
|
const handleSchema = z.object({
|
|
handle: z.string(),
|
|
did: z.string(),
|
|
nodeDomain: z.string(),
|
|
updatedAt: z.string().optional(),
|
|
});
|
|
|
|
const nodeInfoSchema = z.object({
|
|
domain: z.string(),
|
|
name: z.string().optional(),
|
|
description: z.string().optional(),
|
|
logoUrl: z.string().optional(),
|
|
publicKey: z.string().optional(),
|
|
softwareVersion: z.string().optional(),
|
|
userCount: z.number().optional(),
|
|
postCount: z.number().optional(),
|
|
isNsfw: z.boolean().optional(),
|
|
capabilities: z.array(z.enum(['handles', 'gossip', 'relay', 'search', 'interactions'])).optional(),
|
|
lastSeenAt: z.string().optional(),
|
|
});
|
|
|
|
const gossipPayloadSchema = z.object({
|
|
sender: z.string().min(1),
|
|
nodes: z.array(nodeInfoSchema),
|
|
handles: z.array(handleSchema).optional(),
|
|
timestamp: z.string(),
|
|
since: z.string().optional(),
|
|
});
|
|
|
|
// Schema including signature for verification
|
|
const signedGossipSchema = gossipPayloadSchema.extend({
|
|
signature: z.string(),
|
|
});
|
|
|
|
/**
|
|
* POST /api/swarm/gossip
|
|
*
|
|
* Receives gossip from another node and responds with our own data.
|
|
* This is the core of the epidemic protocol - nodes exchange what they know.
|
|
*
|
|
* SECURITY: All gossip requests must be signed by the sender node.
|
|
*/
|
|
export async function POST(request: Request) {
|
|
try {
|
|
const body = await request.json();
|
|
const data = signedGossipSchema.parse(body);
|
|
|
|
const ourDomain = process.env.NEXT_PUBLIC_NODE_DOMAIN;
|
|
|
|
if (!isPublicSwarmDomain(ourDomain)) {
|
|
return NextResponse.json(
|
|
{ error: 'This node is not configured for public swarm participation' },
|
|
{ status: 503 }
|
|
);
|
|
}
|
|
|
|
if (!isPublicSwarmDomain(data.sender)) {
|
|
return NextResponse.json(
|
|
{ error: 'Swarm nodes must use a public ICANN domain' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
// Don't process gossip from ourselves
|
|
if (getPublicSwarmDomain(data.sender) === getPublicSwarmDomain(ourDomain)) {
|
|
return NextResponse.json(
|
|
{ error: 'Cannot gossip with self' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
// SECURITY: Verify the node signature before processing
|
|
const { signature, ...payload } = data;
|
|
const isValid = await verifySwarmRequest(payload, signature, data.sender);
|
|
|
|
if (!isValid) {
|
|
console.warn(`[Swarm] Invalid signature for gossip from ${data.sender}`);
|
|
return NextResponse.json(
|
|
{ error: 'Invalid signature' },
|
|
{ status: 403 }
|
|
);
|
|
}
|
|
|
|
console.log(`[Swarm] Gossip from ${data.sender}: ${data.nodes.length} nodes, ${data.handles?.length || 0} handles`);
|
|
|
|
// Process the incoming gossip and build our response
|
|
const response = await processGossip(payload as SwarmGossipPayload);
|
|
|
|
// Mark the sender as successfully contacted
|
|
await markNodeSuccess(data.sender);
|
|
|
|
console.log(`[Swarm] Gossip response to ${data.sender}: ${response.nodes.length} nodes, ${response.handles?.length || 0} handles`);
|
|
|
|
return NextResponse.json(response);
|
|
} catch (error) {
|
|
if (error instanceof z.ZodError) {
|
|
return NextResponse.json(
|
|
{ error: 'Invalid gossip payload', details: error.issues },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
console.error('Swarm gossip error:', error);
|
|
return NextResponse.json(
|
|
{ error: 'Failed to process gossip' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|