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

149 lines
2.6 KiB
TypeScript
Raw Normal View History

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