-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
157 lines (131 loc) · 3.16 KB
/
app.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
const express = require('express');
const bodyParser = require('body-parser');
const sqlite3 = require('sqlite3').verbose();
const db = require("./database")
const app = express();
const port = process.env.PORT || 3000;
// const db = new sqlite3.Database(':memory:');
app.use(bodyParser.json());
// * Start a Server
const startServer= async()=>{
try {
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
} catch (error) {
console.log(error.message)
}
}
startServer()
// Define API endpoints here
// Create a new task
app.post("/tasks/", async (req, res) => {
const tasksDetails = req.body;
const {
title,
description,
status,
assigneeId,
createdAt,
updatedAt
} = tasksDetails;
const addTasksQuery = `
INSERT INTO
Tasks(
title,
description,
status,
assignee_id,
created_at,
updated_at
)
VALUES(
'${title}',
'${description}',
'${status}',
${assigneeId},
'${createdAt}',
'${updatedAt}'
);`;
const dbResponse = await db.run(tasksDetails);
const taskId = dbResponse.lastId;
res.send({ id: taskId });
})
// Retrive all tasks
app.get("/tasks/", async (req, res) => {
const getTasksQuery = `SELECT * FROM Tasks`
const tasks = await db.get(getTasksQuery);
res.send(tasks);
});
//Retrive a specific task by ID
app.get("/tasks/:id/", async (req, res) => {
const { taskId } = req.params;
const getTaskQuery = `SELECT *
FROM Tasks
WHERE id = ${taskId};`;
const task = await db.get(getTaskQuery);
res.send(task);
});
//Update a specific task by ID
app.put("/tasks/:id", async (req, res) => {
const { taskId } = req.params;
const tasksDetails = req.body;
const {
title,
description,
status,
assigneeId,
createdAt,
updatedAt
} = tasksDetails;
const updateTaskQuery = `
UPDATE Tasks
SET
title='${title}',
description='${description}',
status='${status}',
assigneeId=${assigneeId},
createdAt='${createdAt}',
updatedAt='${updatedAt}'
WHERE
id=${taskId};`;
await db.run(updateTaskQuery);
res.send("Task Updated Successfully");
});
// Delete a specific task by ID
app.delete("/tasks/:id", async (req, res) => {
const { taskId } = req.params
const deleteTaskFromQuery = `
DELETE FROM
Tasks
WHERE id=${taskId};`;
await db.run(deleteTaskFromQuery);
res.send("Task Deleted Successfully");
});
//Register User API
app.post("/users/", async (req, res) => {
const { id, username, passwordHash } = req.body;
const hashedPassword = await bcrypt.hash(passwordHash, 10);
const selectUserQuery = `
SELECT *
FROM Users
WHERE
username='${username}';`;
const dbUser = await db.get(selectUserQuery);
if(dbUser===undefined){
const createUserQuery = `
INSERT INTO
Users(id, username, password_hash)
VALUES(
${id},
'${username}',
'${hashedPassword}'
);`;
await db.run(createUserQuery)
res.send("User Created Successfully")
}else{
res.status(400);
res.send("User Already Exists");
}
})
// "test": "echo \"Error: no test specified\" && exit 1"