add more statistics
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
import { PlayerModel } from "@ssr/common/model/player";
|
||||
import { AppStatistics } from "@ssr/common/types/backend/app-statistics";
|
||||
import { ScoreSaberScoreModel } from "@ssr/common/model/score/impl/scoresaber-score";
|
||||
import { AdditionalScoreDataModel } from "@ssr/common/model/additional-score-data/additional-score-data";
|
||||
import { BeatSaverMapModel } from "@ssr/common/model/beatsaver/map";
|
||||
|
||||
export class AppService {
|
||||
/**
|
||||
@ -7,9 +10,15 @@ export class AppService {
|
||||
*/
|
||||
public static async getAppStatistics(): Promise<AppStatistics> {
|
||||
const trackedPlayers = await PlayerModel.countDocuments();
|
||||
const trackedScores = await ScoreSaberScoreModel.countDocuments();
|
||||
const additionalScoresData = await AdditionalScoreDataModel.countDocuments();
|
||||
const cachedBeatSaverMaps = await BeatSaverMapModel.countDocuments();
|
||||
|
||||
return {
|
||||
trackedPlayers,
|
||||
trackedScores,
|
||||
additionalScoresData,
|
||||
cachedBeatSaverMaps,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user