wishthis/node_modules/@octokit/request/dist-node/index.js.map
2023-02-08 13:35:10 +01:00

1 line
No EOL
11 KiB
Text

{"version":3,"file":"index.js","sources":["../dist-src/version.js","../dist-src/get-buffer-response.js","../dist-src/fetch-wrapper.js","../dist-src/with-defaults.js","../dist-src/index.js"],"sourcesContent":["export const VERSION = \"6.2.3\";\n","export default function getBufferResponse(response) {\n return response.arrayBuffer();\n}\n","import { isPlainObject } from \"is-plain-object\";\nimport nodeFetch from \"node-fetch\";\nimport { RequestError } from \"@octokit/request-error\";\nimport getBuffer from \"./get-buffer-response\";\nexport default function fetchWrapper(requestOptions) {\n const log = requestOptions.request && requestOptions.request.log\n ? requestOptions.request.log\n : console;\n if (isPlainObject(requestOptions.body) ||\n Array.isArray(requestOptions.body)) {\n requestOptions.body = JSON.stringify(requestOptions.body);\n }\n let headers = {};\n let status;\n let url;\n const fetch = (requestOptions.request && requestOptions.request.fetch) ||\n globalThis.fetch ||\n /* istanbul ignore next */ nodeFetch;\n return fetch(requestOptions.url, Object.assign({\n method: requestOptions.method,\n body: requestOptions.body,\n headers: requestOptions.headers,\n redirect: requestOptions.redirect,\n }, \n // `requestOptions.request.agent` type is incompatible\n // see https://github.com/octokit/types.ts/pull/264\n requestOptions.request))\n .then(async (response) => {\n url = response.url;\n status = response.status;\n for (const keyAndValue of response.headers) {\n headers[keyAndValue[0]] = keyAndValue[1];\n }\n if (\"deprecation\" in headers) {\n const matches = headers.link && headers.link.match(/<([^>]+)>; rel=\"deprecation\"/);\n const deprecationLink = matches && matches.pop();\n log.warn(`[@octokit/request] \"${requestOptions.method} ${requestOptions.url}\" is deprecated. It is scheduled to be removed on ${headers.sunset}${deprecationLink ? `. See ${deprecationLink}` : \"\"}`);\n }\n if (status === 204 || status === 205) {\n return;\n }\n // GitHub API returns 200 for HEAD requests\n if (requestOptions.method === \"HEAD\") {\n if (status < 400) {\n return;\n }\n throw new RequestError(response.statusText, status, {\n response: {\n url,\n status,\n headers,\n data: undefined,\n },\n request: requestOptions,\n });\n }\n if (status === 304) {\n throw new RequestError(\"Not modified\", status, {\n response: {\n url,\n status,\n headers,\n data: await getResponseData(response),\n },\n request: requestOptions,\n });\n }\n if (status >= 400) {\n const data = await getResponseData(response);\n const error = new RequestError(toErrorMessage(data), status, {\n response: {\n url,\n status,\n headers,\n data,\n },\n request: requestOptions,\n });\n throw error;\n }\n return getResponseData(response);\n })\n .then((data) => {\n return {\n status,\n url,\n headers,\n data,\n };\n })\n .catch((error) => {\n if (error instanceof RequestError)\n throw error;\n else if (error.name === \"AbortError\")\n throw error;\n throw new RequestError(error.message, 500, {\n request: requestOptions,\n });\n });\n}\nasync function getResponseData(response) {\n const contentType = response.headers.get(\"content-type\");\n if (/application\\/json/.test(contentType)) {\n return response.json();\n }\n if (!contentType || /^text\\/|charset=utf-8$/.test(contentType)) {\n return response.text();\n }\n return getBuffer(response);\n}\nfunction toErrorMessage(data) {\n if (typeof data === \"string\")\n return data;\n // istanbul ignore else - just in case\n if (\"message\" in data) {\n if (Array.isArray(data.errors)) {\n return `${data.message}: ${data.errors.map(JSON.stringify).join(\", \")}`;\n }\n return data.message;\n }\n // istanbul ignore next - just in case\n return `Unknown error: ${JSON.stringify(data)}`;\n}\n","import fetchWrapper from \"./fetch-wrapper\";\nexport default function withDefaults(oldEndpoint, newDefaults) {\n const endpoint = oldEndpoint.defaults(newDefaults);\n const newApi = function (route, parameters) {\n const endpointOptions = endpoint.merge(route, parameters);\n if (!endpointOptions.request || !endpointOptions.request.hook) {\n return fetchWrapper(endpoint.parse(endpointOptions));\n }\n const request = (route, parameters) => {\n return fetchWrapper(endpoint.parse(endpoint.merge(route, parameters)));\n };\n Object.assign(request, {\n endpoint,\n defaults: withDefaults.bind(null, endpoint),\n });\n return endpointOptions.request.hook(request, endpointOptions);\n };\n return Object.assign(newApi, {\n endpoint,\n defaults: withDefaults.bind(null, endpoint),\n });\n}\n","import { endpoint } from \"@octokit/endpoint\";\nimport { getUserAgent } from \"universal-user-agent\";\nimport { VERSION } from \"./version\";\nimport withDefaults from \"./with-defaults\";\nexport const request = withDefaults(endpoint, {\n headers: {\n \"user-agent\": `octokit-request.js/${VERSION} ${getUserAgent()}`,\n },\n});\n"],"names":["VERSION","getBufferResponse","response","arrayBuffer","fetchWrapper","requestOptions","log","request","console","isPlainObject","body","Array","isArray","JSON","stringify","headers","status","url","fetch","globalThis","nodeFetch","Object","assign","method","redirect","then","keyAndValue","matches","link","match","deprecationLink","pop","warn","sunset","RequestError","statusText","data","undefined","getResponseData","error","toErrorMessage","catch","name","message","contentType","get","test","json","text","getBuffer","errors","map","join","withDefaults","oldEndpoint","newDefaults","endpoint","defaults","newApi","route","parameters","endpointOptions","merge","hook","parse","bind","getUserAgent"],"mappings":"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"}