2018-08-29 20:49:52 +02:00
|
|
|
import $ from 'cafy';
|
2018-08-24 00:23:04 +02:00
|
|
|
import Stats, { IStats } from '../../../models/stats';
|
2018-08-29 20:53:26 +02:00
|
|
|
import getParams from '../get-params';
|
2018-08-18 17:27:23 +02:00
|
|
|
|
|
|
|
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
|
|
|
|
2018-08-25 01:35:41 +02:00
|
|
|
function migrateStats(stats: IStats[]) {
|
|
|
|
stats.forEach(stat => {
|
2018-08-25 04:10:27 +02:00
|
|
|
const isOldData =
|
|
|
|
stat.users.local.inc == null ||
|
|
|
|
stat.users.local.dec == null ||
|
|
|
|
stat.users.remote.inc == null ||
|
|
|
|
stat.users.remote.dec == null ||
|
|
|
|
stat.notes.local.inc == null ||
|
|
|
|
stat.notes.local.dec == null ||
|
|
|
|
stat.notes.remote.inc == null ||
|
|
|
|
stat.notes.remote.dec == null ||
|
|
|
|
stat.drive.local.incCount == null ||
|
|
|
|
stat.drive.local.decCount == null ||
|
|
|
|
stat.drive.local.incSize == null ||
|
|
|
|
stat.drive.local.decSize == null ||
|
|
|
|
stat.drive.remote.incCount == null ||
|
|
|
|
stat.drive.remote.decCount == null ||
|
|
|
|
stat.drive.remote.incSize == null ||
|
|
|
|
stat.drive.remote.decSize == null;
|
2018-08-25 01:35:41 +02:00
|
|
|
|
|
|
|
if (!isOldData) return;
|
|
|
|
|
|
|
|
stat.users.local.inc = (stat as any).users.local.diff;
|
|
|
|
stat.users.local.dec = 0;
|
|
|
|
stat.users.remote.inc = (stat as any).users.remote.diff;
|
|
|
|
stat.users.remote.dec = 0;
|
|
|
|
stat.notes.local.inc = (stat as any).notes.local.diff;
|
|
|
|
stat.notes.local.dec = 0;
|
|
|
|
stat.notes.remote.inc = (stat as any).notes.remote.diff;
|
|
|
|
stat.notes.remote.dec = 0;
|
|
|
|
stat.drive.local.incCount = (stat as any).drive.local.diffCount;
|
|
|
|
stat.drive.local.decCount = 0;
|
|
|
|
stat.drive.local.incSize = (stat as any).drive.local.diffSize;
|
|
|
|
stat.drive.local.decSize = 0;
|
|
|
|
stat.drive.remote.incCount = (stat as any).drive.remote.diffCount;
|
|
|
|
stat.drive.remote.decCount = 0;
|
|
|
|
stat.drive.remote.incSize = (stat as any).drive.remote.diffSize;
|
|
|
|
stat.drive.remote.decSize = 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-08-18 17:27:23 +02:00
|
|
|
export const meta = {
|
2018-08-29 20:49:52 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンスの統計を取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: $.num.optional.range(1, 100).note({
|
|
|
|
default: 30,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '最大数'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
}
|
2018-08-18 17:27:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default (params: any) => new Promise(async (res, rej) => {
|
2018-08-29 20:49:52 +02:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) throw psErr;
|
|
|
|
|
|
|
|
const daysRange = ps.limit;
|
|
|
|
const hoursRange = ps.limit;
|
2018-08-23 09:36:23 +02:00
|
|
|
|
2018-08-18 17:27:23 +02:00
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
2018-08-23 09:36:23 +02:00
|
|
|
const h = now.getHours();
|
2018-08-18 17:27:23 +02:00
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
const [statsPerDay, statsPerHour] = await Promise.all([
|
|
|
|
Stats.find({
|
|
|
|
span: 'day',
|
|
|
|
date: {
|
|
|
|
$gt: new Date(y, m, d - daysRange)
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
sort: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
fields: {
|
|
|
|
_id: 0
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
Stats.find({
|
|
|
|
span: 'hour',
|
|
|
|
date: {
|
|
|
|
$gt: new Date(y, m, d, h - hoursRange)
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
sort: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
fields: {
|
|
|
|
_id: 0
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
]);
|
2018-08-18 17:27:23 +02:00
|
|
|
|
2018-08-25 01:35:41 +02:00
|
|
|
// 後方互換性のため
|
|
|
|
migrateStats(statsPerDay);
|
|
|
|
migrateStats(statsPerHour);
|
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
const format = (src: IStats[], span: 'day' | 'hour') => {
|
|
|
|
const chart: Array<Omit<Omit<IStats, '_id'>, 'span'>> = [];
|
2018-08-18 17:27:23 +02:00
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
const range =
|
|
|
|
span == 'day' ? daysRange :
|
|
|
|
span == 'hour' ? hoursRange :
|
|
|
|
null;
|
2018-08-18 17:27:23 +02:00
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
for (let i = (range - 1); i >= 0; i--) {
|
|
|
|
const current =
|
|
|
|
span == 'day' ? new Date(y, m, d - i) :
|
|
|
|
span == 'hour' ? new Date(y, m, d, h - i) :
|
|
|
|
null;
|
2018-08-18 17:27:23 +02:00
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
const stat = src.find(s => s.date.getTime() == current.getTime());
|
|
|
|
|
|
|
|
if (stat) {
|
|
|
|
chart.unshift(stat);
|
|
|
|
} else { // 隙間埋め
|
|
|
|
const mostRecent = src.find(s => s.date.getTime() < current.getTime());
|
|
|
|
if (mostRecent) {
|
2018-08-24 07:55:58 +02:00
|
|
|
chart.unshift({
|
|
|
|
date: current,
|
|
|
|
users: {
|
|
|
|
local: {
|
|
|
|
total: mostRecent.users.local.total,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
2018-08-24 07:55:58 +02:00
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: mostRecent.users.remote.total,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
2018-08-24 07:55:58 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
notes: {
|
|
|
|
local: {
|
|
|
|
total: mostRecent.notes.local.total,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
2018-08-24 07:55:58 +02:00
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: mostRecent.notes.remote.total,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
2018-08-24 07:55:58 +02:00
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
drive: {
|
|
|
|
local: {
|
|
|
|
totalCount: mostRecent.drive.local.totalCount,
|
|
|
|
totalSize: mostRecent.drive.local.totalSize,
|
2018-08-25 01:35:41 +02:00
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
2018-08-24 07:55:58 +02:00
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
totalCount: mostRecent.drive.remote.totalCount,
|
|
|
|
totalSize: mostRecent.drive.remote.totalSize,
|
2018-08-25 01:35:41 +02:00
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
2018-08-24 07:55:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-08-23 09:36:23 +02:00
|
|
|
} else {
|
|
|
|
chart.unshift({
|
|
|
|
date: current,
|
|
|
|
users: {
|
|
|
|
local: {
|
|
|
|
total: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
2018-08-23 09:36:23 +02:00
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
2018-08-18 17:27:23 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-23 09:36:23 +02:00
|
|
|
notes: {
|
|
|
|
local: {
|
|
|
|
total: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
2018-08-23 09:36:23 +02:00
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
2018-08-23 09:36:23 +02:00
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
|
|
|
}
|
2018-08-18 17:27:23 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-23 09:36:23 +02:00
|
|
|
drive: {
|
|
|
|
local: {
|
|
|
|
totalCount: 0,
|
|
|
|
totalSize: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
2018-08-23 09:36:23 +02:00
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
totalCount: 0,
|
|
|
|
totalSize: 0,
|
2018-08-25 01:35:41 +02:00
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
2018-08-23 09:36:23 +02:00
|
|
|
}
|
2018-08-18 17:27:23 +02:00
|
|
|
}
|
2018-08-23 09:36:23 +02:00
|
|
|
});
|
|
|
|
}
|
2018-08-18 17:27:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
chart.forEach(x => {
|
|
|
|
delete (x as any).span;
|
|
|
|
});
|
2018-08-18 17:42:09 +02:00
|
|
|
|
2018-08-23 09:36:23 +02:00
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
|
|
|
res({
|
|
|
|
perDay: format(statsPerDay, 'day'),
|
|
|
|
perHour: format(statsPerHour, 'hour')
|
|
|
|
});
|
2018-08-18 17:27:23 +02:00
|
|
|
});
|