-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
75 lines (53 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const express = require('express');
const bodyParser = require('body-parser');
const bcrypt = require('bcrypt-nodejs');
const cors = require('cors');
const knex= require('knex');
require('dotenv').config();
const register = require('./controllers/register');
const signin = require('./controllers/login');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
const port = process.env.PORT || 4000;
const db = knex({
client: 'pg',
connection: {
host : process.env.DATABASE_URL,
user : 'test',
password : 'test123',
database : 'smart_brain'
}
});
db.select('*').from('users').then(data => {
console.log(data);
});
const app = express();
app.use(cors());
app.use(bodyParser.json());
app.get('/', (req, res)=> {res.send(database.users)})
app.post('/signin', signin.handleSignIn(db, bcrypt))
app.post('/register',(req, res) => {register.handleRegister(req, res, db, bcrypt)})
//:id means uyo canenter anything in its place
app.get('/profile/:id', (req, res) => {profile.handleProfileGet(req, res, db)} );
app.put('/image',(req, res) =>{image.handleImage(req, res, db)});
app.post('/imageurl',(req, res) =>{image.handleApiCall(req, res)});
app.listen(port || 4000, ()=> {
console.log(`app is running on port ${process.env.PORT}`);
});
/*
/--> res= this is working
/signin route --> POST request, respond with success/fail
any password
we send its not as a query but as http,
hidden from others
/register -> POST = return the enw created user
to make sure everything is working,
so we return a new user object
/profile/:userId --> each user has homescreen of his own,
GET = returns user
/count of how many ohtos user submitted,
and give them a rank
/image --> PUT, user already exists,
and an update on user profile is image
PUT--> user
*/