-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
45 lines (40 loc) · 1.32 KB
/
server.js
File metadata and controls
45 lines (40 loc) · 1.32 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
const express = require('express')
const app = express();
const bodyParser = require('body-parser')
const bcrypt = require('bcrypt-nodejs')
const cors = require('cors');
app.use(bodyParser.json());
app.use(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',
user : 'Brian',
password : '',
database : 'facial-recog'
}
});
app.get('/', (req, res) => {
res.send(database.users)
})
app.post('/signin', signIn.handleSiginIn(db, bcrypt));
app.post('/register', register.handleRegister(db, bcrypt));
app.get('/profile/:id', profile.handleProfileGet(db));
app.put('/image', image.handleImage(db));
app.post('/imageurl', (req, res) => { image.handleApiCall(req, res)});
const PORT = process.env.PORT
app.listen(PORT, () => {
console.log(`Listeninig to ${PORT}`);
})
/*
/ res will say this is working
/ sign in will be a POST request and respond with success or failure.
/ register will be a POST request and will respond will new user
/ profile/:userId each user will have their own home screen. It will be a GET request.
/ image endpoint that will PUT/update their ranking / user object.
*/