mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* Issue 10209 - Remove read usages of zone * Issue 10209 - Add coverage on daysSince and startOfDay cron utility functions * Issue 10209 - Add unit test for daysUserHasMissed method * Issue 10209 - Remove usages of deprecated `moment.js#zone` method. * Issue 10209 - Add helper function to centralise logic Also simplify timezoneOffsetToUtc function in site.vue * Issue 10209 - Also add getUtcOffset as method on user Co-authored-by: Matteo Pagliazzi <matteopagliazzi@gmail.com>
96 lines
3.7 KiB
JavaScript
96 lines
3.7 KiB
JavaScript
import _ from 'lodash';
|
|
import moment from 'moment';
|
|
|
|
// Aggregate entries
|
|
function _aggregate (history, aggregateBy, timezoneUtcOffset, dayStart) {
|
|
return _.chain(history)
|
|
.groupBy(entry => { // group entries by aggregateBy
|
|
const entryDate = moment(entry.date).utcOffset(timezoneUtcOffset);
|
|
if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day');
|
|
return entryDate.format(aggregateBy);
|
|
})
|
|
.toPairs() // [key, entry]
|
|
.sortBy(([key]) => key) // sort by date
|
|
.map(keyEntryPair => {
|
|
const entries = keyEntryPair[1]; // 1 is entry, 0 is key
|
|
return {
|
|
date: Number(entries[0].date),
|
|
value: _.reduce(
|
|
entries,
|
|
(previousValue, entry) => previousValue + entry.value,
|
|
0,
|
|
) / entries.length,
|
|
};
|
|
})
|
|
.value();
|
|
}
|
|
|
|
/* Preen an array of history entries
|
|
Free users:
|
|
- 1 value for each day of the past 60 days (no compression)
|
|
- 1 value each month for the previous 10 months
|
|
- 1 value each year for the previous years
|
|
Subscribers and challenges:
|
|
- 1 value for each day of the past 365 days (no compression)
|
|
- 1 value each month for the previous 12 months
|
|
- 1 value each year for the previous years
|
|
*/
|
|
export function preenHistory (history, isSubscribed, timezoneUtcOffset = 0, dayStart = 0) {
|
|
// history = _.filter(history, historyEntry => Boolean(historyEntry)); // Filter missing entries
|
|
const now = moment().utcOffset(timezoneUtcOffset);
|
|
// Date after which to begin compressing data
|
|
const cutOff = now.subtract(isSubscribed ? 365 : 60, 'days').startOf('day');
|
|
|
|
// Keep uncompressed entries (modifies history and returns removed items)
|
|
const newHistory = _.remove(history, entry => {
|
|
if (!entry) return true; // sometimes entries are `null`
|
|
const entryDate = moment(entry.date).utcOffset(timezoneUtcOffset);
|
|
if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day');
|
|
return entryDate.isSame(cutOff) || entryDate.isAfter(cutOff);
|
|
});
|
|
|
|
// Date after which to begin compressing data by year
|
|
const monthsCutOff = cutOff.subtract(isSubscribed ? 12 : 10, 'months').startOf('day');
|
|
const aggregateByMonth = _.remove(history, entry => {
|
|
if (!entry) return true; // sometimes entries are `null`
|
|
const entryDate = moment(entry.date).utcOffset(timezoneUtcOffset);
|
|
if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day');
|
|
return entryDate.isSame(monthsCutOff) || entryDate.isAfter(monthsCutOff);
|
|
});
|
|
// Aggregate remaining entries by month and year
|
|
if (aggregateByMonth.length > 0) newHistory.unshift(..._aggregate(aggregateByMonth, 'YYYYMM', timezoneUtcOffset, dayStart));
|
|
if (history.length > 0) newHistory.unshift(..._aggregate(history, 'YYYY', timezoneUtcOffset, dayStart));
|
|
|
|
return newHistory;
|
|
}
|
|
|
|
// Preen history for users and tasks.
|
|
export function preenUserHistory (user, tasksByType) {
|
|
const isSubscribed = user.isSubscribed();
|
|
const timezoneUtcOffset = user.getUtcOffset();
|
|
const { dayStart } = user.preferences;
|
|
const minHistoryLength = isSubscribed ? 365 : 60;
|
|
|
|
function _processTask (task) {
|
|
if (task.history && task.history.length > minHistoryLength) {
|
|
task.history = preenHistory(task.history, isSubscribed, timezoneUtcOffset, dayStart);
|
|
task.markModified('history');
|
|
}
|
|
}
|
|
|
|
tasksByType.habits.forEach(_processTask);
|
|
tasksByType.dailys.forEach(_processTask);
|
|
|
|
if (user.history.exp.length > minHistoryLength) {
|
|
user.history.exp = preenHistory(user.history.exp, isSubscribed, timezoneUtcOffset, dayStart);
|
|
user.markModified('history.exp');
|
|
}
|
|
|
|
if (user.history.todos.length > minHistoryLength) {
|
|
user.history.todos = preenHistory(
|
|
user.history.todos, isSubscribed, timezoneUtcOffset, dayStart,
|
|
);
|
|
user.markModified('history.todos');
|
|
}
|
|
}
|