-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
111 lines (105 loc) · 3.25 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
const graphql = require('graphql')
const generateSchema = require('./src/generateSchema')
const register = function (schema) {
sails.registerAction(async (req, res) => {
if(!req.body || !req.body.query) {
return res.badRequest(new Error('Missing query'))
}
try {
const result = await graphql.graphql(
schema,
req.body.query,
null,
{
request: sails.request,
reqData: {
headers: req.headers
}
},
req.body.variables
)
// error returned by graphql schema
if (result.errors && result.errors.length) {
return res.serverError(result)
}
return res.json(result)
} catch (e) {
// error returned by sails
return res.serverError(result)
}
}, 'graphql')
}
const registerSchemaAction = function (schema) {
sails.registerAction(async (req, res) => {
res.status(200)
res.type('text/plain')
return res.send(graphql.printSchema(schema))
}, 'graphql-schema')
}
module.exports = function (sails) {
return {
defaults() {
return {
graphql: {
models: '*',
route: '/graphql',
schemaHook: function (queries, mutations) {
return {queries, mutations}
},
schemaRoute: '/schema',
enableSchemaRoute: true
},
__configKey__: {
models: '*',
route: '/graphql',
schemaHook: function (queries, mutations) {
return {queries, mutations}
},
schemaRoute: '/schema',
enableSchemaRoute: true
},
}
},
configure() {
sails.config[this.configKey] = Object.assign(sails.config[this.configKey] || {}, sails.config.graphql)
},
initialize(cb) {
sails.after(['hook:orm:loaded'], () => {
// get rid of non relevant models like many to many mandatory
// those models have a sails schema, but we must keep through
// models as they carry informations
// could be done on 1 loop, on demand check I guess?
let throughs = []
for (model in sails.models) {
for (attrName in sails.models[model].attributes) {
if (sails.models[model].attributes[attrName].through) {
throughs.push(sails.models[model].attributes[attrName].through)
}
}
}
let toOmit = []
for (model in sails.models) {
if (sails.models[model].hasSchema && throughs.indexOf(model) === -1) {
toOmit.push(model)
}
}
const schema = generateSchema(_.omit(sails.models, toOmit), graphql, this.configKey)
register(schema)
this.routes.before[sails.config[this.configKey].route] = { action: 'graphql' }
if (sails.config[this.configKey].enableSchemaRoute) {
registerSchemaAction(schema)
this.routes.before[sails.config[this.configKey].schemaRoute] = { action: 'graphql-schema' }
}
return cb()
})
},
registerActions(cb) {
const schema = generateSchema(_.omit(sails.models, ['archive']), graphql)
register(schema)
if (sails.config[this.configKey].enableSchemaRoute) {
registerSchemaAction(schema)
}
return cb()
}
}
}