-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (45 loc) · 1.65 KB
/
server.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
const express = require("express");
const bodyParser = require("body-parser");
const bcrypt = require("bcrypt-nodejs");
const cors = require("cors");
const morgan = require("morgan");
const knex = require("knex")({
client: "pg",
connection: process.env.POSTGRES_URI
});
const register = require("./controllers/register");
const signin = require("./controllers/signin");
const profile = require("./controllers/profile");
const image = require("./controllers/image");
const auth = require("./middleware/authorization");
const app = express();
app.use(morgan("combined"));
app.use(bodyParser.json());
app.use(cors());
app.get("/", (req, res) => {
res.json("This is my world");
});
//IMPORTANT: Bellow with signin and also inside of signin.js is written in a different
//way, to have the code in a cleaner way. Just to Compare and understand!
app.post("/signin", signin.signinAuthentication(knex, bcrypt));
app.post("/register", (req, res) => {
register.handleRegister(req, res, knex, bcrypt);
});
//auth.requireAuth is a middleware authentication, to avoid that anyone without access can access!
// They must have a token to access
app.get("/profile/:id", auth.requireAuth, (req, res) => {
profile.handleProfile(req, res, knex);
});
app.post("/profile/:id", auth.requireAuth, (req, res) => {
profile.handleProfileUpdate(req, res, knex);
});
app.put("/image", auth.requireAuth, (req, res) => {
image.handleImage(req, res, knex);
});
// This is to handle the API
app.post("/imageurl", auth.requireAuth, (req, res) => {
image.handleApiCall(req, res);
});
app.listen(process.env.PORT || 3000, () => {
console.log(`app is running on port ${process.env.PORT}`);
});