You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/hydrooj/src/model/blacklist.ts

42 lines
1.0 KiB
TypeScript

4 years ago
import { Collection } from 'mongodb';
import * as db from '../service/db';
import * as bus from '../service/bus';
import { Bdoc } from '../interface';
5 years ago
4 years ago
const coll: Collection<Bdoc> = db.collection('blacklist');
4 years ago
export async function add(ip: string) {
/**
* Add a ip into blacklist.
* @param {string} ip
* @returns {Promise<Bdoc>}
*/
5 years ago
const expireAt = new Date(new Date().getTime() + 365 * 24 * 60 * 60 * 1000);
const res = await coll.findOneAndUpdate(
{ _id: ip },
{ $set: { expireAt } },
{ upsert: true, returnOriginal: false },
);
return res.value;
}
5 years ago
4 years ago
export function get(ip: string) {
/**
* Get a ip, return null if not.
* @param {string} ip
* @returns {Promise<Bdoc>}
*/
return coll.findOne({ _id: ip });
}
5 years ago
export function del(ip: string) {
return coll.deleteOne({ _id: ip });
}
function ensureIndexes() {
5 years ago
return coll.createIndex('expireAt', { expireAfterSeconds: 0 });
}
bus.once('app/started', ensureIndexes);
global.Hydro.model.blacklist = { add, get, del };