[mastodon-client] GET /accounts/:id/lists

This commit is contained in:
Laura Hausmann 2023-10-02 19:33:11 +02:00
parent 239fef3e71
commit 4fe62e62c3
Signed by: zotan
GPG key ID: D044E84C5BE01605
2 changed files with 32 additions and 11 deletions

View file

@ -9,6 +9,7 @@ import authenticate from "@/server/api/authenticate.js";
import { NoteConverter } from "@/server/api/mastodon/converters/note.js";
import { UserHelpers } from "@/server/api/mastodon/helpers/user.js";
import { PaginationHelpers } from "@/server/api/mastodon/helpers/pagination.js";
import { ListHelpers } from "@/server/api/mastodon/helpers/list.js";
export function setupEndpointsAccount(router: Router): void {
router.get("/v1/accounts/verify_credentials", async (ctx) => {
@ -194,19 +195,21 @@ export function setupEndpointsAccount(router: Router): void {
router.get<{ Params: { id: string } }>(
"/v1/accounts/:id/lists",
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.getAccountLists(
convertId(ctx.params.id, IdType.IceshrimpId),
);
ctx.body = data.data.map((list) => convertList(list));
const auth = await authenticate(ctx.headers.authorization, null);
const user = auth[0] ?? null;
if (!user) {
ctx.status = 401;
return;
}
const member = await UserHelpers.getUserCached(convertId(ctx.params.id, IdType.IceshrimpId));
const results = await ListHelpers.getListsByMember(user, member);
ctx.body = results.map(p => convertList(p));
} catch (e: any) {
console.error(e);
console.error(e.response.data);
ctx.status = 401;
ctx.body = e.response.data;
ctx.status = 400;
ctx.body = { error: e.message };
}
},
);

View file

@ -123,4 +123,22 @@ export class ListHelpers {
title: result.name
};
}
public static async getListsByMember(user: ILocalUser, member: User): Promise<MastodonEntity.List[]> {
const joinQuery = UserListJoinings.createQueryBuilder('member')
.select("member.userListId")
.where("member.userId = :memberId");
const query = UserLists.createQueryBuilder('list')
.where("list.userId = :userId", {userId: user.id})
.andWhere(`list.id IN (${joinQuery.getQuery()})`)
.setParameters({memberId: member.id});
return query.getMany()
.then(results => results.map(result => {
return {
id: result.id,
title: result.name
}
}));
}
}