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 { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { Notes } from '@/models/index';
|
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-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-12-09 14:38:56 +02:00
|
|
|
import { generateMutedInstanceQuery } from '../../common/generate-muted-instance-query';
|
2018-09-05 17:55:51 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['users', 'notes'],
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
2019-02-22 04:46:58 +02:00
|
|
|
validator: $.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeReplies: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +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-05 17:55:51 +03:00
|
|
|
default: 10,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03: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
|
|
|
},
|
2018-09-05 17:55:51 +03: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-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceDate: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilDate: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeMyRenotes: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
withFiles: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: false,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
fileType: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.arr($.str),
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2019-01-11 01:10:39 +02:00
|
|
|
|
|
|
|
excludeNsfw: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2019-01-11 01:10:39 +02:00
|
|
|
default: false,
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
2018-03-27 10:51:12 +03: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',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '27e494ba-2ac2-48e8-893b-10d4d8c2387b',
|
|
|
|
},
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, me) => {
|
2016-12-29 00:49:51 +02:00
|
|
|
// Lookup user
|
2019-02-22 07:02:56 +02:00
|
|
|
const user = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2017-02-22 06:08:33 +02:00
|
|
|
});
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2017-11-14 01:21:19 +02:00
|
|
|
//#region Construct query
|
2019-04-18 16:00:11 +03:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
2019-04-07 15:50:36 +03:00
|
|
|
.andWhere('note.userId = :userId', { userId: user.id })
|
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');
|
2017-11-14 01:21:19 +02:00
|
|
|
|
2019-12-11 17:49:30 +02:00
|
|
|
generateVisibilityQuery(query, me);
|
2020-07-28 03:38:41 +03:00
|
|
|
if (me) generateMutedUserQuery(query, me, user);
|
2021-08-17 15:48:59 +03:00
|
|
|
if (me) generateBlockedUserQuery(query, me);
|
2021-12-09 14:38:56 +02:00
|
|
|
if (me) generateMutedInstanceQuery(query, me);
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
}
|
2019-01-08 14:02:00 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (ps.fileType != null) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
query.andWhere(new Brackets(qb => {
|
2019-04-12 19:43:22 +03:00
|
|
|
for (const type of ps.fileType!) {
|
|
|
|
const i = ps.fileType!.indexOf(type);
|
2019-04-07 15:50:36 +03:00
|
|
|
qb.orWhere(`:type${i} = ANY(note.attachedFileTypes)`, { [`type${i}`]: type });
|
|
|
|
}
|
|
|
|
}));
|
2017-11-14 01:21:19 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (ps.excludeNsfw) {
|
2019-08-27 11:33:07 +03:00
|
|
|
query.andWhere('note.cw IS NULL');
|
|
|
|
query.andWhere('0 = (SELECT COUNT(*) FROM drive_file df WHERE df.id = ANY(note."fileIds") AND df."isSensitive" = TRUE)');
|
2019-04-07 15:50:36 +03:00
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (!ps.includeReplies) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere('note.replyId IS NULL');
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-12-26 16:11:51 +02:00
|
|
|
if (ps.includeMyRenotes === false) {
|
2019-08-26 21:24:35 +03:00
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.userId != :userId', { userId: user.id });
|
|
|
|
qb.orWhere('note.renoteId IS NULL');
|
|
|
|
qb.orWhere('note.text IS NOT NULL');
|
|
|
|
qb.orWhere('note.fileIds != \'{}\'');
|
|
|
|
qb.orWhere('0 < (SELECT COUNT(*) FROM poll WHERE poll."noteId" = note.id)');
|
|
|
|
}));
|
2018-12-26 16:11:51 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 01:21:19 +02:00
|
|
|
//#endregion
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-15 17:29:26 +03:00
|
|
|
return await Notes.packMany(timeline, me);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|