-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
57 lines (40 loc) · 1.5 KB
/
server.js
File metadata and controls
57 lines (40 loc) · 1.5 KB
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 knex = require('knex');
const register = require('./controllers/register');
const signin = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
const db = knex({
client: 'pg',
connection: {
host : '127.0.0.1',
port : 5432,
user : 'postgres',
password : '1234',
database : 'smart-brain'
}
});
const app = express();
app.use(cors())
app.use(express.json());
app.get('/', (req, res) => { res.send('It is working!') })
// -------------------------------------------------------
// SIGN IN ENDPOINT
app.post('/signin', signin.handleSignIn(db, bcrypt))
// -------------------------------------------------------
// REGISTER ENDPOINT
app.post('/register', (req, res) => { register.handleRegister(req, res, db, bcrypt) })
// -------------------------------------------------------
// PROFILE ENDPOINT
app.get('/profile/:id', (req, res) => {profile.handleProfileGet(req, res, db)})
// -------------------------------------------------------
// IMAGE ENDPOINT
app.put('/image', (req, res) => { image.handleImage(req, res, db)})
app.post('/imageurl', (req, res) => { image.handleApiCall(req, res)})
// -------------------------------------------------------
app.listen(process.env.PORT || 3000, () => {
console.log('App is running on port ${process.env.PORT}');
})