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