2023-03-08 13:45:06 -08:00
|
|
|
const {fetch, Headers} = require('cross-fetch');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Metadata header names
|
|
|
|
* @enum {string}
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
const RequestMetadata = {
|
|
|
|
/** The ID of the project associated with this request */
|
|
|
|
ProjectId: 'X-ProjectId',
|
|
|
|
/** The ID of the project run associated with this request */
|
|
|
|
RunId: 'X-RunId'
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Metadata for requests
|
|
|
|
* @type {Map<string, string>}
|
|
|
|
*/
|
|
|
|
const metadata = new Map();
|
2023-03-08 11:23:10 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a network request.
|
|
|
|
* This will be a wrapper for the global fetch method, adding some Scratch-specific functionality.
|
2023-03-08 13:45:06 -08:00
|
|
|
* @param {RequestInfo|URL} resource The resource to fetch.
|
|
|
|
* @param {RequestInit} [options] Optional object containing custom settings for this request.
|
2023-03-08 11:23:10 -08:00
|
|
|
* @see {@link https://developer.mozilla.org/docs/Web/API/fetch} for more about the fetch API.
|
2023-03-08 13:45:06 -08:00
|
|
|
* @returns {Promise<Response>} A promise for the response to the request.
|
|
|
|
*/
|
|
|
|
const scratchFetch = (resource, options) => {
|
|
|
|
let augmentedOptions;
|
|
|
|
if (metadata.size > 0) {
|
|
|
|
augmentedOptions = Object.assign({}, options);
|
|
|
|
augmentedOptions.headers = new Headers(Array.from(metadata));
|
|
|
|
if (options?.headers) {
|
|
|
|
const overrideHeaders =
|
|
|
|
options.headers instanceof Headers ? options.headers : new Headers(options.headers);
|
|
|
|
for (const [name, value] of overrideHeaders.entries()) {
|
|
|
|
augmentedOptions.headers.set(name, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
augmentedOptions = options;
|
|
|
|
}
|
|
|
|
return fetch(resource, augmentedOptions);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {RequestMetadata} name The name of the metadata item to set.
|
|
|
|
* @param {any} value The value to set (will be converted to a string)
|
2023-03-08 11:23:10 -08:00
|
|
|
*/
|
2023-03-08 13:45:06 -08:00
|
|
|
const setMetadata = (name, value) => {
|
|
|
|
metadata.set(name, value);
|
|
|
|
};
|
2023-03-08 11:23:10 -08:00
|
|
|
|
|
|
|
module.exports = {
|
2023-03-08 13:45:06 -08:00
|
|
|
RequestMetadata,
|
2023-03-08 11:23:10 -08:00
|
|
|
default: scratchFetch,
|
2023-03-08 13:45:06 -08:00
|
|
|
scratchFetch,
|
|
|
|
setMetadata
|
2023-03-08 11:23:10 -08:00
|
|
|
};
|