2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note from '../../../../models/note';
|
2019-01-24 16:06:20 +01:00
|
|
|
import { getFriendIds, getFriends } from '../../common/get-friends';
|
2018-10-03 17:39:11 +02:00
|
|
|
import { packMany } from '../../../../models/note';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2018-09-23 09:05:46 +02:00
|
|
|
import read from '../../../../services/note/read';
|
2019-02-01 01:57:51 +01:00
|
|
|
import { getHideUserIds } from '../../common/get-hide-users';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '自分に言及している投稿の一覧を取得します。',
|
|
|
|
'en-US': 'Get mentions of myself.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
requireCredential: true,
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
following: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-16 15:48:57 +02:00
|
|
|
default: false
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-16 15:48:57 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-16 15:48:57 +02:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
},
|
2018-09-17 19:14:12 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
visibility: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.str,
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-16 15:48:57 +02:00
|
|
|
}
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-01-24 16:06:20 +01:00
|
|
|
// フォローを取得
|
|
|
|
const followings = await getFriends(user._id);
|
|
|
|
|
|
|
|
const visibleQuery = [{
|
|
|
|
visibility: { $in: [ 'public', 'home' ] }
|
|
|
|
}, {
|
2019-01-29 09:34:43 +01:00
|
|
|
// myself (for followers/specified/private)
|
2019-01-24 16:06:20 +01:00
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
// to me (for specified)
|
|
|
|
visibleUserIds: { $in: [ user._id ] }
|
|
|
|
}, {
|
|
|
|
visibility: 'followers',
|
2019-01-29 09:34:43 +01:00
|
|
|
$or: [{
|
|
|
|
// フォロワーの投稿
|
|
|
|
userId: { $in: followings.map(f => f.id) },
|
|
|
|
}, {
|
|
|
|
// 自分の投稿へのリプライ
|
|
|
|
'_reply.userId': user._id,
|
|
|
|
}, {
|
|
|
|
// 自分へのメンションが含まれている
|
|
|
|
mentions: { $in: [ user._id ] }
|
|
|
|
}]
|
2019-01-24 16:06:20 +01:00
|
|
|
}];
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const query = {
|
2019-01-24 16:06:20 +01:00
|
|
|
$and: [{
|
|
|
|
deletedAt: null,
|
|
|
|
}, {
|
|
|
|
$or: visibleQuery,
|
|
|
|
}],
|
2018-10-11 22:10:40 +02:00
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
$or: [{
|
|
|
|
mentions: user._id
|
|
|
|
}, {
|
|
|
|
visibleUserIds: user._id
|
|
|
|
}]
|
2017-03-02 22:37:09 +01:00
|
|
|
} as any;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-01 01:57:51 +01:00
|
|
|
// 隠すユーザーを取得
|
|
|
|
const hideUserIds = await getHideUserIds(user);
|
2018-12-29 17:40:24 +01:00
|
|
|
|
2019-02-01 01:57:51 +01:00
|
|
|
if (hideUserIds && hideUserIds.length > 0) {
|
2018-12-29 17:40:24 +01:00
|
|
|
query.userId = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-12-29 17:40:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_reply.userId'] = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-12-29 17:40:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_renote.userId'] = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-12-29 17:40:24 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
2018-09-17 19:14:12 +02:00
|
|
|
if (ps.visibility) {
|
|
|
|
query.visibility = ps.visibility;
|
|
|
|
}
|
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
if (ps.following) {
|
2018-04-19 05:43:25 +02:00
|
|
|
const followingIds = await getFriendIds(user._id);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
query.userId = {
|
2016-12-28 23:49:51 +01:00
|
|
|
$in: followingIds
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
if (ps.sinceId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-16 15:48:57 +02:00
|
|
|
$gt: ps.sinceId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2018-09-16 15:48:57 +02:00
|
|
|
} else if (ps.untilId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2018-09-16 15:48:57 +02:00
|
|
|
$lt: ps.untilId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
const mentions = await Note.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
2018-10-29 07:09:03 +01:00
|
|
|
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const note of mentions) {
|
|
|
|
read(user._id, note._id);
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
|
|
|
|
return await packMany(mentions, user);
|
|
|
|
});
|