@@ -19,7 +19,7 @@ public AuthorizationVisitorBase(ValidationContext context)
19
19
private List < TodoInfo > ? _todos ;
20
20
21
21
/// <inheritdoc/>
22
- public virtual void Enter ( ASTNode node , ValidationContext context )
22
+ public virtual async ValueTask EnterAsync ( ASTNode node , ValidationContext context )
23
23
{
24
24
// if the node is the selected operation, or if it is a fragment referenced by the current operation,
25
25
// then enable authorization checks on decendant nodes (_checkTree = true)
@@ -58,7 +58,7 @@ public virtual void Enter(ASTNode node, ValidationContext context)
58
58
59
59
// Fields, unlike types, are validated immediately.
60
60
if ( ! fieldAnonymousAllowed ) {
61
- Validate ( field , node , context ) ;
61
+ await ValidateAsync ( field , node , context ) ;
62
62
}
63
63
}
64
64
@@ -92,15 +92,15 @@ public virtual void Enter(ASTNode node, ValidationContext context)
92
92
// verify field argument
93
93
var arg = context . TypeInfo . GetArgument ( ) ;
94
94
if ( arg != null ) {
95
- Validate ( arg , node , context ) ;
95
+ await ValidateAsync ( arg , node , context ) ;
96
96
}
97
97
}
98
98
}
99
99
}
100
100
}
101
101
102
102
/// <inheritdoc/>
103
- public virtual void Leave ( ASTNode node , ValidationContext context )
103
+ public virtual async ValueTask LeaveAsync ( ASTNode node , ValidationContext context )
104
104
{
105
105
if ( ! _checkTree ) {
106
106
// if we are within a field skipped by a directive, resume auth checks at the appropriate time
@@ -114,30 +114,30 @@ public virtual void Leave(ASTNode node, ValidationContext context)
114
114
}
115
115
if ( node == context . Operation ) {
116
116
_checkTree = false ;
117
- PopAndProcess ( ) ;
117
+ await PopAndProcessAsync ( ) ;
118
118
} else if ( node is GraphQLFragmentDefinition fragmentDefinition ) {
119
119
// once a fragment is done being processed, apply it to all types waiting on fragment checks,
120
120
// and process checks for types that are not waiting on any fragments
121
121
_checkTree = false ;
122
122
var fragmentName = fragmentDefinition . FragmentName . Name . StringValue ;
123
123
var ti = _onlyAnonymousSelected . Pop ( ) ;
124
- RecursiveResolve ( fragmentName , ti , context ) ;
124
+ await RecursiveResolveAsync ( fragmentName , ti , context ) ;
125
125
_fragments ??= new ( ) ;
126
126
_fragments . TryAdd ( fragmentName , ti ) ;
127
127
} else if ( _checkTree && node is GraphQLField ) {
128
- PopAndProcess ( ) ;
128
+ await PopAndProcessAsync ( ) ;
129
129
}
130
130
131
131
// pop the current type info, and validate the type if it does not contain only fields marked
132
132
// with AllowAnonymous (assuming it is not waiting on fragments)
133
- void PopAndProcess ( )
133
+ async ValueTask PopAndProcessAsync ( )
134
134
{
135
135
var info = _onlyAnonymousSelected . Pop ( ) ;
136
136
var type = context . TypeInfo . GetLastType ( ) ? . GetNamedType ( ) ;
137
137
if ( type == null )
138
138
return ;
139
139
if ( info . AnyAuthenticated || ( ! info . AnyAnonymous && ( info . WaitingOnFragments ? . Count ?? 0 ) == 0 ) ) {
140
- Validate ( type , node , context ) ;
140
+ await ValidateAsync ( type , node , context ) ;
141
141
} else if ( info . WaitingOnFragments ? . Count > 0 ) {
142
142
_todos ??= new ( ) ;
143
143
_todos . Add ( new ( BuildValidationInfo ( node , type , context ) , info ) ) ;
@@ -205,7 +205,7 @@ static bool GetDirectiveValue(GraphQLDirective directive, ValidationContext cont
205
205
/// Runs when a fragment is added or updated; the fragment might not be waiting on any
206
206
/// other fragments, or it still might be.
207
207
/// </summary>
208
- private void RecursiveResolve ( string fragmentName , TypeInfo ti , ValidationContext context )
208
+ private async ValueTask RecursiveResolveAsync ( string fragmentName , TypeInfo ti , ValidationContext context )
209
209
{
210
210
// first see if any other fragments are waiting on this fragment
211
211
if ( _fragments != null ) {
@@ -216,7 +216,7 @@ private void RecursiveResolve(string fragmentName, TypeInfo ti, ValidationContex
216
216
ti2 . AnyAuthenticated |= ti . AnyAuthenticated ;
217
217
ti2 . AnyAnonymous |= ti . AnyAnonymous ;
218
218
_fragments [ fragment . Key ] = ti2 ;
219
- RecursiveResolve ( fragment . Key , ti2 , context ) ;
219
+ await RecursiveResolveAsync ( fragment . Key , ti2 , context ) ;
220
220
goto Retry ; // modifying a collection at runtime is not supported
221
221
}
222
222
}
@@ -234,7 +234,7 @@ private void RecursiveResolve(string fragmentName, TypeInfo ti, ValidationContex
234
234
_todos . RemoveAt ( i ) ;
235
235
count -- ;
236
236
if ( todo . AnyAuthenticated || ! todo . AnyAnonymous ) {
237
- Validate ( todo . ValidationInfo ) ;
237
+ await ValidateAsync ( todo . ValidationInfo ) ;
238
238
}
239
239
}
240
240
}
0 commit comments