Refactor [BitbucketPullRequest] (#3649)

This encapsulates the fetch methods slightly better. Cherry-picked from #3410, which needs to be reworked. This change should simplify dropping in the new auth method when that happens.
This commit is contained in:
Paul Melnikow
2019-07-05 17:40:43 -04:00
committed by GitHub
parent c817e69775
commit 9346548850

View File

@@ -6,7 +6,7 @@ const { metric } = require('../text-formatters')
const { nonNegativeInteger, optionalUrl } = require('../validators')
const { BaseJsonService } = require('..')
const bitbucketPullRequestSchema = Joi.object({
const schema = Joi.object({
size: nonNegativeInteger,
}).required()
@@ -14,6 +14,12 @@ const queryParamSchema = Joi.object({
server: optionalUrl,
}).required()
const errorMessages = {
401: 'invalid credentials',
403: 'private repo',
404: 'not found',
}
function pullRequestClassGenerator(raw) {
const routePrefix = raw ? 'pr-raw' : 'pr'
const badgeSuffix = raw ? '' : ' open'
@@ -68,9 +74,15 @@ function pullRequestClassGenerator(raw) {
}
}
async fetchCloud({ args, user, repo }) {
args.url = `https://bitbucket.org/api/2.0/repositories/${user}/${repo}/pullrequests/`
args.options = { qs: { state: 'OPEN', limit: 0 } }
async fetchCloud({ user, repo }) {
const args = {
url: `https://bitbucket.org/api/2.0/repositories/${user}/${repo}/pullrequests/`,
schema,
options: {
qs: { state: 'OPEN', limit: 0 },
},
errorMessages,
}
if (
serverSecrets.bitbucket_username &&
@@ -86,15 +98,19 @@ function pullRequestClassGenerator(raw) {
}
// https://docs.atlassian.com/bitbucket-server/rest/5.16.0/bitbucket-rest.html#idm46229602363312
async fetchServer({ args, server, user, repo }) {
args.url = `${server}/rest/api/1.0/projects/${user}/repos/${repo}/pull-requests`
args.options = {
qs: {
state: 'OPEN',
limit: 100,
withProperties: false,
withAttributes: false,
async fetchServer({ server, user, repo }) {
const args = {
url: `${server}/rest/api/1.0/projects/${user}/repos/${repo}/pull-requests`,
schema,
options: {
qs: {
state: 'OPEN',
limit: 100,
withProperties: false,
withAttributes: false,
},
},
errorMessages,
}
if (
@@ -111,19 +127,10 @@ function pullRequestClassGenerator(raw) {
}
async fetch({ server, user, repo }) {
const args = {
schema: bitbucketPullRequestSchema,
errorMessages: {
401: 'invalid credentials',
403: 'private repo',
404: 'not found',
},
}
if (server !== undefined) {
return this.fetchServer({ args, server, user, repo })
return this.fetchServer({ server, user, repo })
} else {
return this.fetchCloud({ args, user, repo })
return this.fetchCloud({ user, repo })
}
}