45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
import Joi from 'joi'
|
|
import { nonNegativeInteger } from '../validators.js'
|
|
import { metric } from '../text-formatters.js'
|
|
import { BaseJsonService } from '../index.js'
|
|
|
|
const schema = Joi.object({ activity_total: nonNegativeInteger })
|
|
|
|
export default class Bountysource extends BaseJsonService {
|
|
static category = 'funding'
|
|
static route = { base: 'bountysource/team', pattern: ':team/activity' }
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Bountysource',
|
|
namedParams: { team: 'mozilla-core' },
|
|
staticPreview: this.render({ total: 53000 }),
|
|
},
|
|
]
|
|
|
|
static defaultBadgeData = { label: 'bounties' }
|
|
|
|
static render({ total }) {
|
|
return {
|
|
message: metric(total),
|
|
color: 'brightgreen',
|
|
}
|
|
}
|
|
|
|
async fetch({ team }) {
|
|
const url = `https://api.bountysource.com/teams/${team}`
|
|
return this._requestJson({
|
|
schema,
|
|
url,
|
|
options: {
|
|
headers: { Accept: 'application/vnd.bountysource+json; version=2' },
|
|
},
|
|
})
|
|
}
|
|
|
|
async handle({ team }) {
|
|
const json = await this.fetch({ team })
|
|
return this.constructor.render({ total: json.activity_total })
|
|
}
|
|
}
|