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