2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-14 04:01:23 -05:00
|
|
|
import { MoreThan } from 'typeorm';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { USER_ONLINE_THRESHOLD } from '@/const.js';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { UsersRepository } from '@/models/_.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2020-12-29 22:07:16 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2023-07-01 18:28:26 -05:00
|
|
|
allowGet: true,
|
|
|
|
cacheSec: 60 * 1,
|
2023-12-21 01:57:05 -06:00
|
|
|
res: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
properties: {
|
|
|
|
count: {
|
|
|
|
type: 'number',
|
|
|
|
nullable: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2020-12-29 22:07:16 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2020-12-29 22:07:16 -06:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
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 01:30:26 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
return {
|
|
|
|
count,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|