57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
import Joi from 'joi'
|
|
import { metric } from '../text-formatters.js'
|
|
import { nonNegativeInteger } from '../validators.js'
|
|
import { BaseJsonService } from '../index.js'
|
|
|
|
const schema = Joi.object({
|
|
count: nonNegativeInteger.required(),
|
|
}).required()
|
|
|
|
export default class SourceforgeOpenTickets extends BaseJsonService {
|
|
static category = 'other'
|
|
|
|
static route = {
|
|
base: 'sourceforge/open-tickets',
|
|
pattern: ':project/:type(bugs|feature-requests)',
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Sourceforge Open Tickets',
|
|
namedParams: {
|
|
type: 'bugs',
|
|
project: 'sevenzip',
|
|
},
|
|
staticPreview: this.render({ count: 1338 }),
|
|
},
|
|
]
|
|
|
|
static defaultBadgeData = {
|
|
label: 'open tickets',
|
|
color: 'blue',
|
|
}
|
|
|
|
static render({ count }) {
|
|
return {
|
|
message: metric(count),
|
|
}
|
|
}
|
|
|
|
async fetch({ type, project }) {
|
|
const url = `https://sourceforge.net/rest/p/${project}/${type}/search?limit=1&q=status%3Aopen`
|
|
|
|
return this._requestJson({
|
|
schema,
|
|
url,
|
|
errorMessages: {
|
|
404: 'project not found',
|
|
},
|
|
})
|
|
}
|
|
|
|
async handle({ type, project }) {
|
|
const { count } = await this.fetch({ type, project })
|
|
return this.constructor.render({ count })
|
|
}
|
|
}
|