2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import read from '@/services/note/read';
|
|
|
|
import { Notes, Followings } from '@/models/index';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { Brackets } from 'typeorm';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { generateBlockedUserQuery } from '../../common/generate-block-query';
|
2021-10-31 08:30:22 +02:00
|
|
|
import { generateMutedNoteThreadQuery } from '../../common/generate-muted-note-thread-query';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
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
|
2021-05-21 08:13:03 +03:00
|
|
|
.where(`'{"${user.id}"}' <@ note.mentions`)
|
|
|
|
.orWhere(`'{"${user.id}"}' <@ note.visibleUserIds`);
|
2019-04-07 15:50:36 +03:00
|
|
|
}))
|
2021-03-21 05:33:37 +02:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 05:31:56 +02:00
|
|
|
.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);
|
2021-10-31 08:30:22 +02:00
|
|
|
generateMutedNoteThreadQuery(query, user);
|
2021-08-17 15:48:59 +03:00
|
|
|
generateBlockedUserQuery(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-23 08:12:47 +02:00
|
|
|
read(user.id, mentions);
|
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
|
|
|
});
|