2022-06-14 11:01:23 +02:00
|
|
|
import { MoreThan } from 'typeorm';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { USER_ONLINE_THRESHOLD } from '@/const.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { UsersRepository } from '@/models/index.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2020-12-30 05:07:16 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
const count = await this.usersRepository.countBy({
|
|
|
|
lastActiveDate: MoreThan(new Date(Date.now() - USER_ONLINE_THRESHOLD)),
|
|
|
|
});
|
2021-04-17 08:30:26 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
return {
|
|
|
|
count,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|