-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
43 lines (37 loc) · 1.34 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
const express = require('express');
const bcrypt = require('bcrypt-nodejs');
const cors = require('cors');
const knex = require('knex');
const morgan = require('morgan');
require('dotenv').config();
const register = require('./controllers/register');
const signin = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
const auth = require('./controllers/authorization');
const signout = require('./controllers/signout');
const db = knex({
client: 'pg',
connection: process.env.POSTGRES_URI,
});
const app = express();
app.use(cors());
app.use(morgan('combined'));
app.use(express.json());
app.get('/', (req, res) => {
res.send('app is working');
});
app.post('/signin', signin.signInAuthentication(db, bcrypt));
app.post('/register', register.handleRegister(db, bcrypt));
app.get('/profile/:id', auth.requireAuth, profile.handleProfileGet(db));
app.post('/profile/:id', auth.requireAuth, (req, res) => {
profile.handleProfileUpdate(req, res, db);
});
app.put('/image', auth.requireAuth, image.handleImage(db));
app.post('/imageurl', auth.requireAuth, (req, res) => {
image.handleApiCall(req, res);
});
app.post('/signout', auth.requireAuth, signout.signOutUser);
app.listen(process.env.PORT || 3000, () => {
console.log(`App is running on port ${process.env.PORT || 3000}`);
});