-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathBaseHttpLink.ts
More file actions
151 lines (133 loc) · 4.75 KB
/
Copy pathBaseHttpLink.ts
File metadata and controls
151 lines (133 loc) · 4.75 KB
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
import { Observable } from "rxjs";
import { ApolloLink } from "@apollo/client/link";
import { filterOperationVariables } from "@apollo/client/link/utils";
import {
isMutationOperation,
isSubscriptionOperation,
} from "@apollo/client/utilities";
import { __DEV__ } from "@apollo/client/utilities/environment";
import { compact } from "@apollo/client/utilities/internal";
import { maybe } from "@apollo/client/utilities/internal/globals";
import { checkFetcher } from "./checkFetcher.js";
import type { HttpLink } from "./HttpLink.js";
import {
parseAndCheckHttpResponse,
readMultipartBody,
} from "./parseAndCheckHttpResponse.js";
import { rewriteURIForGET } from "./rewriteURIForGET.js";
import {
defaultPrinter,
fallbackHttpConfig,
selectHttpOptionsAndBodyInternal,
} from "./selectHttpOptionsAndBody.js";
import { selectURI } from "./selectURI.js";
const backupFetch = maybe(() => fetch);
export class BaseHttpLink extends ApolloLink {
constructor(linkOptions: HttpLink.Options = {}) {
let {
uri = "/graphql",
// use default global fetch if nothing passed in
fetch: preferredFetch,
print = defaultPrinter,
includeExtensions,
preserveHeaderCase,
useGETForQueries,
includeUnusedVariables = false,
...requestOptions
} = linkOptions;
if (__DEV__) {
// Make sure at least one of preferredFetch, window.fetch, or backupFetch is
// defined, so requests won't fail at runtime.
checkFetcher(preferredFetch || backupFetch);
}
const linkConfig = {
http: compact({ includeExtensions, preserveHeaderCase }),
options: requestOptions.fetchOptions,
credentials: requestOptions.credentials,
headers: requestOptions.headers,
};
super((operation) => {
let chosenURI = selectURI(operation, uri);
const context = operation.getContext();
const http = { ...context.http };
if (isSubscriptionOperation(operation.query)) {
http.accept = [
"multipart/mixed;boundary=graphql;subscriptionSpec=1.0",
...(http.accept || []),
];
}
const contextConfig = {
http,
options: context.fetchOptions,
credentials: context.credentials,
headers: context.headers,
};
//uses fallback, link, and then context to build options
const { options, body } = selectHttpOptionsAndBodyInternal(
operation,
print,
fallbackHttpConfig,
linkConfig,
contextConfig
);
if (body.variables && !includeUnusedVariables) {
body.variables = filterOperationVariables(
body.variables,
operation.query
);
}
let controller: AbortController | undefined;
if (!options.signal && typeof AbortController !== "undefined") {
controller = new AbortController();
options.signal = controller.signal;
}
if (useGETForQueries && !isMutationOperation(operation.query)) {
options.method = "GET";
}
return new Observable((observer) => {
if (options.method === "GET") {
const { newURI, parseError } = rewriteURIForGET(chosenURI, body);
if (parseError) {
throw parseError;
}
chosenURI = newURI;
} else {
options.body = JSON.stringify(body);
}
// Prefer linkOptions.fetch (preferredFetch) if provided, and otherwise
// fall back to the *current* global window.fetch function (see issue
// #7832), or (if all else fails) the backupFetch function we saved when
// this module was first evaluated. This last option protects against the
// removal of window.fetch, which is unlikely but not impossible.
const currentFetch =
preferredFetch || maybe(() => fetch) || backupFetch;
const observerNext = observer.next.bind(observer);
currentFetch!(chosenURI, options)
.then((response) => {
operation.setContext({ response });
const ctype = response.headers?.get("content-type");
if (ctype !== null && /^multipart\/mixed/i.test(ctype)) {
return readMultipartBody(response, observerNext);
} else {
return parseAndCheckHttpResponse(operation)(response).then(
observerNext
);
}
})
.then(() => {
controller = undefined;
observer.complete();
})
.catch((err) => {
controller = undefined;
observer.error(err);
});
return () => {
// XXX support canceling this request
// https://developers.google.com/web/updates/2017/09/abortable-fetch
if (controller) controller.abort();
};
});
});
}
}