2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Notes } from '@/models/index';
|
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
|
|
|
import { activeUsersChart } from '@/services/chart/index';
|
|
|
|
import { generateRepliesQuery } from '../../common/generate-replies-query';
|
|
|
|
import { generateMutedNoteQuery } from '../../common/generate-muted-note-query';
|
|
|
|
import { generateBlockedUserQuery } from '../../common/generate-block-query';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
withFiles: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-05 16:55:51 +02:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceDate: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilDate: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
gtlDisabled: {
|
|
|
|
message: 'Global timeline has been disabled.',
|
|
|
|
code: 'GTL_DISABLED',
|
|
|
|
id: '0332fc13-6ab2-4427-ae80-a9fadffd1a6b'
|
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
}
|
|
|
|
};
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const m = await fetchMeta();
|
|
|
|
if (m.disableGlobalTimeline) {
|
2019-01-15 18:30:55 +01:00
|
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.gtlDisabled);
|
2019-01-15 18:30:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
//#region Construct query
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere('note.visibility = \'public\'')
|
2020-08-18 15:44:21 +02:00
|
|
|
.andWhere('note.channelId IS NULL')
|
2021-03-21 04:33:37 +01:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 04:31:56 +01:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2018-07-15 10:50:24 +02:00
|
|
|
|
2020-02-15 13:39:38 +01:00
|
|
|
generateRepliesQuery(query, user);
|
2020-07-28 02:38:41 +02:00
|
|
|
if (user) generateMutedUserQuery(query, user);
|
2020-07-27 06:34:20 +02:00
|
|
|
if (user) generateMutedNoteQuery(query, user);
|
2021-08-17 14:48:59 +02:00
|
|
|
if (user) generateBlockedUserQuery(query, user);
|
2018-05-28 14:59:57 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2018-05-28 14:59:57 +02:00
|
|
|
}
|
2019-04-07 14:50:36 +02:00
|
|
|
//#endregion
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2019-04-27 04:17:03 +02:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
|
|
|
});
|
2018-06-06 23:13:57 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(timeline, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|