47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
|
|
export const route: Route = {
|
|
path: '/user/:username',
|
|
categories: ['social-media'],
|
|
example: '/farcaster/user/vitalik.eth',
|
|
parameters: { username: 'Farcaster username' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['warpcast.com/:username'],
|
|
target: '/user/:username',
|
|
},
|
|
],
|
|
name: 'Farcaster User',
|
|
maintainers: ['DIYgod'],
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const username = ctx.req.param('username');
|
|
|
|
const user = (await got(`https://client.warpcast.com/v2/user-by-username?username=${username}`)).data.result.user;
|
|
|
|
const casts = (await got(`https://client.warpcast.com/v2/casts?fid=${user.fid}&limit=100`)).data.result.casts;
|
|
|
|
return {
|
|
title: `${user.displayName} on Farcaster`,
|
|
link: `https://warpcast.com/${username}`,
|
|
item: casts.map((item) => ({
|
|
title: item.text,
|
|
description: `${item.parentAuthor ? `Replying to @${item.parentAuthor.username}: ` : ''}${item.text} ${item.embeds?.urls?.map((url) => `<a href="${url.openGraph.url}">${url.openGraph.title}</a>`).join(' ') || ''} ${item.embeds?.images?.map((image) => `<img src="${image.url}" />`).join(' ') || ''}`,
|
|
link: `https://warpcast.com/${username}/cast/${item.hash}`,
|
|
pubDate: new Date(item.timestamp).toUTCString(),
|
|
guid: item.hash,
|
|
})),
|
|
};
|
|
}
|