Sharkey/src/server/api/endpoints/notes/mentions.ts

98 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-04-07 20:30:37 +03:00
import Note from '../../../../models/note';
2018-04-19 06:43:25 +03:00
import { getFriendIds } from '../../common/get-friends';
import { packMany } from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import define from '../../define';
import read from '../../../../services/note/read';
2016-12-29 00:49:51 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '自分に言及している投稿の一覧を取得します。',
'en-US': 'Get mentions of myself.'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
2018-07-16 22:36:44 +03:00
params: {
2018-11-01 20:32:24 +02:00
following: {
validator: $.bool.optional,
default: false
2018-11-01 20:32:24 +02:00
},
2018-11-01 20:32:24 +02:00
limit: {
validator: $.num.optional.range(1, 100),
default: 10
2018-11-01 20:32:24 +02:00
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-11-01 20:32:24 +02:00
visibility: {
validator: $.str.optional,
},
}
};
2016-12-29 00:49:51 +02:00
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-03-29 08:48:47 +03:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
2018-03-29 08:48:47 +03:00
return rej('cannot set sinceId and untilId');
2016-12-29 00:49:51 +02:00
}
const query = {
deletedAt: null,
$or: [{
mentions: user._id
}, {
visibleUserIds: user._id
}]
2017-03-02 23:37:09 +02:00
} as any;
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
if (ps.visibility) {
query.visibility = ps.visibility;
}
if (ps.following) {
2018-04-19 06:43:25 +03:00
const followingIds = await getFriendIds(user._id);
2016-12-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
query.userId = {
2016-12-29 00:49:51 +02:00
$in: followingIds
};
}
if (ps.sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
$gt: ps.sinceId
2016-12-29 00:49:51 +02:00
};
} else if (ps.untilId) {
2016-12-29 00:49:51 +02:00
query._id = {
$lt: ps.untilId
2016-12-29 00:49:51 +02:00
};
}
2018-04-07 20:30:37 +03:00
const mentions = await Note
2017-01-17 04:11:22 +02:00
.find(query, {
limit: ps.limit,
2016-12-29 00:49:51 +02:00
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
res(await packMany(mentions, user));
2018-10-29 08:09:03 +02:00
for (const note of mentions) {
read(user._id, note._id);
}
2018-11-02 06:47:44 +02:00
}));