add account lookup

This commit is contained in:
cutestnekoaqua 2023-02-12 00:10:10 +01:00
parent 54de8b92d8
commit 631355c2c8
No known key found for this signature in database
GPG key ID: 6BF0964A5069C1E0

View file

@ -63,6 +63,31 @@ export function apiAccountMastodon(router: Router): void {
ctx.body = e.response.data;
}
});
router.get(
"/v1/accounts/lookup",
async (ctx) => {
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
const accessTokens = ctx.headers.authorization;
const client = getClient(BASE_URL, accessTokens);
try {
const data = await client.searchAccount((ctx.query.acct || '').toString(), {
resolve: true
});
ctx.body = data.data[0];
if (data.data.length === 0) {
ctx.status = 404;
ctx.body = {
error: "Record not found"
}
}
} catch (e: any) {
console.error(e);
console.error(e.response.data);
ctx.status = 401;
ctx.body = e.response.data;
}
},
);
router.get<{ Params: { id: string } }>(
"/v1/accounts/:id",
async (ctx) => {