-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodolist.js
84 lines (74 loc) · 2.77 KB
/
todolist.js
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
76
77
78
79
80
81
82
83
84
const lowdb = require('lowdb');
const FileSync = require('lowdb/adapters/FileSync');
const adapter = new FileSync('./data/db.json');
const db = lowdb(adapter);
const { hasRequiredDelegatedPermissions } = require('../auth/permissionUtils');
const authConfig = require('../authConfig');
exports.getTodo = (req, res, next) => {
if (hasRequiredDelegatedPermissions(req.authInfo, authConfig.protectedRoutes.todolist.delegatedPermissions.read)) {
try {
const id = req.params.id;
const todo = db.get('todos').find({ id: id }).value();
res.status(200).send(todo);
} catch (error) {
next(error);
}
} else {
next(new Error('User does not have the required permissions'));
}
};
exports.getTodos = (req, res, next) => {
if (hasRequiredDelegatedPermissions(req.authInfo, authConfig.protectedRoutes.todolist.delegatedPermissions.read)) {
try {
const owner = req.authInfo['sub'];
const todos = db.get('todos').filter({ owner: owner }).value();
res.status(200).send(todos);
} catch (error) {
next(error);
}
} else {
next(new Error('User does not have the required permissions'));
}
};
exports.postTodo = (req, res, next) => {
if (hasRequiredDelegatedPermissions(req.authInfo, authConfig.protectedRoutes.todolist.delegatedPermissions.write)) {
try {
db.get('todos').push(req.body).write();
res.status(200).json({ message: 'success' });
} catch (error) {
next(error);
}
} else {
next(new Error('User does not have the required permissions'));
}
};
exports.updateTodo = (req, res, next) => {
if (hasRequiredDelegatedPermissions(req.authInfo, authConfig.protectedRoutes.todolist.delegatedPermissions.write)) {
try {
const id = req.params.id;
const owner = req.authInfo['sub'];
db.get('todos').filter({ owner: owner }).find({ id: id }).assign(req.body).write();
res.status(200).json({ message: 'success' });
} catch (error) {
next(error);
}
} else {
next(new Error('User does not have the required permissions'));
}
};
exports.deleteTodo = (req, res, next) => {
if (
hasRequiredDelegatedPermissions(req.authInfo, authConfig.protectedRoutes.todolist.delegatedPermissions.write)
) {
try {
const id = req.params.id;
const owner = req.authInfo['sub'];
db.get('todos').remove({ owner: owner, id: id }).write();
res.status(200).json({ message: 'success' });
} catch (error) {
next(error);
}
} else {
next(new Error('User does not have the required permissions'));
}
};