-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
60 lines (49 loc) · 1.45 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
// Importing npm packages
const express = require('express');
const bodyParser = require('body-parser');
const bcrypt = require('bcrypt-nodejs');
const cors = require('cors');
const knex = require('knex');
// importing modules from controllers folder
const register = require('./controllers/register');
const signin = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
// Creating a variable for knex package for passing authentication
const db = knex({
client: 'pg',
connection: {
connectionString: process.env.DATABASE_URL,
ssl: true,
},
});
const app = express();
app.use(bodyParser.json());
app.use(cors());
// Root endpoint
app.get('/', (req, res) => {
res.send('It is working');
});
// signin endpoint
app.post('/signin', (req, res) => {
signin.handleSignin(req, res, 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 for fetching the image from the url
app.put('/image', (req, res) => {
image.handleImage(req, res, db);
});
// imageurl endpoint for receiving data from clarifai api
app.post('/imageurl', (req, res) => {
image.handleApiCall(req, res);
});
app.listen(process.env.PORT || 5000, () => {
console.log(`app is running on ${process.env.PORT}`);
});