2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2019-02-22 07:02:56 +02:00
|
|
|
import { getUser } from '../../common/getters';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { Notes } from '../../../../models';
|
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { Brackets } from 'typeorm';
|
2018-09-05 17:55:51 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーのタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
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-09-05 17:55:51 +03:00
|
|
|
desc: {
|
2018-11-03 15:49:36 +02:00
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
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,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'リプライを含めるか否か'
|
|
|
|
}
|
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,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '最大数'
|
|
|
|
}
|
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-09-05 17:55:51 +03:00
|
|
|
desc: {
|
2019-04-07 15:50:36 +03:00
|
|
|
'ja-JP': '指定すると、その投稿を基点としてより新しい投稿を取得します'
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
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-09-05 17:55:51 +03:00
|
|
|
desc: {
|
2019-04-07 15:50:36 +03:00
|
|
|
'ja-JP': '指定すると、その投稿を基点としてより古い投稿を取得します'
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
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-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
|
|
|
}
|
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-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
|
|
|
}
|
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,
|
|
|
|
desc: {
|
2019-08-26 21:24:35 +03:00
|
|
|
'ja-JP': 'Renoteを含めるかどうか'
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
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,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '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
|
|
|
fileType: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.arr($.str),
|
2018-10-19 03:20:11 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定された種類のファイルが添付された投稿のみを取得します'
|
|
|
|
}
|
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,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、NSFW指定されたファイルを除外します(fileTypeが指定されている場合のみ有効)'
|
|
|
|
}
|
|
|
|
},
|
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',
|
|
|
|
}
|
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',
|
|
|
|
id: '27e494ba-2ac2-48e8-893b-10d4d8c2387b'
|
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
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 })
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2017-11-14 01:21:19 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (me) generateVisibilityQuery(query, me);
|
2019-10-20 18:52:50 +03:00
|
|
|
if (me) generateMuteQuery(query, me, user);
|
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
|
|
|
});
|