16
16
17
17
package com.netflix.graphql.dgs.client
18
18
19
- import com.fasterxml.jackson.databind.ObjectMapper
20
- import com.fasterxml.jackson.module.kotlin.KotlinModule
21
- import com.fasterxml.jackson.module.kotlin.registerKotlinModule
22
19
import reactor.core.publisher.Mono
23
20
24
21
/* *
25
- * Default GraphQLClient implementation. Use this class to execute GraphQL queries against a standalone DGS or the gateway.
22
+ * Default [ GraphQLClient] implementation. Use this class to execute GraphQL queries against a standalone DGS or the gateway.
26
23
* The value of this client is in it's JSON parsing of responses.
27
24
* The client is not tied to any particular HTTP client library. The actual HTTP request code is provided by the user.
25
+ * Note that if you want to use WebClient, there is the [WebClientGraphQLClient] available, which is simpler to use.
28
26
*
29
27
* Example:
30
28
*
@@ -40,23 +38,9 @@ import reactor.core.publisher.Mono
40
38
* return new HttpResponse(exchange.getStatusCodeValue(), exchange.getBody());
41
39
* });
42
40
*/
41
+ @Deprecated(" This has been replaced by [CustomGraphQLClient], [CustomReactiveGraphQLClient] and [WebClientGraphQLClient]" )
43
42
class DefaultGraphQLClient (private val url : String ) : GraphQLClient, MonoGraphQLClient {
44
43
45
- companion object {
46
- private val objectMapper: ObjectMapper = try {
47
- Class .forName(" com.fasterxml.jackson.module.kotlin.KotlinModule\$ Builder" )
48
- ObjectMapper ().registerModule(KotlinModule .Builder ().nullIsSameAsDefault(true ).build())
49
- } catch (ex: ClassNotFoundException ) {
50
- ObjectMapper ().registerKotlinModule()
51
- }
52
- private val defaultHeaders = mapOf (
53
- " Accept" to listOf (" application/json" ),
54
- " Content-type" to listOf (" application/json" )
55
- )
56
-
57
- private data class Request (val query : String , val variables : Map <String , Any >, val operationName : String? )
58
- }
59
-
60
44
/* *
61
45
* Executes a query and returns a GraphQLResponse.
62
46
* The actual HTTP request is done by an implementation of RequestExecutor, which is user provided.
@@ -75,10 +59,21 @@ class DefaultGraphQLClient(private val url: String) : GraphQLClient, MonoGraphQL
75
59
operationName : String? ,
76
60
requestExecutor : RequestExecutor
77
61
): GraphQLResponse {
78
- val serializedRequest = objectMapper.writeValueAsString(Request (query, variables, operationName))
62
+ val serializedRequest = GraphQLClients .objectMapper.writeValueAsString(Request (query, variables, operationName))
63
+ val response = requestExecutor.execute(url, GraphQLClients .defaultHeaders, serializedRequest)
64
+ return GraphQLClients .handleResponse(response, serializedRequest, url)
65
+ }
66
+
67
+ override fun executeQuery (query : String ): GraphQLResponse {
68
+ throw UnsupportedOperationException (" Please move to [BlockingGraphQLClient] to use this method" )
69
+ }
70
+
71
+ override fun executeQuery (query : String , variables : Map <String , Any >): GraphQLResponse {
72
+ throw UnsupportedOperationException (" Please move to [BlockingGraphQLClient] to use this method" )
73
+ }
79
74
80
- val response = requestExecutor.execute(url, defaultHeaders, serializedRequest)
81
- return handleResponse(response, serializedRequest )
75
+ override fun executeQuery ( query : String , variables : Map < String , Any >, operationName : String? ): GraphQLResponse {
76
+ throw UnsupportedOperationException ( " Please move to [BlockingGraphQLClient] to use this method " )
82
77
}
83
78
84
79
/* *
@@ -97,9 +92,26 @@ class DefaultGraphQLClient(private val url: String) : GraphQLClient, MonoGraphQL
97
92
variables : Map <String , Any >,
98
93
requestExecutor : RequestExecutor
99
94
): GraphQLResponse {
95
+ @Suppress(" DEPRECATION" , " BlockingMethodInNonBlockingContext" )
100
96
return executeQuery(query, variables, null , requestExecutor)
101
97
}
102
98
99
+ override fun reactiveExecuteQuery (query : String ): Mono <GraphQLResponse > {
100
+ throw UnsupportedOperationException (" Please move to [CustomGraphQLClient] to use this method" )
101
+ }
102
+
103
+ override fun reactiveExecuteQuery (query : String , variables : Map <String , Any >): Mono <GraphQLResponse > {
104
+ throw UnsupportedOperationException (" Please move to [CustomGraphQLClient] to use this method" )
105
+ }
106
+
107
+ override fun reactiveExecuteQuery (
108
+ query : String ,
109
+ variables : Map <String , Any >,
110
+ operationName : String?
111
+ ): Mono <GraphQLResponse > {
112
+ throw UnsupportedOperationException (" Please move to [CustomGraphQLClient] to use this method" )
113
+ }
114
+
103
115
/* *
104
116
* Executes a query and returns a reactive Mono<GraphQLResponse>.
105
117
* The actual HTTP request is done by an implementation of RequestExecutor, which is user provided.
@@ -137,20 +149,9 @@ class DefaultGraphQLClient(private val url: String) : GraphQLClient, MonoGraphQL
137
149
operationName : String? ,
138
150
requestExecutor : MonoRequestExecutor
139
151
): Mono <GraphQLResponse > {
140
- val serializedRequest = objectMapper.writeValueAsString(Request (query, variables, operationName))
141
-
142
- return requestExecutor.execute(url, defaultHeaders, serializedRequest).map { response ->
143
- handleResponse(response, serializedRequest)
144
- }
145
- }
146
-
147
- private fun handleResponse (response : HttpResponse , requestBody : String ): GraphQLResponse {
148
- val (statusCode, body) = response
149
- val headers = response.headers
150
- if (statusCode !in 200 .. 299 ) {
151
- throw GraphQLClientException (statusCode, url, body ? : " " , requestBody)
152
+ val serializedRequest = GraphQLClients .objectMapper.writeValueAsString(Request (query, variables, operationName))
153
+ return requestExecutor.execute(url, GraphQLClients .defaultHeaders, serializedRequest).map { response ->
154
+ GraphQLClients .handleResponse(response, serializedRequest, url)
152
155
}
153
-
154
- return GraphQLResponse (body ? : " " , headers)
155
156
}
156
157
}
0 commit comments