* wip * Update maps.ts * wip * wip * wip * wip * Update base.vue * wip * wip * wip * wip * Update link.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update privacy.vue * wip * wip * wip * wip * Update range.vue * wip * wip * wip * wip * Update profile.vue * wip * Update a.vue * Update index.vue * wip * Update sidebar.vue * wip * wip * Update account-info.vue * Update a.vue * wip * wip * Update sounds.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update account-info.vue * Update account-info.vue * wip * wip * wip * Update d-persimmon.json5 * wip
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import autobind from 'autobind-decorator';
|
|
import Chart, { Obj, DeepPartial } from '../../core';
|
|
import { SchemaType } from '../../../../misc/schema';
|
|
import { DriveFiles } from '../../../../models';
|
|
import { DriveFile } from '../../../../models/entities/drive-file';
|
|
import { name, schema } from '../schemas/per-user-drive';
|
|
|
|
type PerUserDriveLog = SchemaType<typeof schema>;
|
|
|
|
export default class PerUserDriveChart extends Chart<PerUserDriveLog> {
|
|
constructor() {
|
|
super(name, schema, true);
|
|
}
|
|
|
|
@autobind
|
|
protected genNewLog(latest: PerUserDriveLog): DeepPartial<PerUserDriveLog> {
|
|
return {
|
|
totalCount: latest.totalCount,
|
|
totalSize: latest.totalSize,
|
|
};
|
|
}
|
|
|
|
@autobind
|
|
protected async fetchActual(group: string): Promise<DeepPartial<PerUserDriveLog>> {
|
|
const [count, size] = await Promise.all([
|
|
DriveFiles.count({ userId: group }),
|
|
DriveFiles.calcDriveUsageOf(group)
|
|
]);
|
|
|
|
return {
|
|
totalCount: count,
|
|
totalSize: size,
|
|
};
|
|
}
|
|
|
|
@autobind
|
|
public async update(file: DriveFile, isAdditional: boolean) {
|
|
const update: Obj = {};
|
|
|
|
update.totalCount = isAdditional ? 1 : -1;
|
|
update.totalSize = isAdditional ? file.size : -file.size;
|
|
if (isAdditional) {
|
|
update.incCount = 1;
|
|
update.incSize = file.size;
|
|
} else {
|
|
update.decCount = 1;
|
|
update.decSize = file.size;
|
|
}
|
|
|
|
await this.inc(update, file.userId);
|
|
}
|
|
}
|