forked from kubiak-calpoly/expressjs-with-mongoose-localdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend_with_db.js
47 lines (39 loc) · 1.14 KB
/
backend_with_db.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
import express from "express";
import cors from "cors";
import userServices from "./models/user-services.js";
const app = express();
const port = 8000;
app.use(cors());
app.use(express.json());
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.get("/users", async (req, res) => {
const name = req.query["name"];
const job = req.query["job"];
try {
const result = await userServices.getUsers(name, job);
res.send({ users_list: result });
} catch (error) {
console.log(error);
res.status(500).send("An error ocurred in the server.");
}
});
app.get("/users/:id", async (req, res) => {
const id = req.params["id"];
const result = await userServices.findUserById(id);
if (result === undefined || result === null)
res.status(404).send("Resource not found.");
else {
res.send({ users_list: result });
}
});
app.post("/users", async (req, res) => {
const user = req.body;
const savedUser = await userServices.addUser(user);
if (savedUser) res.status(201).send(savedUser);
else res.status(500).end();
});
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});