summaryrefslogtreecommitdiff
path: root/src/services/chart/charts/classes/users.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/chart/charts/classes/users.ts')
-rw-r--r--src/services/chart/charts/classes/users.ts60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/services/chart/charts/classes/users.ts b/src/services/chart/charts/classes/users.ts
new file mode 100644
index 0000000000..eec30de8dc
--- /dev/null
+++ b/src/services/chart/charts/classes/users.ts
@@ -0,0 +1,60 @@
+import autobind from 'autobind-decorator';
+import Chart, { Obj, DeepPartial } from '../../core';
+import { SchemaType } from '../../../../misc/schema';
+import { Users } from '../../../../models';
+import { Not } from 'typeorm';
+import { User } from '../../../../models/entities/user';
+import { name, schema } from '../schemas/users';
+
+type UsersLog = SchemaType<typeof schema>;
+
+export default class UsersChart extends Chart<UsersLog> {
+ constructor() {
+ super(name, schema);
+ }
+
+ @autobind
+ protected genNewLog(latest: UsersLog): DeepPartial<UsersLog> {
+ return {
+ local: {
+ total: latest.local.total,
+ },
+ remote: {
+ total: latest.remote.total,
+ }
+ };
+ }
+
+ @autobind
+ protected async fetchActual(): Promise<DeepPartial<UsersLog>> {
+ const [localCount, remoteCount] = await Promise.all([
+ Users.count({ host: null }),
+ Users.count({ host: Not(null) })
+ ]);
+
+ return {
+ local: {
+ total: localCount,
+ },
+ remote: {
+ total: remoteCount,
+ }
+ };
+ }
+
+ @autobind
+ public async update(user: User, isAdditional: boolean) {
+ const update: Obj = {};
+
+ update.total = isAdditional ? 1 : -1;
+ if (isAdditional) {
+ update.inc = 1;
+ } else {
+ update.dec = 1;
+ }
+
+ await this.inc({
+ [Users.isLocalUser(user) ? 'local' : 'remote']: update
+ });
+ }
+}