47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import Joi from 'joi'
|
|
import { renderVersionBadge } from '../version.js'
|
|
import { BaseJsonService, NotFound } from '../index.js'
|
|
|
|
const cdnjsSchema = Joi.object({
|
|
// optional due to non-standard 'not found' condition
|
|
version: Joi.string(),
|
|
}).required()
|
|
|
|
export default class Cdnjs extends BaseJsonService {
|
|
static category = 'version'
|
|
static route = { base: 'cdnjs/v', pattern: ':library' }
|
|
|
|
static examples = [
|
|
{
|
|
namedParams: { library: 'jquery' },
|
|
staticPreview: this.render({ version: '1.5.2' }),
|
|
},
|
|
]
|
|
|
|
static defaultBadgeData = { label: 'cdnjs' }
|
|
|
|
static render({ version }) {
|
|
return renderVersionBadge({ version })
|
|
}
|
|
|
|
async fetch({ library }) {
|
|
const url = `https://api.cdnjs.com/libraries/${library}?fields=version`
|
|
return this._requestJson({
|
|
url,
|
|
schema: cdnjsSchema,
|
|
})
|
|
}
|
|
|
|
async handle({ library }) {
|
|
const json = await this.fetch({ library })
|
|
|
|
if (Object.keys(json).length === 0) {
|
|
/* Note the 'not found' response from cdnjs is:
|
|
status code = 200, body = {} */
|
|
throw new NotFound()
|
|
}
|
|
|
|
return this.constructor.render({ version: json.version })
|
|
}
|
|
}
|