29 lines
594 B
TypeScript
29 lines
594 B
TypeScript
import { MoreThanOrEqual, getRepository } from 'typeorm';
|
|
import { Note } from '../models/entities/note';
|
|
import { initDb } from '../db/postgre';
|
|
|
|
const interval = 5000;
|
|
|
|
initDb().then(() => {
|
|
const Notes = getRepository(Note);
|
|
|
|
async function tick() {
|
|
const [all, local] = await Promise.all([Notes.count({
|
|
createdAt: MoreThanOrEqual(new Date(Date.now() - interval))
|
|
}), Notes.count({
|
|
createdAt: MoreThanOrEqual(new Date(Date.now() - interval)),
|
|
userHost: null
|
|
})]);
|
|
|
|
const stats = {
|
|
all, local
|
|
};
|
|
|
|
process.send(stats);
|
|
}
|
|
|
|
tick();
|
|
|
|
setInterval(tick, interval);
|
|
});
|