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-24 02:11:19 +03:00
|
|
|
import { fetchMeta } from '../../../../misc/fetch-meta';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Notes } from '../../../../models';
|
2020-07-28 03:38:41 +03:00
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { activeUsersChart } from '../../../../services/chart';
|
2020-02-15 14:39:38 +02:00
|
|
|
import { generateRepliesQuery } from '../../common/generate-replies-query';
|
2020-07-27 07:34:20 +03:00
|
|
|
import { generateMutedNoteQuery } from '../../common/generate-muted-note-query';
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'グローバルタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
params: {
|
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
|
|
|
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
|
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-04-17 08:52:28 +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-04-17 08:52:28 +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-04-17 08:52:28 +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
|
|
|
},
|
2019-02-22 04:46:58 +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
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
gtlDisabled: {
|
|
|
|
message: 'Global timeline has been disabled.',
|
|
|
|
code: 'GTL_DISABLED',
|
|
|
|
id: '0332fc13-6ab2-4427-ae80-a9fadffd1a6b'
|
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
|
|
|
};
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const m = await fetchMeta();
|
|
|
|
if (m.disableGlobalTimeline) {
|
2019-01-15 19:30:55 +02:00
|
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.gtlDisabled);
|
2019-01-15 19:30:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 08:52:28 +03:00
|
|
|
//#region Construct query
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere('note.visibility = \'public\'')
|
2020-08-18 16:44:21 +03:00
|
|
|
.andWhere('note.channelId IS NULL')
|
2021-03-20 06:54:59 +02:00
|
|
|
.leftJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2018-07-15 11:50:24 +03:00
|
|
|
|
2020-02-15 14:39:38 +02:00
|
|
|
generateRepliesQuery(query, user);
|
2020-07-28 03:38:41 +03:00
|
|
|
if (user) generateMutedUserQuery(query, user);
|
2020-07-27 07:34:20 +03:00
|
|
|
if (user) generateMutedNoteQuery(query, user);
|
2018-05-28 15:59:57 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2018-05-28 15:59:57 +03:00
|
|
|
}
|
2019-04-07 15:50:36 +03:00
|
|
|
//#endregion
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2019-04-27 05:17:03 +03:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
|
|
|
});
|
2018-06-07 00:13:57 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(timeline, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|