Skip to content

Commit

Permalink
enhance: 各ノートが被クリップ数を保持するようにし、無意味にnotes/clipsを叩かないように
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Sep 17, 2023
1 parent 907d519 commit f7c6932
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/

export class ServerIconsAndManifest1694850832075 {
name = 'ServerIconsAndManifest1694850832075'

Expand Down
16 changes: 16 additions & 0 deletions packages/backend/migration/1694915420864-clipped-count.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/

export class ClippedCount1694915420864 {
name = 'ClippedCount1694915420864'

async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "note" ADD "clippedCount" smallint NOT NULL DEFAULT '0'`);
}

async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "clippedCount"`);
}
}
2 changes: 2 additions & 0 deletions packages/backend/src/core/entities/NoteEntityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ export class NoteEntityService implements OnModuleInit {
url: note.url ?? undefined,

...(opts.detail ? {
clippedCount: note.clippedCount,

reply: note.replyId ? this.pack(note.reply ?? note.replyId, me, {
detail: false,
_hint_: options?._hint_,
Expand Down
5 changes: 5 additions & 0 deletions packages/backend/src/models/entities/Note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ export class MiNote {
})
public repliesCount: number;

@Column('smallint', {
default: 0,
})
public clippedCount: number;

@Column('jsonb', {
default: {},
})
Expand Down
9 changes: 7 additions & 2 deletions packages/backend/src/server/api/endpoints/clips/add-note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ms from 'ms';
import { Endpoint } from '@/server/api/endpoint-base.js';
import { IdService } from '@/core/IdService.js';
import { DI } from '@/di-symbols.js';
import type { ClipNotesRepository, ClipsRepository } from '@/models/_.js';
import type { ClipNotesRepository, ClipsRepository, NotesRepository } from '@/models/_.js';
import { GetterService } from '@/server/api/GetterService.js';
import { RoleService } from '@/core/RoleService.js';
import { ApiError } from '../../error.js';
Expand Down Expand Up @@ -72,6 +72,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
@Inject(DI.clipNotesRepository)
private clipNotesRepository: ClipNotesRepository,

@Inject(DI.notesRepository)
private notesRepository: NotesRepository,

private idService: IdService,
private roleService: RoleService,
private getterService: GetterService,
Expand Down Expand Up @@ -115,9 +118,11 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
clipId: clip.id,
});

await this.clipsRepository.update(clip.id, {
this.clipsRepository.update(clip.id, {
lastClippedAt: new Date(),
});

this.notesRepository.increment({ id: note.id }, 'clippedCount', 1);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
@Inject(DI.clipNotesRepository)
private clipNotesRepository: ClipNotesRepository,

@Inject(DI.notesRepository)
private notesRepository: NotesRepository,

private getterService: GetterService,
) {
super(meta, paramDef, async (ps, me) => {
Expand All @@ -73,6 +76,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
noteId: note.id,
clipId: clip.id,
});

this.notesRepository.decrement({ id: note.id }, 'clippedCount', 1);
});
}
}
11 changes: 6 additions & 5 deletions packages/frontend/src/pages/note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ function fetchNote() {
noteId: props.noteId,
}).then(res => {
note = res;
Promise.all([
// 古いノートは被クリップ数をカウントしていないので、2023-10-01以前のものは強制的にnotes/clipsを叩く
if (note.clippedCount > 0 || new Date(note.createdAt).getTime() < new Date('2023-10-01').getTime()) {
os.api('notes/clips', {
noteId: note.id,
}),
]).then(([_clips]) => {
clips = _clips;
});
}).then((_clips) => {
clips = _clips;
});
}
}).catch(err => {
error = err;
});
Expand Down
1 change: 1 addition & 0 deletions packages/misskey-js/etc/misskey-js.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2539,6 +2539,7 @@ type Note = {
reactions: Record<string, number>;
renoteCount: number;
repliesCount: number;
clippedCount?: number;
poll?: {
expiresAt: DateString | null;
multiple: boolean;
Expand Down
1 change: 1 addition & 0 deletions packages/misskey-js/src/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ export type Note = {
reactions: Record<string, number>;
renoteCount: number;
repliesCount: number;
clippedCount?: number;
poll?: {
expiresAt: DateString | null;
multiple: boolean;
Expand Down

0 comments on commit f7c6932

Please sign in to comment.