2018-10-21 03:35:37 +02:00
|
|
|
/**
|
|
|
|
* このファイルでは、チャートに関する処理を行います。
|
|
|
|
*/
|
|
|
|
|
2018-10-21 03:05:15 +02:00
|
|
|
const nestedProperty = require('nested-property');
|
2018-10-21 05:37:00 +02:00
|
|
|
import autobind from 'autobind-decorator';
|
2018-10-21 00:10:35 +02:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import db from '../db/mongodb';
|
|
|
|
import { INote } from '../models/note';
|
|
|
|
import { isLocalUser, IUser } from '../models/user';
|
|
|
|
import { IDriveFile } from '../models/drive-file';
|
|
|
|
import { ICollection } from 'monk';
|
|
|
|
|
|
|
|
type Obj = { [key: string]: any };
|
|
|
|
|
|
|
|
type Partial<T> = {
|
|
|
|
[P in keyof T]?: Partial<T[P]>;
|
|
|
|
};
|
|
|
|
|
2018-10-21 03:05:15 +02:00
|
|
|
type ArrayValue<T> = {
|
|
|
|
[P in keyof T]: T[P] extends number ? Array<T[P]> : ArrayValue<T[P]>;
|
|
|
|
};
|
|
|
|
|
2018-10-21 00:10:35 +02:00
|
|
|
type Span = 'day' | 'hour';
|
|
|
|
|
2018-10-21 03:05:15 +02:00
|
|
|
//#region Chart Core
|
2018-10-21 00:10:35 +02:00
|
|
|
type ChartDocument<T extends Obj> = {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 集計のグループ
|
|
|
|
*/
|
|
|
|
group?: any;
|
|
|
|
|
2018-10-21 00:10:35 +02:00
|
|
|
/**
|
|
|
|
* 集計日時
|
|
|
|
*/
|
|
|
|
date: Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計期間
|
|
|
|
*/
|
|
|
|
span: Span;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* データ
|
|
|
|
*/
|
|
|
|
data: T;
|
2018-10-21 05:37:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ユニークインクリメント用
|
|
|
|
*/
|
|
|
|
unique?: Obj;
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
|
|
|
|
2018-10-21 03:35:37 +02:00
|
|
|
/**
|
|
|
|
* 様々なチャートの管理を司るクラス
|
|
|
|
*/
|
2018-10-21 00:10:35 +02:00
|
|
|
abstract class Chart<T> {
|
|
|
|
protected collection: ICollection<ChartDocument<T>>;
|
|
|
|
protected abstract generateInitialStats(): T;
|
|
|
|
protected abstract generateEmptyStats(mostRecentStats: T): T;
|
|
|
|
|
|
|
|
constructor(dbCollectionName: string) {
|
|
|
|
this.collection = db.get<ChartDocument<T>>(dbCollectionName);
|
|
|
|
this.collection.createIndex({ span: -1, date: -1 }, { unique: true });
|
2018-10-21 02:20:11 +02:00
|
|
|
this.collection.createIndex('group');
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
|
|
|
private convertQuery(x: Obj, path: string): Obj {
|
|
|
|
const query: Obj = {};
|
|
|
|
|
|
|
|
const dive = (x: Obj, path: string) => {
|
|
|
|
Object.entries(x).forEach(([k, v]) => {
|
|
|
|
const p = path ? `${path}.${k}` : k;
|
|
|
|
if (typeof v === 'number') {
|
|
|
|
query[p] = v;
|
|
|
|
} else {
|
|
|
|
dive(v, p);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
dive(x, path);
|
|
|
|
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private async getCurrentStats(span: Span, group?: Obj): Promise<ChartDocument<T>> {
|
2018-10-21 00:10:35 +02:00
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
const h = now.getHours();
|
|
|
|
|
|
|
|
const current =
|
|
|
|
span == 'day' ? new Date(y, m, d) :
|
|
|
|
span == 'hour' ? new Date(y, m, d, h) :
|
|
|
|
null;
|
|
|
|
|
|
|
|
// 現在(今日または今のHour)の統計
|
2018-10-21 02:20:11 +02:00
|
|
|
const currentStats = await this.collection.findOne({
|
|
|
|
group: group,
|
2018-10-21 00:10:35 +02:00
|
|
|
span: span,
|
|
|
|
date: current
|
2018-10-21 02:20:11 +02:00
|
|
|
});
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
if (currentStats) {
|
|
|
|
return currentStats;
|
|
|
|
} else {
|
|
|
|
// 集計期間が変わってから、初めてのチャート更新なら
|
|
|
|
// 最も最近の統計を持ってくる
|
|
|
|
// * 例えば集計期間が「日」である場合で考えると、
|
|
|
|
// * 昨日何もチャートを更新するような出来事がなかった場合は、
|
|
|
|
// * 統計がそもそも作られずドキュメントが存在しないということがあり得るため、
|
|
|
|
// * 「昨日の」と決め打ちせずに「もっとも最近の」とします
|
2018-10-21 02:20:11 +02:00
|
|
|
const mostRecentStats = await this.collection.findOne({
|
|
|
|
group: group,
|
2018-10-21 00:10:35 +02:00
|
|
|
span: span
|
2018-10-21 02:20:11 +02:00
|
|
|
}, {
|
2018-10-21 00:10:35 +02:00
|
|
|
sort: {
|
|
|
|
date: -1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (mostRecentStats) {
|
|
|
|
// 現在の統計を初期挿入
|
|
|
|
const data = this.generateEmptyStats(mostRecentStats.data);
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
const stats = await this.collection.insert({
|
|
|
|
group: group,
|
2018-10-21 00:10:35 +02:00
|
|
|
span: span,
|
|
|
|
date: current,
|
|
|
|
data: data
|
2018-10-21 02:20:11 +02:00
|
|
|
});
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
return stats;
|
|
|
|
} else {
|
|
|
|
// 統計が存在しなかったら
|
|
|
|
// * Misskeyインスタンスを建てて初めてのチャート更新時など
|
|
|
|
|
|
|
|
// 空の統計を作成
|
|
|
|
const data = this.generateInitialStats();
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
const stats = await this.collection.insert({
|
|
|
|
group: group,
|
2018-10-21 00:10:35 +02:00
|
|
|
span: span,
|
|
|
|
date: current,
|
|
|
|
data: data
|
2018-10-21 02:20:11 +02:00
|
|
|
});
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
|
|
|
protected commit(query: Obj, group?: Obj, uniqueKey?: string, uniqueValue?: string): void {
|
|
|
|
const update = (stats: ChartDocument<T>) => {
|
|
|
|
// ユニークインクリメントの場合、指定のキーに指定の値が既に存在していたら弾く
|
|
|
|
if (uniqueKey && stats.unique && stats.unique[uniqueKey] && stats.unique[uniqueKey].includes(uniqueValue)) return;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
if (uniqueKey) {
|
|
|
|
query['$push'] = {
|
|
|
|
[`unique.${uniqueKey}`]: uniqueValue
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.collection.update({
|
|
|
|
_id: stats._id
|
|
|
|
}, query);
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
this.getCurrentStats('day', group).then(stats => update(stats));
|
|
|
|
this.getCurrentStats('hour', group).then(stats => update(stats));
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
|
|
|
protected inc(inc: Partial<T>, group?: Obj): void {
|
|
|
|
this.commit({
|
|
|
|
$inc: this.convertQuery(inc, 'data')
|
|
|
|
}, group);
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
|
|
|
protected incIfUnique(inc: Partial<T>, key: string, value: string, group?: Obj): void {
|
|
|
|
this.commit({
|
|
|
|
$inc: this.convertQuery(inc, 'data')
|
|
|
|
}, group, key, value);
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 03:05:15 +02:00
|
|
|
public async getStats(span: Span, range: number, group?: Obj): Promise<ArrayValue<T>> {
|
2018-10-21 00:10:35 +02:00
|
|
|
const chart: T[] = [];
|
|
|
|
|
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
const h = now.getHours();
|
|
|
|
|
|
|
|
const gt =
|
|
|
|
span == 'day' ? new Date(y, m, d - range) :
|
|
|
|
span == 'hour' ? new Date(y, m, d, h - range) : null;
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
const stats = await this.collection.find({
|
|
|
|
group: group,
|
2018-10-21 00:10:35 +02:00
|
|
|
span: span,
|
|
|
|
date: {
|
|
|
|
$gt: gt
|
|
|
|
}
|
2018-10-21 02:20:11 +02:00
|
|
|
}, {
|
2018-10-21 00:10:35 +02:00
|
|
|
sort: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
fields: {
|
|
|
|
_id: 0
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
const stat = stats.find(s => s.date.getTime() == current.getTime());
|
|
|
|
|
|
|
|
if (stat) {
|
|
|
|
chart.unshift(stat.data);
|
|
|
|
} else { // 隙間埋め
|
|
|
|
const mostRecent = stats.find(s => s.date.getTime() < current.getTime());
|
|
|
|
if (mostRecent) {
|
|
|
|
chart.unshift(this.generateEmptyStats(mostRecent.data));
|
|
|
|
} else {
|
|
|
|
chart.unshift(this.generateInitialStats());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 03:05:15 +02:00
|
|
|
const res: ArrayValue<T> = {} as any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [{
|
|
|
|
* x: 1,
|
|
|
|
* y: 5
|
|
|
|
* }, {
|
|
|
|
* x: 2,
|
|
|
|
* y: 6
|
|
|
|
* }, {
|
|
|
|
* x: 3,
|
|
|
|
* y: 7
|
|
|
|
* }]
|
|
|
|
*
|
|
|
|
* を
|
|
|
|
*
|
|
|
|
* {
|
|
|
|
* x: [1, 2, 3],
|
|
|
|
* y: [5, 6, 7]
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* にする
|
|
|
|
*/
|
|
|
|
const dive = (x: Obj, path?: string) => {
|
|
|
|
Object.entries(x).forEach(([k, v]) => {
|
2018-10-21 03:24:56 +02:00
|
|
|
const p = path ? `${path}.${k}` : k;
|
2018-10-21 03:05:15 +02:00
|
|
|
if (typeof v == 'object') {
|
|
|
|
dive(v, p);
|
|
|
|
} else {
|
|
|
|
nestedProperty.set(res, p, chart.map(s => nestedProperty.get(s, p)));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
dive(chart[0]);
|
|
|
|
|
|
|
|
return res;
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-21 03:05:15 +02:00
|
|
|
//#endregion
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
//#region Users stats
|
|
|
|
/**
|
|
|
|
* ユーザーに関する統計
|
|
|
|
*/
|
|
|
|
type UsersStats = {
|
|
|
|
local: {
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ユーザー数 (ローカル)
|
|
|
|
*/
|
|
|
|
total: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 増加したユーザー数 (ローカル)
|
|
|
|
*/
|
|
|
|
inc: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 減少したユーザー数 (ローカル)
|
|
|
|
*/
|
|
|
|
dec: number;
|
|
|
|
};
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
remote: {
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ユーザー数 (リモート)
|
|
|
|
*/
|
|
|
|
total: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 増加したユーザー数 (リモート)
|
|
|
|
*/
|
|
|
|
inc: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 減少したユーザー数 (リモート)
|
|
|
|
*/
|
|
|
|
dec: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
2018-10-21 02:20:11 +02:00
|
|
|
};
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
class UsersChart extends Chart<UsersStats> {
|
|
|
|
constructor() {
|
|
|
|
super('usersStats');
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateInitialStats(): UsersStats {
|
|
|
|
return {
|
|
|
|
local: {
|
|
|
|
total: 0,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: 0,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
2018-10-21 02:20:11 +02:00
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateEmptyStats(mostRecentStats: UsersStats): UsersStats {
|
|
|
|
return {
|
|
|
|
local: {
|
|
|
|
total: mostRecentStats.local.total,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
total: mostRecentStats.remote.total,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
2018-10-21 02:20:11 +02:00
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
public async update(user: IUser, isAdditional: boolean) {
|
|
|
|
const update: Obj = {};
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
update.total = isAdditional ? 1 : -1;
|
|
|
|
if (isAdditional) {
|
|
|
|
update.inc = 1;
|
|
|
|
} else {
|
|
|
|
update.dec = 1;
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
await this.inc({
|
|
|
|
[isLocalUser(user) ? 'local' : 'remote']: update
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
export const usersChart = new UsersChart();
|
|
|
|
//#endregion
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
//#region Notes stats
|
|
|
|
/**
|
|
|
|
* 投稿に関する統計
|
|
|
|
*/
|
|
|
|
type NotesStats = {
|
|
|
|
local: {
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全投稿数 (ローカル)
|
|
|
|
*/
|
|
|
|
total: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 増加した投稿数 (ローカル)
|
|
|
|
*/
|
|
|
|
inc: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 減少した投稿数 (ローカル)
|
|
|
|
*/
|
|
|
|
dec: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
diffs: {
|
2018-10-21 00:10:35 +02:00
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* 通常の投稿数の差分 (ローカル)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
normal: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* リプライの投稿数の差分 (ローカル)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
reply: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* Renoteの投稿数の差分 (ローカル)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
renote: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
remote: {
|
2018-10-21 00:10:35 +02:00
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* 集計期間時点での、全投稿数 (リモート)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
total: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* 増加した投稿数 (リモート)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
inc: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-21 02:20:11 +02:00
|
|
|
* 減少した投稿数 (リモート)
|
2018-10-21 00:10:35 +02:00
|
|
|
*/
|
2018-10-21 02:20:11 +02:00
|
|
|
dec: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
diffs: {
|
|
|
|
/**
|
|
|
|
* 通常の投稿数の差分 (リモート)
|
|
|
|
*/
|
|
|
|
normal: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* リプライの投稿数の差分 (リモート)
|
|
|
|
*/
|
|
|
|
reply: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renoteの投稿数の差分 (リモート)
|
|
|
|
*/
|
|
|
|
renote: number;
|
|
|
|
};
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
class NotesChart extends Chart<NotesStats> {
|
2018-10-21 00:10:35 +02:00
|
|
|
constructor() {
|
2018-10-21 02:20:11 +02:00
|
|
|
super('notesStats');
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateInitialStats(): NotesStats {
|
2018-10-21 00:10:35 +02:00
|
|
|
return {
|
2018-10-21 02:20:11 +02:00
|
|
|
local: {
|
|
|
|
total: 0,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
},
|
2018-10-21 02:20:11 +02:00
|
|
|
remote: {
|
|
|
|
total: 0,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateEmptyStats(mostRecentStats: NotesStats): NotesStats {
|
2018-10-21 00:10:35 +02:00
|
|
|
return {
|
2018-10-21 02:20:11 +02:00
|
|
|
local: {
|
|
|
|
total: mostRecentStats.local.total,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
},
|
2018-10-21 02:20:11 +02:00
|
|
|
remote: {
|
|
|
|
total: mostRecentStats.remote.total,
|
|
|
|
inc: 0,
|
|
|
|
dec: 0,
|
|
|
|
diffs: {
|
|
|
|
normal: 0,
|
|
|
|
reply: 0,
|
|
|
|
renote: 0
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
public async update(note: INote, isAdditional: boolean) {
|
2018-10-21 05:37:00 +02:00
|
|
|
const update: Obj = {
|
|
|
|
diffs: {}
|
|
|
|
};
|
2018-10-21 00:10:35 +02:00
|
|
|
|
|
|
|
update.total = isAdditional ? 1 : -1;
|
|
|
|
|
|
|
|
if (isAdditional) {
|
|
|
|
update.inc = 1;
|
|
|
|
} else {
|
|
|
|
update.dec = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (note.replyId != null) {
|
|
|
|
update.diffs.reply = isAdditional ? 1 : -1;
|
|
|
|
} else if (note.renoteId != null) {
|
|
|
|
update.diffs.renote = isAdditional ? 1 : -1;
|
|
|
|
} else {
|
|
|
|
update.diffs.normal = isAdditional ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
await this.inc({
|
|
|
|
[isLocalUser(note._user) ? 'local' : 'remote']: update
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const notesChart = new NotesChart();
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Drive stats
|
|
|
|
/**
|
|
|
|
* ドライブに関する統計
|
|
|
|
*/
|
|
|
|
type DriveStats = {
|
|
|
|
local: {
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ドライブファイル数 (ローカル)
|
|
|
|
*/
|
|
|
|
totalCount: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ドライブファイルの合計サイズ (ローカル)
|
|
|
|
*/
|
|
|
|
totalSize: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 増加したドライブファイル数 (ローカル)
|
|
|
|
*/
|
|
|
|
incCount: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 増加したドライブ使用量 (ローカル)
|
|
|
|
*/
|
|
|
|
incSize: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 減少したドライブファイル数 (ローカル)
|
|
|
|
*/
|
|
|
|
decCount: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 減少したドライブ使用量 (ローカル)
|
|
|
|
*/
|
|
|
|
decSize: number;
|
|
|
|
};
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
remote: {
|
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ドライブファイル数 (リモート)
|
|
|
|
*/
|
|
|
|
totalCount: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 集計期間時点での、全ドライブファイルの合計サイズ (リモート)
|
|
|
|
*/
|
|
|
|
totalSize: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 増加したドライブファイル数 (リモート)
|
|
|
|
*/
|
|
|
|
incCount: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 増加したドライブ使用量 (リモート)
|
|
|
|
*/
|
|
|
|
incSize: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 減少したドライブファイル数 (リモート)
|
|
|
|
*/
|
|
|
|
decCount: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 減少したドライブ使用量 (リモート)
|
|
|
|
*/
|
|
|
|
decSize: number;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class DriveChart extends Chart<DriveStats> {
|
|
|
|
constructor() {
|
|
|
|
super('driveStats');
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateInitialStats(): DriveStats {
|
|
|
|
return {
|
|
|
|
local: {
|
|
|
|
totalCount: 0,
|
|
|
|
totalSize: 0,
|
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
totalCount: 0,
|
|
|
|
totalSize: 0,
|
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateEmptyStats(mostRecentStats: DriveStats): DriveStats {
|
|
|
|
return {
|
|
|
|
local: {
|
|
|
|
totalCount: mostRecentStats.local.totalCount,
|
|
|
|
totalSize: mostRecentStats.local.totalSize,
|
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
totalCount: mostRecentStats.remote.totalCount,
|
|
|
|
totalSize: mostRecentStats.remote.totalSize,
|
|
|
|
incCount: 0,
|
|
|
|
incSize: 0,
|
|
|
|
decCount: 0,
|
|
|
|
decSize: 0
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
public async update(file: IDriveFile, isAdditional: boolean) {
|
2018-10-21 00:10:35 +02:00
|
|
|
const update: Obj = {};
|
|
|
|
|
|
|
|
update.totalCount = isAdditional ? 1 : -1;
|
|
|
|
update.totalSize = isAdditional ? file.length : -file.length;
|
|
|
|
if (isAdditional) {
|
|
|
|
update.incCount = 1;
|
|
|
|
update.incSize = file.length;
|
|
|
|
} else {
|
|
|
|
update.decCount = 1;
|
|
|
|
update.decSize = file.length;
|
|
|
|
}
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
await this.inc({
|
|
|
|
[isLocalUser(file.metadata._user) ? 'local' : 'remote']: update
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const driveChart = new DriveChart();
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Network stats
|
|
|
|
/**
|
|
|
|
* ネットワークに関する統計
|
|
|
|
*/
|
|
|
|
type NetworkStats = {
|
|
|
|
/**
|
|
|
|
* 受信したリクエスト数
|
|
|
|
*/
|
|
|
|
incomingRequests: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 送信したリクエスト数
|
|
|
|
*/
|
|
|
|
outgoingRequests: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 応答時間の合計
|
|
|
|
* TIP: (totalTime / incomingRequests) でひとつのリクエストに平均でどれくらいの時間がかかったか知れる
|
|
|
|
*/
|
|
|
|
totalTime: number;
|
2018-10-21 00:10:35 +02:00
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
/**
|
|
|
|
* 合計受信データ量
|
|
|
|
*/
|
|
|
|
incomingBytes: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 合計送信データ量
|
|
|
|
*/
|
|
|
|
outgoingBytes: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkChart extends Chart<NetworkStats> {
|
|
|
|
constructor() {
|
|
|
|
super('networkStats');
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateInitialStats(): NetworkStats {
|
|
|
|
return {
|
|
|
|
incomingRequests: 0,
|
|
|
|
outgoingRequests: 0,
|
|
|
|
totalTime: 0,
|
|
|
|
incomingBytes: 0,
|
|
|
|
outgoingBytes: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
protected generateEmptyStats(mostRecentStats: NetworkStats): NetworkStats {
|
|
|
|
return {
|
|
|
|
incomingRequests: 0,
|
|
|
|
outgoingRequests: 0,
|
|
|
|
totalTime: 0,
|
|
|
|
incomingBytes: 0,
|
|
|
|
outgoingBytes: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:37:00 +02:00
|
|
|
@autobind
|
2018-10-21 02:20:11 +02:00
|
|
|
public async update(incomingRequests: number, time: number, incomingBytes: number, outgoingBytes: number) {
|
|
|
|
const inc: Partial<NetworkStats> = {
|
|
|
|
incomingRequests: incomingRequests,
|
|
|
|
totalTime: time,
|
|
|
|
incomingBytes: incomingBytes,
|
|
|
|
outgoingBytes: outgoingBytes
|
2018-10-21 00:10:35 +02:00
|
|
|
};
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
await this.inc(inc);
|
2018-10-21 00:10:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 02:20:11 +02:00
|
|
|
export const networkChart = new NetworkChart();
|
|
|
|
//#endregion
|