2019-02-05 02:48:08 +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';
|
2019-01-24 15:06:20 +00:00
|
|
|
import { getFriendIds, getFriends } 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';
|
2019-02-01 00:57:51 +00:00
|
|
|
import { getHideUserIds } from '../../common/get-hide-users';
|
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
|
|
|
},
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
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: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
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: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.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: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
transform: transform,
|
|
|
|
},
|
2018-09-17 17:14:12 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
visibility: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.str,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2018-09-16 13:48:57 +00:00
|
|
|
};
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-01-24 15:06:20 +00:00
|
|
|
// フォローを取得
|
|
|
|
const followings = await getFriends(user._id);
|
|
|
|
|
|
|
|
const visibleQuery = [{
|
|
|
|
visibility: { $in: [ 'public', 'home' ] }
|
|
|
|
}, {
|
2019-01-29 08:34:43 +00:00
|
|
|
// myself (for followers/specified/private)
|
2019-01-24 15:06:20 +00:00
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
// to me (for specified)
|
|
|
|
visibleUserIds: { $in: [ user._id ] }
|
|
|
|
}, {
|
|
|
|
visibility: 'followers',
|
2019-01-29 08:34:43 +00:00
|
|
|
$or: [{
|
|
|
|
// フォロワーの投稿
|
|
|
|
userId: { $in: followings.map(f => f.id) },
|
|
|
|
}, {
|
|
|
|
// 自分の投稿へのリプライ
|
|
|
|
'_reply.userId': user._id,
|
|
|
|
}, {
|
|
|
|
// 自分へのメンションが含まれている
|
|
|
|
mentions: { $in: [ user._id ] }
|
|
|
|
}]
|
2019-01-24 15:06:20 +00:00
|
|
|
}];
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
const query = {
|
2019-01-24 15:06:20 +00:00
|
|
|
$and: [{
|
|
|
|
deletedAt: null,
|
|
|
|
}, {
|
|
|
|
$or: visibleQuery,
|
|
|
|
}],
|
2018-10-11 20:10:40 +00:00
|
|
|
|
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
|
|
|
|
2019-02-01 00:57:51 +00:00
|
|
|
// 隠すユーザーを取得
|
|
|
|
const hideUserIds = await getHideUserIds(user);
|
2018-12-29 16:40:24 +00:00
|
|
|
|
2019-02-01 00:57:51 +00:00
|
|
|
if (hideUserIds && hideUserIds.length > 0) {
|
2018-12-29 16:40:24 +00:00
|
|
|
query.userId = {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-12-29 16:40:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_reply.userId'] = {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-12-29 16:40:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_renote.userId'] = {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-12-29 16:40:24 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
const mentions = await Note.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
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);
|
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
|
|
|
|
return await packMany(mentions, user);
|
|
|
|
});
|