-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrouter.js
81 lines (75 loc) · 2.56 KB
/
router.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
76
77
78
79
80
81
const express = require('express');
const router = express.Router();
const { decryptURI } = require('./controllers/CryptoJSController');
// const { decryptURI } = require('./controllers/CryptoJSController.ts');
const { getSQLTables, getSQLDBname, prepForGQL } = require('./controllers/SQLController');
const { connectToMongo, getMongoDocuments, MongoPrepForGQL } = require('./controllers/MongoDBController');
const { convertToGQLServerCode } = require('./controllers/GQLServerController');
const { convertToGQLClientQueriesCode, convertToGQLClientMutationsCode } = require('./controllers/GQLClientController');
router.get('/', (req, res) => {
res.status(200).send('HELLO FROM THE BACKEND!');
});
/* ROUTE TO GET DEMO POSTGRESQL DB AND CONVERT TO GRAPHQL SERVER, CLIENT QUERIES AND MUTATIONS CODE */
router.get(
'/convert-demo-db',
decryptURI,
getSQLDBname,
getSQLTables,
prepForGQL,
convertToGQLServerCode,
convertToGQLClientQueriesCode,
convertToGQLClientMutationsCode,
(req, res) => {
const GQLCode = {
DBName: res.locals.DBname,
SQLSchema: res.locals.SQLSchema,
GQLServerCode: res.locals.GQLServerCode,
GQLClientQueriesCode: res.locals.GQLClientQueriesCode,
GQLClientMutationsCode: res.locals.GQLClientMutationsCode,
};
res.status(200).json(GQLCode);
}
);
/* ROUTE TO GET USER POSTGRESQL DB AND CONVERT TO GRAPHQL SERVER, CLIENT QUERIES AND MUTATIONS CODE */
router.post(
'/convert-sql-db',
decryptURI,
getSQLDBname,
getSQLTables,
prepForGQL,
convertToGQLServerCode,
convertToGQLClientQueriesCode,
convertToGQLClientMutationsCode,
(req, res) => {
const GQLCode = {
DBName: res.locals.DBname,
SQLSchema: res.locals.SQLSchema,
GQLServerCode: res.locals.GQLServerCode,
GQLClientQueriesCode: res.locals.GQLClientQueriesCode,
GQLClientMutationsCode: res.locals.GQLClientMutationsCode,
};
res.status(200).json(GQLCode);
}
);
/* ROUTE TO GET USER MONGO DB AND CONVERT TO GRAPHQL SERVER, CLIENT QUERIES AND MUTATIONS CODE */
router.post(
'/convert-mongo-db',
decryptURI,
connectToMongo,
getMongoDocuments,
MongoPrepForGQL,
convertToGQLServerCode,
convertToGQLClientQueriesCode,
convertToGQLClientMutationsCode,
(req, res) => {
const GQLCode = {
DBName: res.locals.DBname,
MongoSchema: res.locals.MongoSchema,
GQLServerCode: res.locals.GQLServerCode,
GQLClientQueriesCode: res.locals.GQLClientQueriesCode,
GQLClientMutationsCode: res.locals.GQLClientMutationsCode,
};
res.status(200).json(GQLCode);
}
);
module.exports = router;