Sharkey/packages/backend/src/server/api/endpoints/get-online-users-count.ts

24 lines
438 B
TypeScript
Raw Normal View History

import { USER_ONLINE_THRESHOLD } from '@/const';
import { Users } from '@/models/index';
import { MoreThan } from 'typeorm';
import define from '../define';
2020-12-30 06:07:16 +02:00
export const meta = {
tags: ['meta'],
requireCredential: false as const,
params: {
2021-12-09 16:58:30 +02:00
},
2020-12-30 06:07:16 +02:00
};
export default define(meta, async () => {
const count = await Users.count({
2021-12-09 16:58:30 +02:00
lastActiveDate: MoreThan(new Date(Date.now() - USER_ONLINE_THRESHOLD)),
2020-12-30 06:07:16 +02:00
});
return {
2021-12-09 16:58:30 +02:00
count,
};
2020-12-30 06:07:16 +02:00
});