-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.js
80 lines (61 loc) · 2.04 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
require('dotenv').config();
const { addReqDoc, listAllBins, getAllReqDocs_FromOneBin, findSingleReqDoc_FromOneBin, deleteAllReqDocs_FromOneBin } = require('./lib/javascripts/mongoQuery.js');
const parseRequest = require('./lib/javascripts/parseRequest');
const { keyNotFound } = require('./lib/javascripts/createPgBin');
const express = require('express');
const app = express();
const port = process.env.PORT;
app.set("views", "./views");
app.set("view engine", "pug");
app.use(express.static('public'));
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
const reqBinRouter = require("./controllers/reqBinRouter");
app.use("/api/req-bin", reqBinRouter);
// Naviate here to get all of the requests in the bin
// just use any parameter, such as "http://localhost:3000/12/view"
app.get('/:id/instructions', (req, res) => {
const key = req.params.id;
res.render('instructions', {
urlKey: key
});
});
// navigate here to delete all reqs from seed bin
app.get('/delete-seed', (req, res) => {
deleteAllReqDocs_FromOneBin(SEED_BIN).then(
response => {
console.log(response);
res.send(response);
}
);
});
app.get('/', (req, res) => {
res.render('index');
});
app.get('/:id/view', (req, res) => {
//call to dbs to get all documents in a collection
//response needs to be passed to display view below instead of []
const key = req.params.id;
getAllReqDocs_FromOneBin(key).then(
response => {
console.log(`There are ${response.length} records.`);
res.render('view', {
requests: response
});
}
);
});
app.get("/favicon.ico", (req, res) => {
res.send().status(404);
});
app.all("/:id", async (req, res) => {
const key = req.params.id;
const isInvalidKey = await keyNotFound(key);
if (!isInvalidKey) {
await addReqDoc(parseRequest(req), key);
res.send("request was logged in the bin").status(200);
} else {
res.send("We couldn't find that key sorry ").status(400); // bin doesn't exist
}
});
app.listen(port, () => console.log(`Listening on port ${port}`));