monkeytype/backend/dao/new-quotes.js
Bruce Berrios f9d6f52c15
Api overhaul (#2555) by Bruception
* Feat:Update response structure (#2427)

* Fix:response and error structure

* update:response message

* update:response class

* update

* Update response message

Co-authored-by: Mustafiz Kaifee Mumtaz <mustafiz.mumtaz@freecharge.com>

* Add MonkeyToken foundation (#2487) by Bruception

* Api changes (#2492)

* API changes

* Remove unused import

* Add Ape client (#2513)

* Add all endpoints (#2514)

* Merged backend typescript into api overhaul (#2515)

* Install typescript and add backend tsconfig

Cannot yet build due to a number of compilation errors in JS code

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Fix typescript compilation errors

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Migrated backend to ES modules

Switched to import export syntax

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add typescript declaration for anticheat

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Rename top level files to .ts

Fix service account json file typing

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add dev build scripts for backend typescript

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Removed empty lines and switched to using db

Cleaned up imports by removing needless empty lines and migrated to the new db.js instead of mongodb.js.

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Fixed backend commonjs syntax to ES module syntax

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Add build to backend start script

Signed-off-by: Brian Evans <ebrian101@gmail.com>

* Migrate some endpoints to Ape

* Strict equals

* Remove artifact

* ape -> Ape

* Ape migration p2 (#2522)

* Migrate leaderboard endpoints to ape

* Fixed comment

* Init backend types

* Fail

* Return

* Migrate Quotes to Ape (#2528)

* Migrate quotes to Ape

* Fix backend response

* Fix issue

* Fix rate limit (#2533)

* fix rate limit

* Fix import

* Fix issues

* Ape migration p4 (#2547)

* Migrate results endpoints to ape

* Remove unused import

* Remove unused import

* Fix loaders

* Make function async

* Hide try saving results

* Migrate some users endpoints to Ape (#2548)

* Complete Ape Migration (#2553)

* Complete ape migration

* Fix preset

* Return preset data

* Add typings

* Move captcha reset

* Read from params

* Fix result tags endpoint

* Fix stuck loader

* fixed lb memory not saving

* fixed quote rating popup not showing up for new users

Co-authored-by: Mustafiz Kaifee <49086821+Mustafiz04@users.noreply.github.com>
Co-authored-by: Mustafiz Kaifee Mumtaz <mustafiz.mumtaz@freecharge.com>
Co-authored-by: Brian Evans <53117772+mrbrianevans@users.noreply.github.com>
Co-authored-by: Miodec <bartnikjack@gmail.com>
2022-02-22 20:55:48 +01:00

140 lines
4.1 KiB
JavaScript

import simpleGit from "simple-git";
import Mongo from "mongodb";
const { ObjectID } = Mongo;
import stringSimilarity from "string-similarity";
import path from "path";
import fs from "fs";
import db from "../init/db";
import MonkeyError from "../handlers/error";
let git;
try {
git = simpleGit(path.join(__dirname, "../../../monkeytype-new-quotes"));
} catch (e) {
git = undefined;
}
class NewQuotesDAO {
static async add(text, source, language, uid) {
if (!git) throw new MonkeyError(500, "Git not available.");
let quote = {
text: text,
source: source,
language: language.toLowerCase(),
submittedBy: uid,
timestamp: Date.now(),
approved: false,
};
//check for duplicate first
const fileDir = path.join(
__dirname,
`../../../monkeytype-new-quotes/static/quotes/${language}.json`
);
let duplicateId = -1;
let similarityScore = -1;
if (fs.existsSync(fileDir)) {
// let quoteFile = fs.readFileSync(fileDir);
// quoteFile = JSON.parse(quoteFile.toString());
// quoteFile.quotes.every((old) => {
// if (stringSimilarity.compareTwoStrings(old.text, quote.text) > 0.9) {
// duplicateId = old.id;
// similarityScore = stringSimilarity.compareTwoStrings(
// old.text,
// quote.text
// );
// return false;
// }
// return true;
// });
} else {
return { languageError: 1 };
}
if (duplicateId != -1) {
return { duplicateId, similarityScore };
}
return await db.collection("new-quotes").insertOne(quote);
}
static async get() {
if (!git) throw new MonkeyError(500, "Git not available.");
return await db
.collection("new-quotes")
.find({ approved: false })
.sort({ timestamp: 1 })
.limit(10)
.toArray();
}
static async approve(quoteId, editQuote, editSource) {
if (!git) throw new MonkeyError(500, "Git not available.");
//check mod status
let quote = await db
.collection("new-quotes")
.findOne({ _id: ObjectID(quoteId) });
if (!quote) {
throw new MonkeyError(404, "Quote not found");
}
let language = quote.language;
quote = {
text: editQuote ? editQuote : quote.text,
source: editSource ? editSource : quote.source,
length: quote.text.length,
};
let message = "";
const fileDir = path.join(
__dirname,
`../../../monkeytype-new-quotes/static/quotes/${language}.json`
);
await git.pull("upstream", "master");
if (fs.existsSync(fileDir)) {
let quoteFile = fs.readFileSync(fileDir);
const quoteObject = JSON.parse(quoteFile.toString());
quoteObject.quotes.every((old) => {
if (stringSimilarity.compareTwoStrings(old.text, quote.text) > 0.8) {
throw new MonkeyError(409, "Duplicate quote");
}
});
let maxid = 0;
quoteObject.quotes.map(function (q) {
if (q.id > maxid) {
maxid = q.id;
}
});
quote.id = maxid + 1;
quoteObject.quotes.push(quote);
fs.writeFileSync(fileDir, JSON.stringify(quoteObject, null, 2));
message = `Added quote to ${language}.json.`;
} else {
//file doesnt exist, create it
quote.id = 1;
fs.writeFileSync(
fileDir,
JSON.stringify({
language: language,
groups: [
[0, 100],
[101, 300],
[301, 600],
[601, 9999],
],
quotes: [quote],
})
);
message = `Created file ${language}.json and added quote.`;
}
await git.add([`static/quotes/${language}.json`]);
await git.commit(`Added quote to ${language}.json`);
await git.push("origin", "master");
await db.collection("new-quotes").deleteOne({ _id: ObjectID(quoteId) });
return { quote, message };
}
static async refuse(quoteId) {
if (!git) throw new MonkeyError(500, "Git not available.");
return await db
.collection("new-quotes")
.deleteOne({ _id: ObjectID(quoteId) });
}
}
export default NewQuotesDAO;