2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00: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 { Followings, Notes } from '@/models/index';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Brackets } from 'typeorm';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
2021-12-09 12:38:56 +00:00
|
|
|
import { generateMutedInstanceQuery } from '../../common/generate-muted-instance-query';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { activeUsersChart } from '@/services/chart/index';
|
|
|
|
import { generateRepliesQuery } from '../../common/generate-replies-query';
|
|
|
|
import { generateMutedNoteQuery } from '../../common/generate-muted-note-query';
|
|
|
|
import { generateChannelQuery } from '../../common/generate-channel-query';
|
|
|
|
import { generateBlockedUserQuery } from '../../common/generate-block-query';
|
2018-07-11 05:03:21 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2019-04-18 05:58:43 +00:00
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-07-11 05:03:21 +00:00
|
|
|
default: 10,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceDate: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilDate: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeMyRenotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-07-11 05:03:21 +00:00
|
|
|
default: true,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeRenotedMyNotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-07-11 05:03:21 +00:00
|
|
|
default: true,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeLocalRenotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-08-16 14:59:22 +00:00
|
|
|
default: true,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-08-16 14:59:22 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
withFiles: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
res: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 02:20:58 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
stlDisabled: {
|
2019-04-08 14:05:41 +00:00
|
|
|
message: 'Hybrid timeline has been disabled.',
|
2019-02-22 02:46:58 +00:00
|
|
|
code: 'STL_DISABLED',
|
|
|
|
id: '620763f4-f621-4533-ab33-0577a1a3c342'
|
|
|
|
},
|
2019-01-15 17:30:55 +00:00
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
2019-01-15 17:30:55 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const m = await fetchMeta();
|
|
|
|
if (m.disableLocalTimeline && !user.isAdmin && !user.isModerator) {
|
|
|
|
throw new ApiError(meta.errors.stlDisabled);
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//#region Construct query
|
2019-04-07 12:50:36 +00: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() })) OR (note.userId = :meId))`, { meId: user.id })
|
|
|
|
.orWhere('(note.visibility = \'public\') AND (note.userHost IS NULL)');
|
|
|
|
}))
|
2021-03-21 03:33:37 +00:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 03:31:56 +00:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser')
|
2019-04-07 12:50:36 +00:00
|
|
|
.setParameters(followingQuery.getParameters());
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
generateChannelQuery(query, user);
|
2020-02-15 12:39:38 +00:00
|
|
|
generateRepliesQuery(query, user);
|
2019-04-07 12:50:36 +00:00
|
|
|
generateVisibilityQuery(query, user);
|
2020-07-28 00:38:41 +00:00
|
|
|
generateMutedUserQuery(query, user);
|
2021-12-09 12:38:56 +00:00
|
|
|
generateMutedInstanceQuery(query, user);
|
2020-07-27 04:34:20 +00:00
|
|
|
generateMutedNoteQuery(query, user);
|
2021-08-17 12:48:59 +00:00
|
|
|
generateBlockedUserQuery(query, user);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
if (ps.includeMyRenotes === false) {
|
2019-08-26 18:24:35 +00: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-07-11 05:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.includeRenotedMyNotes === false) {
|
2019-08-26 18:24:35 +00: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-07-11 05:03:21 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 14:59:22 +00:00
|
|
|
if (ps.includeLocalRenotes === false) {
|
2019-08-26 18:24:35 +00: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-08-16 14:59:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2019-01-17 08:16:08 +00:00
|
|
|
|
2019-04-27 02:17:03 +00:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
|
|
|
});
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await Notes.packMany(timeline, user);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|