-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.mjs
251 lines (224 loc) · 9.21 KB
/
index.mjs
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*import cacheMachine from './utils/cache-machine.mjs';
import getYoga from './graphql-yoga.mjs';
import graphQLOptions from './utils/graphql-options.mjs';
export default {
async fetch(request, env, ctx) {
try {
const yoga = await getYoga({...env, RESPONSE_CACHE: cacheMachine});
return yoga.fetch(request, {...env, ctx, RESPONSE_CACHE: cacheMachine});
} catch (err) {
console.log(err);
return new Response(graphQLOptions.debug ? err : 'Something went wrong', { status: 500 });
}
},
};*/
import { graphql } from 'graphql';
import { v4 as uuidv4 } from 'uuid';
import DataSource from './datasources/index.mjs';
//import playground from './handlers/playground.mjs';
import graphiql from './handlers/graphiql.mjs';
import setCors from './utils/setCors.mjs';
import schema from './schema.mjs';
import graphqlUtil from './utils/graphql-util.mjs';
import graphQLOptions from './utils/graphql-options.mjs';
import cacheMachine from './utils/cache-machine.mjs';
import fetchWithTimeout from './utils/fetch-with-timeout.mjs';
import { getNightbotResponse, useNightbotOnUrl } from './plugins/plugin-nightbot.mjs';
import { getTwitchResponse } from './plugins/plugin-twitch.mjs';
import { getLiteApiResponse, useLiteApiOnUrl } from './plugins/plugin-lite-api.mjs';
let dataAPI;
async function graphqlHandler(request, env, ctx) {
const url = new URL(request.url);
let query, variables;
if (request.method === 'POST') {
try {
const requestBody = await request.json();
query = requestBody.query;
variables = requestBody.variables;
} catch (jsonError) {
console.error(jsonError);
return new Response(null, {
status: 400,
});
}
} else if (request.method === 'GET') {
query = url.searchParams.get('query');
variables = url.searchParams.get('variables');
}
// Check for empty /graphql query
if (!query || query.trim() === '') {
return new Response('GraphQL requires a query in the body of the request',
{
status: 400,
headers: { 'cache-control': 'public, max-age=2592000' }
}
);
}
// default headers
const responseOptions = {
headers: {
'content-type': 'application/json;charset=UTF-8',
}
};
if (!dataAPI) {
dataAPI = new DataSource(env);
}
const requestId = uuidv4();
console.info(requestId);
console.log(new Date().toLocaleString('en-US', { timeZone: 'UTC' }));
console.log(`KVs pre-loaded: ${dataAPI.kvLoaded.join(', ') || 'none'}`);
//console.log(query);
if (request.headers.has('x-newrelic-synthetics')) {
console.log('NewRelic health check');
//return new Response(JSON.stringify({}), responseOptions);
}
let specialCache = '';
const contentType = request.headers.get('content-type');
if (!contentType || !contentType.startsWith('application/json')) {
specialCache = 'application/json';
}
let key;
// Check the cache service for data first - If cached data exists, return it
// we don't check the cache if we're the http server because the worker already did
if (env.SKIP_CACHE !== 'true' && env.SKIP_CACHE_CHECK !== 'true' && !env.CLOUDFLARE_TOKEN) {
key = await cacheMachine.createKey(env, query, variables, specialCache);
const cachedResponse = await cacheMachine.get(env, {key});
if (cachedResponse) {
// Construct a new response with the cached data
const newResponse = new Response(cachedResponse, responseOptions);
// Add a custom 'X-CACHE: HIT' header so we know the request hit the cache
newResponse.headers.append('X-CACHE', 'HIT');
console.log('Request served from cache');
// Return the new cached response
return newResponse;
}
} else {
//console.log(`Skipping cache in ${ENVIRONMENT} environment`);
}
// if an origin server is configured, pass the request
if (env.USE_ORIGIN === 'true') {
try {
const originUrl = new URL(request.url);
if (env.ORIGIN_OVERRIDE) {
originUrl.host = env.ORIGIN_OVERRIDE;
}
const queryResult = await fetchWithTimeout(originUrl, {
method: 'POST',
body: JSON.stringify({
query,
variables,
}),
headers: {
'Content-Type': 'application/json',
'cache-check-complete': 'true',
},
timeout: 20000
});
if (queryResult.status !== 200) {
throw new Error(`${queryResult.status} ${await queryResult.text()}`);
}
console.log('Request served from origin server');
return new Response(await queryResult.text(), responseOptions);
} catch (error) {
console.error(`Error getting response from origin server: ${error}`);
}
}
const context = graphqlUtil.getDefaultContext(dataAPI, requestId);
let result, ttl;
try {
result = await graphql({schema: await schema(dataAPI, context), source: query, rootValue: {}, contextValue: context, variableValues: variables});
ttl = dataAPI.getRequestTtl(requestId);
//console.log(`${requestId} kvs loaded: ${dataAPI.requests[requestId].kvLoaded.join(', ')}`);
} catch (error) {
throw error;
} finally {
dataAPI.clearRequestData(requestId);
}
console.log('generated graphql response');
if (context.errors.length > 0) {
if (!result.errors) {
result = Object.assign({errors: []}, result); // this puts the errors at the start of the result
}
result.errors.push(...context.errors);
}
if (context.warnings.length > 0) {
if (!result.warnings) {
result = Object.assign({warnings: []}, result);
}
result.warnings.push(...context.warnings);
}
if (result.errors?.some(err => err.message === 'Unexpected error.')) {
ttl = 0;
} else if (result.errors?.some(err => err.message.startsWith('Syntax Error'))) {
ttl = 1800;
} else if (specialCache === 'application/json') {
if (!result.warnings) {
result = Object.assign({warnings: []}, result);
}
ttl = 30 * 60;
result.warnings.push({message: `Your request does not have a "content-type" header set to "application/json". Requests missing this header are limited to resposnes that update every ${ttl/60} minutes.`});
} else if (ttl > 1800) {
// if the ttl is greater than a half hour, limit it
ttl = 1800;
}
const body = JSON.stringify(result);
const response = new Response(body, responseOptions);
if (env.SKIP_CACHE !== 'true' && ttl > 0) {
key = key ?? await cacheMachine.createKey(env, query, variables, specialCache);
ctx.waitUntil(cacheMachine.put(env, body, {key}));
}
return response;
}
export default {
async fetch(request, env, ctx) {
if (!graphQLOptions.cors.allowMethods.split(', ').includes(request.method.toUpperCase())) {
const errorResponse = new Response(null, {
status: 405,
headers: { 'cache-control': 'public, max-age=2592000' },
});
setCors(errorResponse, graphQLOptions.cors);
return errorResponse;
}
if (request.method.toUpperCase() === 'OPTIONS') {
const optionsResponse = new Response(null, {
headers: { 'cache-control': 'public, max-age=2592000' },
});
setCors(optionsResponse, graphQLOptions.cors);
return optionsResponse;
}
const requestStart = new Date();
const url = new URL(request.url);
try {
if (url.pathname === '/twitch') {
const response = await getTwitchResponse(env);
if (graphQLOptions.cors) {
setCors(response, graphQLOptions.cors);
}
return response;
}
if (url.pathname === graphQLOptions.playgroundEndpoint) {
//response = playground(request, graphQLOptions);
return graphiql(graphQLOptions);
}
if (useNightbotOnUrl(url)) {
return await getNightbotResponse(request, url, env, ctx);
}
if (useLiteApiOnUrl(url)) {
return await getLiteApiResponse(request, url, env, ctx);
}
if (url.pathname === graphQLOptions.baseEndpoint) {
const response = await graphqlHandler(request, env, ctx);
if (graphQLOptions.cors) {
setCors(response, graphQLOptions.cors);
}
return response;
}
return new Response('Not found', { status: 404 });
} catch (err) {
console.log(err);
return new Response(graphQLOptions.debug ? err : 'Something went wrong', { status: 500 });
} finally {
console.log(`Response time: ${new Date() - requestStart} ms`);
}
},
};