iceshrimp-legacy/src/server/api/endpoints/notes/featured.ts

48 lines
867 B
TypeScript
Raw Normal View History

2018-10-25 00:04:15 +02:00
import $ from 'cafy';
import Note from '../../../../models/note';
import { packMany } from '../../../../models/note';
2018-11-02 05:47:44 +01:00
import define from '../../define';
2018-10-25 00:04:15 +02:00
export const meta = {
desc: {
'ja-JP': 'Featuredな投稿を取得します。',
'en-US': 'Get featured notes.'
},
requireCredential: false,
params: {
2018-11-01 19:32:24 +01:00
limit: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num.range(1, 30),
2018-10-25 00:04:15 +02:00
default: 10,
desc: {
'ja-JP': '最大数'
}
2018-11-01 19:32:24 +01:00
}
2018-10-25 00:04:15 +02:00
}
};
2018-11-02 05:47:44 +01:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2019-02-14 22:31:22 +01:00
const day = 1000 * 60 * 60 * 24 * 2;
2018-10-25 00:04:15 +02:00
const notes = await Note
.find({
createdAt: {
$gt: new Date(Date.now() - day)
},
deletedAt: null,
2019-02-14 22:31:22 +01:00
visibility: { $in: ['public', 'home'] },
'_user.host': null
2018-10-25 00:04:15 +02:00
}, {
limit: ps.limit,
sort: {
score: -1
},
hint: {
score: -1
}
});
2018-11-02 05:47:44 +01:00
res(await packMany(notes, user));
}));