Merge remote-tracking branch 'misskey-original/develop' into develop
This commit is contained in:
commit
320299cc53
|
@ -726,13 +726,17 @@ export class NoteCreateService implements OnApplicationShutdown {
|
||||||
.where('id = :id', { id: renote.id })
|
.where('id = :id', { id: renote.id })
|
||||||
.execute();
|
.execute();
|
||||||
|
|
||||||
// 30%の確率でハイライト用ランキング更新
|
// 30%の確率、3日以内に投稿されたノートの場合ハイライト用ランキング更新
|
||||||
if (Math.random() < 0.3) {
|
if (Math.random() < 0.3 && (Date.now() - this.idService.parse(renote.id).date.getTime()) < 1000 * 60 * 60 * 24 * 3) {
|
||||||
if (renote.channelId != null) {
|
if (renote.channelId != null) {
|
||||||
this.featuredService.updateInChannelNotesRanking(renote.channelId, renote.id, 5);
|
if (renote.replyId == null) {
|
||||||
} else if (renote.visibility === 'public' && renote.userHost == null) {
|
this.featuredService.updateInChannelNotesRanking(renote.channelId, renote.id, 5);
|
||||||
this.featuredService.updateGlobalNotesRanking(renote.id, 5);
|
}
|
||||||
this.featuredService.updatePerUserNotesRanking(renote.userId, renote.id, 5);
|
} else {
|
||||||
|
if (renote.visibility === 'public' && renote.userHost == null && renote.replyId == null) {
|
||||||
|
this.featuredService.updateGlobalNotesRanking(renote.id, 5);
|
||||||
|
this.featuredService.updatePerUserNotesRanking(renote.userId, renote.id, 5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,13 +192,21 @@ export class ReactionService {
|
||||||
.where('id = :id', { id: note.id })
|
.where('id = :id', { id: note.id })
|
||||||
.execute();
|
.execute();
|
||||||
|
|
||||||
// 30%の確率でハイライト用ランキング更新
|
// 30%の確率、セルフではない、3日以内に投稿されたノートの場合ハイライト用ランキング更新
|
||||||
if (Math.random() < 0.3 && note.userId !== user.id) {
|
if (
|
||||||
|
Math.random() < 0.3 &&
|
||||||
|
note.userId !== user.id &&
|
||||||
|
(Date.now() - this.idService.parse(note.id).date.getTime()) < 1000 * 60 * 60 * 24 * 3
|
||||||
|
) {
|
||||||
if (note.channelId != null) {
|
if (note.channelId != null) {
|
||||||
this.featuredService.updateInChannelNotesRanking(note.channelId, note.id, 1);
|
if (note.replyId == null) {
|
||||||
} else if (note.visibility === 'public' && note.userHost == null) {
|
this.featuredService.updateInChannelNotesRanking(note.channelId, note.id, 1);
|
||||||
this.featuredService.updateGlobalNotesRanking(note.id, 1);
|
}
|
||||||
this.featuredService.updatePerUserNotesRanking(note.userId, note.id, 1);
|
} else {
|
||||||
|
if (note.visibility === 'public' && note.userHost == null && note.replyId == null) {
|
||||||
|
this.featuredService.updateGlobalNotesRanking(note.id, 1);
|
||||||
|
this.featuredService.updatePerUserNotesRanking(note.userId, note.id, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue