feat(swarm): Add remote like tracking and federated like status queries

- Add remoteLikes table to track likes from federated nodes on local posts
- Implement deduplication logic in like/unlike endpoints to prevent duplicate remote likes
- Add GET endpoint at /api/swarm/posts/[id]/likes to query like status from origin nodes
- Enhance POST feed endpoint to separate local and swarm posts for interaction checks
- Query origin nodes in real-time to populate isLiked flag for federated posts in feeds
- Add error handling and 3-second timeout for remote like status queries
- Update schema to support remote like tracking with actor handle and domain
This commit is contained in:
Christomatt
2026-01-26 13:16:59 +01:00
parent f361e13e53
commit 08d507c196
5 changed files with 232 additions and 20 deletions
+32
View File
@@ -318,6 +318,38 @@ export const likesRelations = relations(likes, ({ one }) => ({
}),
}));
// ============================================
// REMOTE LIKES (likes from federated users on local posts)
// ============================================
export const remoteLikes = pgTable('remote_likes', {
id: uuid('id').primaryKey().defaultRandom(),
postId: uuid('post_id').notNull().references(() => posts.id, { onDelete: 'cascade' }),
actorHandle: text('actor_handle').notNull(), // e.g., "user"
actorNodeDomain: text('actor_node_domain').notNull(), // e.g., "other.node"
createdAt: timestamp('created_at').defaultNow().notNull(),
}, (table) => [
index('remote_likes_post_idx').on(table.postId),
index('remote_likes_actor_idx').on(table.actorHandle, table.actorNodeDomain),
uniqueIndex('remote_likes_unique').on(table.postId, table.actorHandle, table.actorNodeDomain),
]);
// ============================================
// REMOTE REPOSTS (reposts from federated users on local posts)
// ============================================
export const remoteReposts = pgTable('remote_reposts', {
id: uuid('id').primaryKey().defaultRandom(),
postId: uuid('post_id').notNull().references(() => posts.id, { onDelete: 'cascade' }),
actorHandle: text('actor_handle').notNull(),
actorNodeDomain: text('actor_node_domain').notNull(),
createdAt: timestamp('created_at').defaultNow().notNull(),
}, (table) => [
index('remote_reposts_post_idx').on(table.postId),
index('remote_reposts_actor_idx').on(table.actorHandle, table.actorNodeDomain),
uniqueIndex('remote_reposts_unique').on(table.postId, table.actorHandle, table.actorNodeDomain),
]);
// ============================================
// NOTIFICATIONS
// ============================================