mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 08:03:09 +02:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import * as Router from '@koa/router';
|
|
import config from '@/config/index';
|
|
import { renderActivity } from '@/remote/activitypub/renderer/index';
|
|
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection';
|
|
import { setResponseType } from '../activitypub';
|
|
import renderNote from '@/remote/activitypub/renderer/note';
|
|
import { Users, Notes, UserNotePinings } from '@/models/index';
|
|
|
|
export default async (ctx: Router.RouterContext) => {
|
|
const userId = ctx.params.user;
|
|
|
|
// Verify user
|
|
const user = await Users.findOne({
|
|
id: userId,
|
|
host: null,
|
|
});
|
|
|
|
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.findOneOrFail(pining.noteId)));
|
|
|
|
const renderedNotes = await Promise.all(pinnedNotes.map(note => renderNote(note)));
|
|
|
|
const rendered = renderOrderedCollection(
|
|
`${config.url}/users/${userId}/collections/featured`,
|
|
renderedNotes.length, undefined, undefined, renderedNotes
|
|
);
|
|
|
|
ctx.body = renderActivity(rendered);
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
setResponseType(ctx);
|
|
};
|