2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09: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 21:50:36 +09:00
|
|
|
import { Brackets } from 'typeorm';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { generateBlockedUserQuery } from '../../common/generate-block-query';
|
2018-09-05 23:55:51 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['users', 'notes'],
|
|
|
|
|
2018-09-05 23:55:51 +09:00
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
userId: {
|
2019-02-22 11:46:58 +09:00
|
|
|
validator: $.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
includeReplies: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 23:55:51 +09:00
|
|
|
default: true,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +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-05 23:55:51 +09:00
|
|
|
default: 10,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55: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
|
|
|
},
|
2018-09-05 23:55: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-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
sinceDate: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
untilDate: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
includeMyRenotes: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 23:55:51 +09:00
|
|
|
default: true,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
withFiles: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 23:55:51 +09:00
|
|
|
default: false,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-09-05 23:55:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
fileType: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.arr($.str),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2019-01-11 08:10:39 +09:00
|
|
|
|
|
|
|
excludeNsfw: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.bool,
|
2019-01-11 08:10:39 +09:00
|
|
|
default: false,
|
|
|
|
},
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
2018-03-27 16:51:12 +09:00
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 11:20:58 +09:00
|
|
|
items: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 11:20:58 +09:00
|
|
|
},
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '27e494ba-2ac2-48e8-893b-10d4d8c2387b'
|
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2016-12-29 07:49:51 +09:00
|
|
|
// Lookup user
|
2019-02-22 14:02:56 +09: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 13:08:33 +09:00
|
|
|
});
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-11-14 08:21:19 +09:00
|
|
|
//#region Construct query
|
2019-04-18 22:00:11 +09:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
2019-04-07 21:50:36 +09:00
|
|
|
.andWhere('note.userId = :userId', { userId: user.id })
|
2021-03-21 12:33:37 +09:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 12:31:56 +09:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2017-11-14 08:21:19 +09:00
|
|
|
|
2019-12-12 00:49:30 +09:00
|
|
|
generateVisibilityQuery(query, me);
|
2020-07-28 09:38:41 +09:00
|
|
|
if (me) generateMutedUserQuery(query, me, user);
|
2021-08-17 21:48:59 +09:00
|
|
|
if (me) generateBlockedUserQuery(query, me);
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
}
|
2019-01-08 21:02:00 +09:00
|
|
|
|
2019-04-13 01:43:22 +09:00
|
|
|
if (ps.fileType != null) {
|
2019-04-07 21:50:36 +09:00
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
query.andWhere(new Brackets(qb => {
|
2019-04-13 01:43:22 +09:00
|
|
|
for (const type of ps.fileType!) {
|
|
|
|
const i = ps.fileType!.indexOf(type);
|
2019-04-07 21:50:36 +09:00
|
|
|
qb.orWhere(`:type${i} = ANY(note.attachedFileTypes)`, { [`type${i}`]: type });
|
|
|
|
}
|
|
|
|
}));
|
2017-11-14 08:21:19 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
if (ps.excludeNsfw) {
|
2019-08-27 17:33:07 +09: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 21:50:36 +09:00
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2018-09-05 23:55:51 +09:00
|
|
|
if (!ps.includeReplies) {
|
2019-04-07 21:50:36 +09:00
|
|
|
query.andWhere('note.replyId IS NULL');
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2018-12-26 23:11:51 +09:00
|
|
|
if (ps.includeMyRenotes === false) {
|
2019-08-27 03:24:35 +09: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 23:11:51 +09:00
|
|
|
}
|
|
|
|
|
2017-11-14 08:21:19 +09:00
|
|
|
//#endregion
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-13 01:43:22 +09:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-15 23:29:26 +09:00
|
|
|
return await Notes.packMany(timeline, me);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|