forked from graphql-go/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscription.go
228 lines (194 loc) · 5.24 KB
/
subscription.go
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package graphql
import (
"context"
"fmt"
"github.com/graphql-go/graphql/gqlerrors"
"github.com/graphql-go/graphql/language/parser"
"github.com/graphql-go/graphql/language/source"
)
// SubscribeParams parameters for subscribing
type SubscribeParams struct {
Schema Schema
RequestString string
RootValue interface{}
// ContextValue context.Context
VariableValues map[string]interface{}
OperationName string
FieldResolver FieldResolveFn
FieldSubscriber FieldResolveFn
}
// Subscribe performs a subscribe operation on the given query and schema
// To finish a subscription you can simply close the channel from inside the `Subscribe` function
// currently does not support extensions hooks
func Subscribe(p Params) chan *Result {
source := source.NewSource(&source.Source{
Body: []byte(p.RequestString),
Name: "GraphQL request",
})
// TODO run extensions hooks
// parse the source
AST, err := parser.Parse(parser.ParseParams{Source: source})
if err != nil {
// merge the errors from extensions and the original error from parser
return sendOneResultAndClose(&Result{
Errors: gqlerrors.FormatErrors(err),
})
}
// validate document
validationResult := ValidateDocument(&p.Schema, AST, nil)
if !validationResult.IsValid {
// run validation finish functions for extensions
return sendOneResultAndClose(&Result{
Errors: validationResult.Errors,
})
}
return ExecuteSubscription(ExecuteParams{
Schema: p.Schema,
Root: p.RootObject,
AST: AST,
OperationName: p.OperationName,
Args: p.VariableValues,
Context: p.Context,
})
}
func sendOneResultAndClose(res *Result) chan *Result {
resultChannel := make(chan *Result, 1)
resultChannel <- res
close(resultChannel)
return resultChannel
}
// ExecuteSubscription is similar to graphql.Execute but returns a channel instead of a Result
// currently does not support extensions
func ExecuteSubscription(p ExecuteParams) chan *Result {
if p.Context == nil {
p.Context = context.Background()
}
var mapSourceToResponse = func(payload interface{}) *Result {
return Execute(ExecuteParams{
Schema: p.Schema,
Root: payload,
AST: p.AST,
OperationName: p.OperationName,
Args: p.Args,
Context: p.Context,
})
}
var resultChannel = make(chan *Result)
go func() {
defer close(resultChannel)
defer func() {
if err := recover(); err != nil {
e, ok := err.(error)
if !ok {
return
}
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(e),
}
}
return
}()
exeContext, err := buildExecutionContext(buildExecutionCtxParams{
Schema: p.Schema,
Root: p.Root,
AST: p.AST,
OperationName: p.OperationName,
Args: p.Args,
Context: p.Context,
})
if err != nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(err),
}
return
}
operationType, err := getOperationRootType(p.Schema, exeContext.Operation)
if err != nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(err),
}
return
}
fields := collectFields(collectFieldsParams{
ExeContext: exeContext,
RuntimeType: operationType,
SelectionSet: exeContext.Operation.GetSelectionSet(),
})
responseNames := []string{}
for name := range fields {
responseNames = append(responseNames, name)
}
responseName := responseNames[0]
fieldNodes := fields[responseName]
fieldNode := fieldNodes[0]
fieldName := fieldNode.Name.Value
fieldDef := getFieldDef(p.Schema, operationType, fieldName)
if fieldDef == nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(fmt.Errorf("the subscription field %q is not defined", fieldName)),
}
return
}
resolveFn := fieldDef.Subscribe
if resolveFn == nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(fmt.Errorf("the subscription function %q is not defined", fieldName)),
}
return
}
fieldPath := &ResponsePath{
Key: responseName,
}
args := getArgumentValues(fieldDef.Args, fieldNode.Arguments, exeContext.VariableValues)
info := ResolveInfo{
FieldName: fieldName,
FieldASTs: fieldNodes,
Path: fieldPath,
ReturnType: fieldDef.Type,
ParentType: operationType,
Schema: p.Schema,
Fragments: exeContext.Fragments,
RootValue: exeContext.Root,
Operation: exeContext.Operation,
VariableValues: exeContext.VariableValues,
}
fieldResult, err := resolveFn(ResolveParams{
Source: p.Root,
Args: args,
Info: info,
Context: p.Context,
})
if err != nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(err),
}
return
}
if fieldResult == nil {
resultChannel <- &Result{
Errors: gqlerrors.FormatErrors(fmt.Errorf("no field result")),
}
return
}
switch fieldResult.(type) {
case chan interface{}:
sub := fieldResult.(chan interface{})
for {
select {
case <-p.Context.Done():
return
case res, more := <-sub:
if !more {
return
}
resultChannel <- mapSourceToResponse(res)
}
}
default:
resultChannel <- mapSourceToResponse(fieldResult)
return
}
}()
// return a result channel
return resultChannel
}