* gzip --> decompress * strictSSL --> https.rejectUnauthorized * auth --> username/password * qs --> searchParams * fix base service auth docs * completely remove requestOptions2GotOptions layer * update the docs Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
79 lines
2.2 KiB
JavaScript
79 lines
2.2 KiB
JavaScript
import Joi from 'joi'
|
|
import { InvalidResponse } from '../index.js'
|
|
import { errorMessagesFor } from './github-helpers.js'
|
|
|
|
const issueSchema = Joi.object({
|
|
head: Joi.object({
|
|
sha: Joi.string().required(),
|
|
}).required(),
|
|
}).required()
|
|
|
|
async function fetchIssue(serviceInstance, { user, repo, number }) {
|
|
return serviceInstance._requestJson({
|
|
schema: issueSchema,
|
|
url: `/repos/${user}/${repo}/pulls/${number}`,
|
|
errorMessages: errorMessagesFor('pull request or repo not found'),
|
|
})
|
|
}
|
|
|
|
const contentSchema = Joi.object({
|
|
// https://github.com/hapijs/joi/issues/1430
|
|
content: Joi.string().required(),
|
|
encoding: Joi.equal('base64').required(),
|
|
}).required()
|
|
|
|
async function fetchRepoContent(
|
|
serviceInstance,
|
|
{ user, repo, branch = 'HEAD', filename }
|
|
) {
|
|
const errorMessages = errorMessagesFor(
|
|
`repo not found, branch not found, or ${filename} missing`
|
|
)
|
|
if (serviceInstance.staticAuthConfigured) {
|
|
const { content } = await serviceInstance._requestJson({
|
|
schema: contentSchema,
|
|
url: `/repos/${user}/${repo}/contents/${filename}`,
|
|
options: { searchParams: { ref: branch } },
|
|
errorMessages,
|
|
})
|
|
|
|
try {
|
|
return Buffer.from(content, 'base64').toString('utf-8')
|
|
} catch (e) {
|
|
throw new InvalidResponse({ prettyMessage: 'undecodable content' })
|
|
}
|
|
} else {
|
|
const { buffer } = await serviceInstance._request({
|
|
url: `https://raw.githubusercontent.com/${user}/${repo}/${branch}/${filename}`,
|
|
errorMessages,
|
|
})
|
|
return buffer
|
|
}
|
|
}
|
|
|
|
async function fetchJsonFromRepo(
|
|
serviceInstance,
|
|
{ schema, user, repo, branch = 'HEAD', filename }
|
|
) {
|
|
if (serviceInstance.staticAuthConfigured) {
|
|
const buffer = await fetchRepoContent(serviceInstance, {
|
|
user,
|
|
repo,
|
|
branch,
|
|
filename,
|
|
})
|
|
const json = serviceInstance._parseJson(buffer)
|
|
return serviceInstance.constructor._validate(json, schema)
|
|
} else {
|
|
return serviceInstance._requestJson({
|
|
schema,
|
|
url: `https://raw.githubusercontent.com/${user}/${repo}/${branch}/${filename}`,
|
|
errorMessages: errorMessagesFor(
|
|
`repo not found, branch not found, or ${filename} missing`
|
|
),
|
|
})
|
|
}
|
|
}
|
|
|
|
export { fetchIssue, fetchRepoContent, fetchJsonFromRepo }
|