2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2018-09-23 16:05:46 +09:00
|
|
|
import read from '../../../../services/note/read';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { Notes, Followings } from '../../../../models';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Brackets } from 'typeorm';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-29 06:59:43 +09:00
|
|
|
'ja-JP': '自分に言及している投稿の一覧を取得します。',
|
|
|
|
'en-US': 'Get mentions of myself.'
|
2018-07-17 04:36:44 +09:00
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-16 22:48:57 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2018-09-16 22:48:57 +09:00
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
following: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.bool,
|
2018-09-16 22:48:57 +09:00
|
|
|
default: false
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-16 22:48:57 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
limit: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-16 22:48:57 +09:00
|
|
|
default: 10
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
sinceId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
untilId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-18 02:14:12 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
visibility: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.str,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2019-02-23 11:20:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2018-09-16 22:48:57 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 21:50:36 +09: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 });
|
|
|
|
}))
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2018-12-30 01:40:24 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
generateVisibilityQuery(query, user);
|
|
|
|
generateMuteQuery(query, user);
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-09-18 02:14:12 +09:00
|
|
|
if (ps.visibility) {
|
2019-04-07 21:50:36 +09:00
|
|
|
query.andWhere('note.visibility = :visibility', { visibility: ps.visibility });
|
2018-09-18 02:14:12 +09:00
|
|
|
}
|
|
|
|
|
2018-09-16 22:48:57 +09:00
|
|
|
if (ps.following) {
|
2019-04-07 21:50:36 +09:00
|
|
|
query.andWhere(`((note.userId IN (${ followingQuery.getQuery() })) OR (note.userId = :meId))`, { meId: user.id });
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2019-04-13 01:43:22 +09:00
|
|
|
const mentions = await query.take(ps.limit!).getMany();
|
2018-10-29 15:09:03 +09:00
|
|
|
|
2018-12-11 20:36:55 +09:00
|
|
|
for (const note of mentions) {
|
2019-04-07 21:50:36 +09:00
|
|
|
read(user.id, note.id);
|
2018-12-11 20:36:55 +09:00
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Notes.packMany(mentions, user);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|