[mastodon-client] GET /media/:id

This commit is contained in:
Laura Hausmann 2023-09-29 21:24:16 +02:00
parent 9b223abeda
commit a2dce0fa85
Signed by: zotan
GPG key ID: D044E84C5BE01605
2 changed files with 25 additions and 8 deletions

View file

@ -9,17 +9,29 @@ import { FileConverter } from "@/server/api/mastodon/converters/file.js";
export function setupEndpointsMedia(router: Router, fileRouter: Router, upload: multer.Instance): void {
router.get<{ Params: { id: string } }>("/v1/media/:id", 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.getMedia(
convertId(ctx.params.id, IdType.IceshrimpId),
);
ctx.body = convertAttachment(data.data);
const auth = await authenticate(ctx.headers.authorization, null);
const user = auth[0] ?? null;
if (!user) {
ctx.status = 401;
return;
}
const id = convertId(ctx.params.id, IdType.IceshrimpId);
const file = await MediaHelpers.getMedia(user, id);
if (!file) {
ctx.status = 404;
ctx.body = { error: "File not found" };
return;
}
const attachment = FileConverter.encode(file);
ctx.body = convertAttachment(attachment);
} catch (e: any) {
console.error(e);
ctx.status = 401;
ctx.status = 500;
ctx.body = e.response.data;
}
});

View file

@ -15,4 +15,9 @@ export class MediaHelpers {
})
.then(p => DriveFiles.pack(p));
}
public static async getMedia(user: ILocalUser, id: string): Promise<Packed<"DriveFile"> | null> {
return DriveFiles.findOneBy({id: id, userId: user.id})
.then(p => p ? DriveFiles.pack(p) : null);
}
}