parent
d2bb35bcf3
commit
5b00fa6f82
4 changed files with 31 additions and 1 deletions
|
@ -806,6 +806,12 @@ export class NoteCreateService implements OnApplicationShutdown {
|
||||||
const redisPipeline = this.redisForTimelines.pipeline();
|
const redisPipeline = this.redisForTimelines.pipeline();
|
||||||
|
|
||||||
if (note.channelId) {
|
if (note.channelId) {
|
||||||
|
redisPipeline.xadd(
|
||||||
|
`userTimelineWithChannel:${user.id}`,
|
||||||
|
'MAXLEN', '~', note.userHost == null ? meta.perLocalUserUserTimelineCacheMax.toString() : meta.perRemoteUserUserTimelineCacheMax.toString(),
|
||||||
|
'*',
|
||||||
|
'note', note.id);
|
||||||
|
|
||||||
const channelFollowings = await this.channelFollowingsRepository.find({
|
const channelFollowings = await this.channelFollowingsRepository.find({
|
||||||
where: {
|
where: {
|
||||||
followeeId: note.channelId,
|
followeeId: note.channelId,
|
||||||
|
|
|
@ -44,6 +44,7 @@ export const paramDef = {
|
||||||
userId: { type: 'string', format: 'misskey:id' },
|
userId: { type: 'string', format: 'misskey:id' },
|
||||||
withReplies: { type: 'boolean', default: false },
|
withReplies: { type: 'boolean', default: false },
|
||||||
withRenotes: { type: 'boolean', default: true },
|
withRenotes: { type: 'boolean', default: true },
|
||||||
|
withChannelNotes: { type: 'boolean', default: false },
|
||||||
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
||||||
sinceId: { type: 'string', format: 'misskey:id' },
|
sinceId: { type: 'string', format: 'misskey:id' },
|
||||||
untilId: { type: 'string', format: 'misskey:id' },
|
untilId: { type: 'string', format: 'misskey:id' },
|
||||||
|
@ -82,9 +83,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
const limit = ps.limit + (ps.untilId ? 1 : 0); // untilIdに指定したものも含まれるため+1
|
const limit = ps.limit + (ps.untilId ? 1 : 0); // untilIdに指定したものも含まれるため+1
|
||||||
let noteIdsRes: [string, string[]][] = [];
|
let noteIdsRes: [string, string[]][] = [];
|
||||||
let repliesNoteIdsRes: [string, string[]][] = [];
|
let repliesNoteIdsRes: [string, string[]][] = [];
|
||||||
|
let channelNoteIdsRes: [string, string[]][] = [];
|
||||||
|
|
||||||
if (!ps.sinceId && !ps.sinceDate) {
|
if (!ps.sinceId && !ps.sinceDate) {
|
||||||
[noteIdsRes, repliesNoteIdsRes] = await Promise.all([
|
[noteIdsRes, repliesNoteIdsRes, channelNoteIdsRes] = await Promise.all([
|
||||||
this.redisForTimelines.xrevrange(
|
this.redisForTimelines.xrevrange(
|
||||||
ps.withFiles ? `userTimelineWithFiles:${ps.userId}` : `userTimeline:${ps.userId}`,
|
ps.withFiles ? `userTimelineWithFiles:${ps.userId}` : `userTimeline:${ps.userId}`,
|
||||||
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
||||||
|
@ -97,12 +99,20 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
'-',
|
'-',
|
||||||
'COUNT', limit)
|
'COUNT', limit)
|
||||||
: Promise.resolve([]),
|
: Promise.resolve([]),
|
||||||
|
ps.withChannelNotes
|
||||||
|
? this.redisForTimelines.xrevrange(
|
||||||
|
`userTimelineWithChannel:${ps.userId}`,
|
||||||
|
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
||||||
|
'-',
|
||||||
|
'COUNT', limit)
|
||||||
|
: Promise.resolve([]),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
let noteIds = Array.from(new Set([
|
let noteIds = Array.from(new Set([
|
||||||
...noteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId),
|
...noteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId),
|
||||||
...repliesNoteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId),
|
...repliesNoteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId),
|
||||||
|
...channelNoteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId),
|
||||||
]));
|
]));
|
||||||
noteIds.sort((a, b) => a > b ? -1 : 1);
|
noteIds.sort((a, b) => a > b ? -1 : 1);
|
||||||
noteIds = noteIds.slice(0, ps.limit);
|
noteIds = noteIds.slice(0, ps.limit);
|
||||||
|
|
|
@ -877,6 +877,19 @@ describe('Timelines', () => {
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === bobNote2.id), true);
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote2.id), true);
|
||||||
}, 1000 * 10);
|
}, 1000 * 10);
|
||||||
|
|
||||||
|
test.concurrent('[withChannelNotes: true] チャンネル投稿が含まれる', async () => {
|
||||||
|
const [alice, bob] = await Promise.all([signup(), signup()]);
|
||||||
|
|
||||||
|
const channel = await api('/channels/create', { name: 'channel' }, bob).then(x => x.body);
|
||||||
|
const bobNote = await post(bob, { text: 'hi', channelId: channel.id });
|
||||||
|
|
||||||
|
await waitForPushToTl();
|
||||||
|
|
||||||
|
const res = await api('/users/notes', { userId: bob.id, withChannelNotes: true }, alice);
|
||||||
|
|
||||||
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
||||||
|
});
|
||||||
|
|
||||||
test.concurrent('ミュートしているユーザーに関連する投稿が含まれない', async () => {
|
test.concurrent('ミュートしているユーザーに関連する投稿が含まれない', async () => {
|
||||||
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
|
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ const pagination = {
|
||||||
userId: props.user.id,
|
userId: props.user.id,
|
||||||
withRenotes: include.value === 'all',
|
withRenotes: include.value === 'all',
|
||||||
withReplies: include.value === 'all' || include.value === 'files',
|
withReplies: include.value === 'all' || include.value === 'files',
|
||||||
|
withChannelNotes: include.value === 'all',
|
||||||
withFiles: include.value === 'files',
|
withFiles: include.value === 'files',
|
||||||
})),
|
})),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue