forked from CodewarsClone/Codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkataCtrl.js
More file actions
75 lines (70 loc) · 2.34 KB
/
Copy pathkataCtrl.js
File metadata and controls
75 lines (70 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const app = require('../server.js');
const db = app.get('db');
module.exports = {
getKata: (req, res, next) => {
if (!req.params.kataId) {
db.read.kata((err, kata) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(kata);
})
} else {
db.read.kata_by_id([req.params.kataId], (err, kata) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(kata[0]);
})
}
},
// GET from mainService must be in the form of req.params.kyu
getRandomKata: (req, res, next) => {
if (!req.params.kyu) {
db.read.kata((err, katas) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(katas[Math.floor(Math.random() * katas.length + 1)]);
})
} else {
db.read.random_by_kyu([req.params.kyu], (err, katas) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(katas[Math.floor(Math.random() * katas.length + 1)]);
})
}
},
getCompletedKatas: (req, res, next) => {
db.read.completed_katas([req.user.id], (err, katas) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(katas);
})
},
getKataSolutions: (req, res, next) => {
db.read.kata_solutions([req.params.kataId], (err, solutions) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(200).json(solutions);
})
},
postSolution: (req, res, next) => {
db.create.solution([req.user.id, req.params.kataId, req.body.script, ], (err, solution) => {
if (err) {
console.log(err);
res.status(500).json(err);
}
return res.status(201).json(solution);
})
},
}