* add base class for Graphql APIs * add GithubAuthV4Service + updates to GH token pool * update github forks to use GithubAuthV4Service * rename GithubAuthService to GithubAuthV3Service
118 lines
2.9 KiB
JavaScript
118 lines
2.9 KiB
JavaScript
'use strict'
|
|
|
|
const Joi = require('@hapi/joi')
|
|
const { metric } = require('../text-formatters')
|
|
const { nonNegativeInteger } = require('../validators')
|
|
const { GithubAuthV3Service } = require('./github-auth-service')
|
|
const { fetchLatestRelease } = require('./github-common-fetch')
|
|
const { documentation, errorMessagesFor } = require('./github-helpers')
|
|
|
|
const schema = Joi.object({ ahead_by: nonNegativeInteger }).required()
|
|
|
|
module.exports = class GithubCommitsSince extends GithubAuthV3Service {
|
|
static get category() {
|
|
return 'activity'
|
|
}
|
|
|
|
static get route() {
|
|
return {
|
|
base: 'github/commits-since',
|
|
pattern: ':user/:repo/:version/:branch*',
|
|
}
|
|
}
|
|
|
|
static get examples() {
|
|
return [
|
|
{
|
|
title: 'GitHub commits since tagged version',
|
|
namedParams: {
|
|
user: 'SubtitleEdit',
|
|
repo: 'subtitleedit',
|
|
version: '3.4.7',
|
|
},
|
|
staticPreview: this.render({
|
|
version: '3.4.7',
|
|
commitCount: 4225,
|
|
}),
|
|
documentation,
|
|
},
|
|
{
|
|
title: 'GitHub commits since tagged version (branch)',
|
|
namedParams: {
|
|
user: 'SubtitleEdit',
|
|
repo: 'subtitleedit',
|
|
version: '3.4.7',
|
|
branch: 'master',
|
|
},
|
|
staticPreview: this.render({
|
|
version: '3.4.7',
|
|
commitCount: 4225,
|
|
}),
|
|
documentation,
|
|
},
|
|
{
|
|
title: 'GitHub commits since latest release',
|
|
namedParams: {
|
|
user: 'SubtitleEdit',
|
|
repo: 'subtitleedit',
|
|
version: 'latest',
|
|
},
|
|
staticPreview: this.render({
|
|
version: '3.5.7',
|
|
commitCount: 157,
|
|
}),
|
|
documentation,
|
|
},
|
|
{
|
|
title: 'GitHub commits since latest release (branch)',
|
|
namedParams: {
|
|
user: 'SubtitleEdit',
|
|
repo: 'subtitleedit',
|
|
version: 'latest',
|
|
branch: 'master',
|
|
},
|
|
staticPreview: this.render({
|
|
version: '3.5.7',
|
|
commitCount: 157,
|
|
}),
|
|
documentation,
|
|
},
|
|
]
|
|
}
|
|
|
|
static get defaultBadgeData() {
|
|
return {
|
|
label: 'github',
|
|
namedLogo: 'github',
|
|
}
|
|
}
|
|
|
|
static render({ version, commitCount }) {
|
|
return {
|
|
label: `commits since ${version}`,
|
|
message: metric(commitCount),
|
|
color: 'blue',
|
|
}
|
|
}
|
|
|
|
async handle({ user, repo, version, branch }) {
|
|
if (version === 'latest') {
|
|
;({ tag_name: version } = await fetchLatestRelease(this, {
|
|
user,
|
|
repo,
|
|
}))
|
|
}
|
|
|
|
const notFoundMessage = branch
|
|
? 'repo, branch or version not found'
|
|
: 'repo or version not found'
|
|
const { ahead_by: commitCount } = await this._requestJson({
|
|
schema,
|
|
url: `/repos/${user}/${repo}/compare/${version}...${branch || 'master'}`,
|
|
errorMessages: errorMessagesFor(notFoundMessage),
|
|
})
|
|
|
|
return this.constructor.render({ version, commitCount })
|
|
}
|
|
}
|