core: submissionPriority: ignore rejudged problems

pull/335/head
undefined 3 years ago
parent c370541268
commit dd2f595e49

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "3.11.2",
"version": "3.11.3",
"bin": "bin/hydrooj.js",
"main": "src/loader",
"module": "src/loader",

@ -27,9 +27,9 @@ class RecordModel {
];
static async submissionPriority(uid: number, base: number = 0) {
const pending = await task.count({ uid });
const pending = await task.count({ uid, rejudged: { $ne: true } });
const timeRecent = await RecordModel.coll
.find({ _id: { $gte: Time.getObjectID(moment().add(-1, 'hour')) }, uid }).project({ time: 1 }).toArray();
.find({ _id: { $gte: Time.getObjectID(moment().add(-30, 'minutes')) }, uid }).project({ time: 1 }).toArray();
return base - ((pending * 1000 + 1) * (sum(timeRecent.map((i) => i.time || 0)) / 10000));
}

@ -415,7 +415,7 @@ export class Handler extends HandlerCommon {
headers: any,
cookies: any,
body: any,
files: any,
files: Record<string, import('formidable').File>,
query: any,
path: string,
params: any,

Loading…
Cancel
Save