perf(backend): ドライブのチャートはローカルユーザーのみ生成するように

This commit is contained in:
syuilo 2023-03-24 18:37:08 +09:00
parent 46f99755db
commit 6a29b182ee
2 changed files with 11 additions and 8 deletions

View file

@ -23,6 +23,7 @@
### Server ### Server
- リモートユーザーのチャート生成を無効にするオプションを追加 - リモートユーザーのチャート生成を無効にするオプションを追加
- ドライブのチャートはローカルユーザーのみ生成するように
- 空のアンテナが作成できるのを修正 - 空のアンテナが作成できるのを修正
## 13.10.2 ## 13.10.2

View file

@ -619,10 +619,11 @@ export class DriveService {
}); });
} }
// 統計を更新
this.driveChart.update(file, true); this.driveChart.update(file, true);
if (file.userHost == null) {
// ローカルユーザーのみ
this.perUserDriveChart.update(file, true); this.perUserDriveChart.update(file, true);
if (file.userHost !== null) { } else {
this.instanceChart.updateDrive(file, true); this.instanceChart.updateDrive(file, true);
} }
@ -706,10 +707,11 @@ export class DriveService {
this.driveFilesRepository.delete(file.id); this.driveFilesRepository.delete(file.id);
} }
// 統計を更新
this.driveChart.update(file, false); this.driveChart.update(file, false);
if (file.userHost == null) {
// ローカルユーザーのみ
this.perUserDriveChart.update(file, false); this.perUserDriveChart.update(file, false);
if (file.userHost !== null) { } else {
this.instanceChart.updateDrive(file, false); this.instanceChart.updateDrive(file, false);
} }
} }