2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { Notes, Followings } from '../../../../models';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
2020-07-28 03:38:41 +03:00
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Brackets } from 'typeorm';
|
2021-03-19 13:43:24 +02:00
|
|
|
import { readMention } from '../../../../services/note/read-mention';
|
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
|
|
|
},
|
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2018-09-16 16:48:57 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
following: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-09-16 16:48:57 +03:00
|
|
|
default: false
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-16 16:48:57 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-16 16:48:57 +03:00
|
|
|
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
|
|
|
},
|
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
|
|
|
},
|
2018-09-17 20:14:12 +03:00
|
|
|
|
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
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 04:20:58 +02:00
|
|
|
items: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
2018-09-16 16:48:57 +03:00
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const followingQuery = Followings.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: user.id });
|
|
|
|
|
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`:meId = ANY(note.mentions)`, { meId: user.id })
|
|
|
|
.orWhere(`:meId = ANY(note.visibleUserIds)`, { meId: user.id });
|
|
|
|
}))
|
2021-03-20 06:54:59 +02:00
|
|
|
.leftJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2018-12-29 18:40:24 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
generateVisibilityQuery(query, user);
|
2020-07-28 03:38:41 +03:00
|
|
|
generateMutedUserQuery(query, user);
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-09-17 20:14:12 +03:00
|
|
|
if (ps.visibility) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere('note.visibility = :visibility', { visibility: ps.visibility });
|
2018-09-17 20:14:12 +03:00
|
|
|
}
|
|
|
|
|
2018-09-16 16:48:57 +03:00
|
|
|
if (ps.following) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere(`((note.userId IN (${ followingQuery.getQuery() })) OR (note.userId = :meId))`, { meId: user.id });
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const mentions = await query.take(ps.limit!).getMany();
|
2018-10-29 08:09:03 +02:00
|
|
|
|
2021-03-19 13:43:24 +02:00
|
|
|
readMention(user.id, mentions.map(n => n.id));
|
2019-02-22 04:46:58 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(mentions, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|