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-04-07 15:50:36 +03:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Notes, Followings } from '../../../../models';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { activeUsersChart } from '../../../../services/chart';
|
|
|
|
import { Brackets } from 'typeorm';
|
2020-02-15 14:39:38 +02:00
|
|
|
import { generateRepliesQuery } from '../../common/generate-replies-query';
|
2020-02-18 01:41:32 +02:00
|
|
|
import { injectPromo } from '../../common/inject-promo';
|
2020-02-18 12:05:11 +02:00
|
|
|
import { injectFeatured } from '../../common/inject-featured';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-06 14:40:44 +03:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': 'タイムラインを取得します。',
|
|
|
|
'en-US': 'Get timeline of myself.'
|
2018-07-06 14:40:44 +03:00
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
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 00:58:45 +03:00
|
|
|
|
2018-07-06 14:40:44 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-07-06 14:40:44 +03:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': '最大数'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
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-07-06 14:40:44 +03:00
|
|
|
desc: {
|
2019-04-07 15:50:36 +03:00
|
|
|
'ja-JP': '指定すると、その投稿を基点としてより新しい投稿を取得します'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2017-11-11 03:58:13 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-07-06 14:40:44 +03:00
|
|
|
desc: {
|
2019-04-07 15:50:36 +03:00
|
|
|
'ja-JP': '指定すると、その投稿を基点としてより古い投稿を取得します'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2017-11-11 03:58:13 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceDate: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num,
|
2018-07-06 14:40:44 +03:00
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilDate: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num,
|
2018-07-06 14:40:44 +03:00
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-04-21 05:42:38 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeMyRenotes: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-07-06 14:40:44 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-04-21 05:42:38 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeRenotedMyNotes: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-07-06 14:40:44 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
2018-07-06 14:40:44 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-07-06 14:40:44 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeLocalRenotes: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-08-16 17:59:22 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
2018-08-16 17:59:22 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-08-16 17:59:22 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
withFiles: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-07-06 14:40:44 +03:00
|
|
|
desc: {
|
2018-09-05 17:55:51 +03:00
|
|
|
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します'
|
|
|
|
}
|
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-07-06 14:40:44 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2017-11-01 12:33:08 +02:00
|
|
|
//#region Construct query
|
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, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.userId IN (${ followingQuery.getQuery() })`)
|
|
|
|
.orWhere('note.userId = :meId', { meId: user.id });
|
|
|
|
}))
|
|
|
|
.leftJoinAndSelect('note.user', 'user')
|
|
|
|
.setParameters(followingQuery.getParameters());
|
|
|
|
|
2020-02-15 14:39:38 +02:00
|
|
|
generateRepliesQuery(query, user);
|
2019-04-07 15:50:36 +03:00
|
|
|
generateVisibilityQuery(query, user);
|
|
|
|
generateMuteQuery(query, user);
|
|
|
|
|
2018-07-06 14:40:44 +03:00
|
|
|
if (ps.includeMyRenotes === false) {
|
2019-08-26 21:24:35 +03:00
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.userId != :meId', { meId: 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-04-21 05:42:38 +03:00
|
|
|
}
|
|
|
|
|
2018-07-06 14:40:44 +03:00
|
|
|
if (ps.includeRenotedMyNotes === false) {
|
2019-08-26 21:24:35 +03:00
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.renoteUserId != :meId', { meId: 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-04-21 05:42:38 +03:00
|
|
|
}
|
|
|
|
|
2018-08-16 17:59:22 +03:00
|
|
|
if (ps.includeLocalRenotes === false) {
|
2019-08-26 21:24:35 +03:00
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.renoteUserHost IS NOT NULL');
|
|
|
|
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-06-07 00:13:57 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
2017-11-01 12:33:08 +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();
|
2019-01-17 10:16:08 +02:00
|
|
|
|
2020-02-18 12:05:11 +02:00
|
|
|
await injectPromo(timeline, user);
|
|
|
|
await injectFeatured(timeline, user);
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2019-04-27 05:17:03 +03:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(timeline, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|