Spaces:
Paused
Paused
File size: 9,069 Bytes
00b9b23 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | // StatsQuery.js - 简化版(适配新的存储逻辑)
const { mongoose } = require('../index');
const DateRangeHelper = require('../utils/DateRange');
const TimezoneUtils = require('../utils/timezone');
const DailyStat = mongoose.model('DailyStat');
class StatsQuery {
constructor(recorder, config = {}) {
this.recorder = recorder;
this.timezoneOffset = config.timezoneOffset || 8;
this.dateRangeHelper = new DateRangeHelper(this.timezoneOffset);
this.tzUtils = new TimezoneUtils(this.timezoneOffset);
}
// 查询统计数据(直接查询本地日期)
async _queryStats(query, startDate, endDate) {
// 构建查询日期数组(本地时区日期)
const queryDates = [];
const current = new Date(startDate);
while (current <= endDate) {
// 转换为数据库存储格式(本地零点对应的 UTC 时间)
const localDayStart = new Date(Date.UTC(
current.getUTCFullYear(),
current.getUTCMonth(),
current.getUTCDate(),
0, 0, 0, 0
));
const dbDate = this.tzUtils.localToUtc(localDayStart);
queryDates.push(dbDate);
// 移动到下一天
current.setUTCDate(current.getUTCDate() + 1);
}
query.date = { $in: queryDates };
return DailyStat.find(query);
}
// 处理统计数据
_processStats(allStats, startDate, endDate, isSingleDay = false) {
const dailyStats = {};
const appDailyStats = {};
const hourlyStats = Array(24).fill(0);
const appHourlyStats = {};
let totalUsage = 0;
allStats.forEach(stat => {
const appName = stat.appName;
// 将数据库的 date 转换回本地日期
const dbDate = new Date(stat.date);
const localDayStart = this.tzUtils.utcToLocal(dbDate);
const localDateOnly = new Date(Date.UTC(
localDayStart.getUTCFullYear(),
localDayStart.getUTCMonth(),
localDayStart.getUTCDate()
));
const dateKey = localDateOnly.toISOString().split('T')[0];
// 初始化
if (!dailyStats[dateKey]) dailyStats[dateKey] = 0;
if (!appDailyStats[appName]) appDailyStats[appName] = {};
if (!appDailyStats[appName][dateKey]) appDailyStats[appName][dateKey] = 0;
if (!appHourlyStats[appName]) {
appHourlyStats[appName] = Array(24).fill(0);
}
// 累加每小时数据
stat.hourlyUsage.forEach((minutes, hour) => {
if (minutes > 0) {
dailyStats[dateKey] += minutes;
appDailyStats[appName][dateKey] += minutes;
hourlyStats[hour] += minutes;
appHourlyStats[appName][hour] += minutes;
totalUsage += minutes;
}
});
});
return { dailyStats, appDailyStats, hourlyStats, appHourlyStats, totalUsage };
}
// ============ 对外接口 ============
// 获取某天的统计数据
async getDailyStats(deviceId, date) {
const localDate = this.tzUtils.parseDate(date);
const allStats = await this._queryStats(
{ deviceId },
localDate,
localDate
);
const { hourlyStats, appHourlyStats, totalUsage } = this._processStats(
allStats,
localDate,
localDate,
true
);
// 只保留有数据的应用
const appStats = {};
Object.keys(appHourlyStats).forEach(appName => {
const total = appHourlyStats[appName].reduce((sum, val) => sum + val, 0);
if (total > 0) appStats[appName] = total;
});
return {
totalUsage,
appStats,
hourlyStats,
appHourlyStats: Object.keys(appStats).length > 0 ? appHourlyStats : {}
};
}
// 获取周统计
async getWeeklyAppStats(deviceId, appName = null, weekOffset = 0) {
const { startDate, endDate } = this.dateRangeHelper.getWeekRange(weekOffset);
const query = { deviceId };
if (appName) query.appName = appName;
const allStats = await this._queryStats(query, startDate, endDate);
const { dailyStats, appDailyStats } = this._processStats(allStats, startDate, endDate);
return {
weekOffset,
weekRange: {
start: startDate.toISOString().split('T')[0],
end: endDate.toISOString().split('T')[0]
},
dailyTotals: dailyStats,
appDailyStats: appName ? { [appName]: appDailyStats[appName] || {} } : appDailyStats
};
}
// 获取月统计
async getMonthlyAppStats(deviceId, appName = null, monthOffset = 0) {
const { startDate, endDate } = this.dateRangeHelper.getMonthRange(monthOffset);
const query = { deviceId };
if (appName) query.appName = appName;
const allStats = await this._queryStats(query, startDate, endDate);
const { dailyStats, appDailyStats } = this._processStats(allStats, startDate, endDate);
return {
monthOffset,
monthRange: {
start: startDate.toISOString().split('T')[0],
end: endDate.toISOString().split('T')[0]
},
dailyTotals: dailyStats,
appDailyStats: appName ? { [appName]: appDailyStats[appName] || {} } : appDailyStats
};
}
// 获取某天所有设备统计
async getDailyStatsForAllDevices(date) {
const localDate = this.tzUtils.parseDate(date);
const allStats = await this._queryStats({}, localDate, localDate);
const { hourlyStats, appHourlyStats, totalUsage } = this._processStats(
allStats,
localDate,
localDate,
true
);
const appStats = {};
Object.keys(appHourlyStats).forEach(appName => {
const total = appHourlyStats[appName].reduce((sum, val) => sum + val, 0);
if (total > 0) appStats[appName] = total;
});
return { totalUsage, appStats, hourlyStats, appHourlyStats };
}
// 获取周统计所有设备
async getWeeklyAppStatsForAllDevices(appName = null, weekOffset = 0) {
const { startDate, endDate } = this.dateRangeHelper.getWeekRange(weekOffset);
const query = {};
if (appName) query.appName = appName;
const allStats = await this._queryStats(query, startDate, endDate);
const { dailyStats, appDailyStats } = this._processStats(allStats, startDate, endDate);
return {
weekOffset,
weekRange: {
start: startDate.toISOString().split('T')[0],
end: endDate.toISOString().split('T')[0]
},
dailyTotals: dailyStats,
appDailyStats: appName ? { [appName]: appDailyStats[appName] || {} } : appDailyStats
};
}
// 获取月统计所有设备
async getMonthlyAppStatsForAllDevices(appName = null, monthOffset = 0) {
const { startDate, endDate } = this.dateRangeHelper.getMonthRange(monthOffset);
const query = {};
if (appName) query.appName = appName;
const allStats = await this._queryStats(query, startDate, endDate);
const { dailyStats, appDailyStats } = this._processStats(allStats, startDate, endDate);
return {
monthOffset,
monthRange: {
start: startDate.toISOString().split('T')[0],
end: endDate.toISOString().split('T')[0]
},
dailyTotals: dailyStats,
appDailyStats: appName ? { [appName]: appDailyStats[appName] || {} } : appDailyStats
};
}
// 获取设备列表
async getDevices() {
return Array.from(this.recorder.recentAppSwitches.keys()).map(deviceId => {
let currentApp = "Unknown";
let runningSince = new Date();
let isRunning = true;
const batteryInfo = this.recorder.getLatestBatteryInfo(deviceId);
if (this.recorder.recentAppSwitches.has(deviceId) && this.recorder.recentAppSwitches.get(deviceId).length > 0) {
const lastSwitch = this.recorder.recentAppSwitches.get(deviceId)[0];
currentApp = lastSwitch.appName;
runningSince = lastSwitch.timestamp;
isRunning = lastSwitch.running !== false;
}
return {
device: deviceId,
currentApp,
running: isRunning,
runningSince,
batteryLevel: batteryInfo.level,
isCharging: batteryInfo.isCharging,
batteryTimestamp: batteryInfo.timestamp
};
});
}
}
module.exports = StatsQuery; |