1 let router
= require("express").Router();
2 const access
= require("../utils/access");
3 const ProblemModel
= require("../models/Problem");
4 const sanitizeHtml
= require('sanitize-html');
6 router
.post("/problems", access
.logged
, access
.ajax
, (req
,res
) => {
7 if (ProblemModel
.checkProblem(req
.body
.prob
)) {
9 vid: req
.body
.prob
.vid
,
10 fen: req
.body
.prob
.fen
,
12 instruction: sanitizeHtml(req
.body
.prob
.instruction
),
13 solution: sanitizeHtml(req
.body
.prob
.solution
),
15 ProblemModel
.create(problem
, (err
, ret
) => {
23 router
.get("/problems", access
.ajax
, (req
,res
) => {
24 const probId
= req
.query
["pid"];
25 const cursor
= req
.query
["cursor"];
26 if (!!probId
&& !!probId
.match(/^[0-9]+$/)) {
27 ProblemModel
.getOne(req
.query
["pid"], (err
, problem
) => {
28 res
.json(err
|| {problem: problem
});
30 } else if (!!cursor
&& !!cursor
.match(/^[0-9]+$/)) {
31 ProblemModel
.getNext(cursor
, (err
, problems
) => {
32 res
.json(err
|| { problems: problems
});
37 router
.put("/problems", access
.logged
, access
.ajax
, (req
,res
) => {
38 let obj
= req
.body
.prob
;
39 if (ProblemModel
.checkProblem(obj
)) {
40 obj
.instruction
= sanitizeHtml(obj
.instruction
);
41 obj
.solution
= sanitizeHtml(obj
.solution
);
42 ProblemModel
.safeUpdate(obj
, req
.userId
);
47 router
.delete("/problems", access
.logged
, access
.ajax
, (req
,res
) => {
48 const pid
= req
.query
.id
;
49 if (pid
.toString().match(/^[0-9]+$/))
50 ProblemModel
.safeRemove(pid
, req
.userId
);
54 module
.exports
= router
;