-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
47 lines (38 loc) · 1.73 KB
/
server.js
File metadata and controls
47 lines (38 loc) · 1.73 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
require('dotenv').config();
const express = require('express');
const bodyParser = require('body-parser'); // latest version of exressJS now comes with Body-Parser!
const bcrypt = require('bcrypt-nodejs');
const cors = require('cors');
const knex = require('knex');
const morgan = require('morgan');
const register = require('./controllers/register');
const signin = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
const signout = require('./controllers/signout');
const auth = require('./controllers/authorization');
const db = knex({
// connect to your own database here:
client: 'pg',
connection: process.env.POSTGRES_URI
});
const app = express();
app.use(cors())
app.use(express.json()); // latest version of exressJS now comes with Body-Parser!
app.use(morgan('combined'));
const PORT = 3000;
// bcrypt.hash(***ENTER PASSWORD HERE***, null, null, (err, hash) => {
// if (err) throw err;
// console.log(hash); // Use this hash in your seed.sql
// });
app.get('/', (req, res)=> { res.send("It's Working") })
app.post('/signin', signin.signInAuthentication(db, bcrypt))
app.post('/register', (req, res) => { register.handleRegister(req, res, db, bcrypt) })
app.get('/profile/:id', auth.requireAuth, (req, res) => { profile.handleProfileGet(req, res, db)})
app.post('/profile/:id', auth.requireAuth, (req, res) => {profile.handleProfileUpdate(req, res, db)})
app.put('/image', auth.requireAuth, (req, res) => { image.handleImage(req, res, db)})
app.post('/imageurl', auth.requireAuth, (req, res) => { image.handleApiCall(req, res)})
app.post('/signout', signout.handleSignOut);
app.listen(PORT, '0.0.0.0', () => {
console.log(`App is running on port ${PORT}`);
});