From 6cccd9d2885af94277070056c8f00cb7a87c3a05 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 21 Oct 2018 12:37:00 +0900 Subject: [PATCH] Implement unique incremebt --- src/services/stats.ts | 104 ++++++++++++++++++++++++++++++------------ 1 file changed, 74 insertions(+), 30 deletions(-) diff --git a/src/services/stats.ts b/src/services/stats.ts index 7479c2cb9..3d2e52f71 100644 --- a/src/services/stats.ts +++ b/src/services/stats.ts @@ -3,6 +3,7 @@ */ const nestedProperty = require('nested-property'); +import autobind from 'autobind-decorator'; import * as mongo from 'mongodb'; import db from '../db/mongodb'; import { INote } from '../models/note'; @@ -45,6 +46,11 @@ type ChartDocument = { * データ */ data: T; + + /** + * ユニークインクリメント用 + */ + unique?: Obj; }; /** @@ -61,7 +67,28 @@ abstract class Chart { this.collection.createIndex('group'); } - protected async getCurrentStats(span: Span, group?: Obj): Promise> { + @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> { const now = new Date(); const y = now.getFullYear(); const m = now.getMonth(); @@ -129,39 +156,42 @@ abstract class Chart { } } - protected inc(inc: Partial, group?: Obj): void { - const query: Obj = {}; + @autobind + protected commit(query: Obj, group?: Obj, uniqueKey?: string, uniqueValue?: string): void { + const update = (stats: ChartDocument) => { + // ユニークインクリメントの場合、指定のキーに指定の値が既に存在していたら弾く + if (uniqueKey && stats.unique && stats.unique[uniqueKey] && stats.unique[uniqueKey].includes(uniqueValue)) return; - const dive = (x: Obj, path?: string) => { - Object.entries(x).forEach(([k, v]) => { - const p = path ? `${path}.${k}` : k; - if (typeof v === 'number') { - query[`data.${p}`] = v; - } else { - dive(v, p); - } - }); + if (uniqueKey) { + query['$push'] = { + [`unique.${uniqueKey}`]: uniqueValue + }; + } + + this.collection.update({ + _id: stats._id + }, query); }; - dive(inc); - - this.getCurrentStats('day', group).then(stats => { - this.collection.findOneAndUpdate({ - _id: stats._id - }, { - $inc: query - }); - }); - - this.getCurrentStats('hour', group).then(stats => { - this.collection.findOneAndUpdate({ - _id: stats._id - }, { - $inc: query - }); - }); + this.getCurrentStats('day', group).then(stats => update(stats)); + this.getCurrentStats('hour', group).then(stats => update(stats)); } + @autobind + protected inc(inc: Partial, group?: Obj): void { + this.commit({ + $inc: this.convertQuery(inc, 'data') + }, group); + } + + @autobind + protected incIfUnique(inc: Partial, key: string, value: string, group?: Obj): void { + this.commit({ + $inc: this.convertQuery(inc, 'data') + }, group, key, value); + } + + @autobind public async getStats(span: Span, range: number, group?: Obj): Promise> { const chart: T[] = []; @@ -296,6 +326,7 @@ class UsersChart extends Chart { super('usersStats'); } + @autobind protected generateInitialStats(): UsersStats { return { local: { @@ -311,6 +342,7 @@ class UsersChart extends Chart { }; } + @autobind protected generateEmptyStats(mostRecentStats: UsersStats): UsersStats { return { local: { @@ -326,6 +358,7 @@ class UsersChart extends Chart { }; } + @autobind public async update(user: IUser, isAdditional: boolean) { const update: Obj = {}; @@ -424,6 +457,7 @@ class NotesChart extends Chart { super('notesStats'); } + @autobind protected generateInitialStats(): NotesStats { return { local: { @@ -449,6 +483,7 @@ class NotesChart extends Chart { }; } + @autobind protected generateEmptyStats(mostRecentStats: NotesStats): NotesStats { return { local: { @@ -474,8 +509,11 @@ class NotesChart extends Chart { }; } + @autobind public async update(note: INote, isAdditional: boolean) { - const update: Obj = {}; + const update: Obj = { + diffs: {} + }; update.total = isAdditional ? 1 : -1; @@ -577,6 +615,7 @@ class DriveChart extends Chart { super('driveStats'); } + @autobind protected generateInitialStats(): DriveStats { return { local: { @@ -598,6 +637,7 @@ class DriveChart extends Chart { }; } + @autobind protected generateEmptyStats(mostRecentStats: DriveStats): DriveStats { return { local: { @@ -619,6 +659,7 @@ class DriveChart extends Chart { }; } + @autobind public async update(file: IDriveFile, isAdditional: boolean) { const update: Obj = {}; @@ -678,6 +719,7 @@ class NetworkChart extends Chart { super('networkStats'); } + @autobind protected generateInitialStats(): NetworkStats { return { incomingRequests: 0, @@ -688,6 +730,7 @@ class NetworkChart extends Chart { }; } + @autobind protected generateEmptyStats(mostRecentStats: NetworkStats): NetworkStats { return { incomingRequests: 0, @@ -698,6 +741,7 @@ class NetworkChart extends Chart { }; } + @autobind public async update(incomingRequests: number, time: number, incomingBytes: number, outgoingBytes: number) { const inc: Partial = { incomingRequests: incomingRequests,