-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
71 lines (61 loc) · 1.84 KB
/
app.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
const express = require('express');
const bodyparser = require('body-parser');
const multer = require('multer');
const path = require('path');
const mongoose = require('mongoose');
const {graphqlHTTP} = require('express-graphql');
require('dotenv').config();
const auth = require('./Authcheck/is_Auth');
const graphqlSchema = require('./Qraphql/schema');
const graphqlResolver = require('./Qraphql/resolvers');
const app = express();
const fileStorage = multer.diskStorage({
destination: (req,file,cb) => {
cb(null,'Images');
},
filename: (req,file,cb) => {
cb(null, Date.now().toString()+''+file.originalname);
}
});
const fileFilter = (req,file,cb) => {
if(
file.mimetype === 'image/png' ||
file.mimetype === 'image/jpg' ||
file.mimetype === 'image/jpeg'
){cb(null,true)}
else{cb(null,false)}
}
app.use(auth); //this check if the user is authenticated
app.use('/graphql',
graphqlHTTP({
schema: graphqlSchema,
rootValue: graphqlResolver,
graphiql: true
})
);
app.use(bodyparser.json());
app.use('/image',express.static(path.join(__dirname,'Images')));
app.use(multer({
storage: fileStorage,
fileFilter: fileFilter
}).single('image'));
app.use((req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET, POST, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
next();
});
mongoose.connect(process.env.DB_URL,{
useNewUrlParser: true,
useUnifiedTopology: true
})
.then((result) => { app.listen(8080);
// const io = require('./Socket/socketIo').init(server);
// io.on('connection', socket => {
// console.log('Cliant Connected');
// });
})
.catch((err) => {
// throw new Error(err);
console.log(err);
});