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