2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
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-04-07 14:50:36 +02: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-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
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
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
|
|
|
},
|
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
|
|
|
},
|
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
|
|
|
},
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
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-04-07 14:50:36 +02: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-29 17:40:24 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
generateVisibilityQuery(query, user);
|
|
|
|
generateMuteQuery(query, user);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-09-17 19:14:12 +02:00
|
|
|
if (ps.visibility) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere('note.visibility = :visibility', { visibility: ps.visibility });
|
2018-09-17 19:14:12 +02:00
|
|
|
}
|
|
|
|
|
2018-09-16 15:48:57 +02:00
|
|
|
if (ps.following) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere(`((note.userId IN (${ followingQuery.getQuery() })) OR (note.userId = :meId))`, { meId: user.id });
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const mentions = await query.take(ps.limit!).getMany();
|
2018-10-29 07:09:03 +01:00
|
|
|
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const note of mentions) {
|
2019-04-07 14:50:36 +02:00
|
|
|
read(user.id, note.id);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(mentions, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|