46 lines
1.7 KiB
JavaScript
46 lines
1.7 KiB
JavaScript
import { IsNull } from "typeorm";
|
|
import config from "../../config/index.js";
|
|
import { renderActivity } from "../../remote/activitypub/renderer/index.js";
|
|
import renderOrderedCollection from "../../remote/activitypub/renderer/ordered-collection.js";
|
|
import { Users, Notes, UserNotePinings } from "../../models/index.js";
|
|
import { checkFetch } from "../../remote/activitypub/check-fetch.js";
|
|
import { fetchMeta } from "../../misc/fetch-meta.js";
|
|
import { setResponseType } from "../activitypub.js";
|
|
export default (async (ctx)=>{
|
|
const verify = await checkFetch(ctx.req);
|
|
if (verify !== 200) {
|
|
ctx.status = verify;
|
|
return;
|
|
}
|
|
const userId = ctx.params.user;
|
|
const user = await Users.findOneBy({
|
|
id: userId,
|
|
host: IsNull()
|
|
});
|
|
if (user == null) {
|
|
ctx.status = 404;
|
|
return;
|
|
}
|
|
const pinings = await UserNotePinings.find({
|
|
where: {
|
|
userId: user.id
|
|
},
|
|
order: {
|
|
id: "DESC"
|
|
}
|
|
});
|
|
const pinnedNotes = await Promise.all(pinings.map((pining)=>Notes.findOneByOrFail({
|
|
id: pining.noteId
|
|
})));
|
|
const renderedNotes = pinnedNotes.map((note)=>`${config.url}/notes/${note.id}`);
|
|
const rendered = renderOrderedCollection(`${config.url}/users/${userId}/collections/featured`, renderedNotes.length, undefined, undefined, renderedNotes);
|
|
ctx.body = renderActivity(rendered);
|
|
const meta = await fetchMeta();
|
|
if (meta.secureMode || meta.privateMode) {
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
|
} else {
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
|
}
|
|
setResponseType(ctx);
|
|
});
|