* migrate some services from examples to openApi * migrate pub version * improve pub descriptions
85 lines
2.4 KiB
JavaScript
85 lines
2.4 KiB
JavaScript
import Joi from 'joi'
|
|
import { metric } from '../text-formatters.js'
|
|
import { nonNegativeInteger } from '../validators.js'
|
|
import { BaseJsonService, pathParams } from '../index.js'
|
|
|
|
const schema = Joi.object({
|
|
lines: nonNegativeInteger,
|
|
}).required()
|
|
|
|
const description = `
|
|
The \`provider\` is the domain name of git host.
|
|
If no TLD is provided, \`.com\` will be added.
|
|
For example, setting \`gitlab\` or \`bitbucket.org\` as the
|
|
provider also works.
|
|
|
|
Tokei will automatically count all files with a recognized extension. It will
|
|
automatically ignore files and folders in \`.ignore\` files. If you
|
|
want to ignore files or folders specifically for tokei, add them to the
|
|
\`.tokeignore\` in the root of your repository. See
|
|
[https://github.com/XAMPPRocky/tokei#excluding-folders](https://github.com/XAMPPRocky/tokei#excluding-folders)
|
|
for more info.
|
|
`
|
|
|
|
export default class Tokei extends BaseJsonService {
|
|
static category = 'size'
|
|
|
|
static route = { base: 'tokei/lines', pattern: ':provider/:user/:repo' }
|
|
|
|
static openApi = {
|
|
'/tokei/lines/{provider}/{user}/{repo}': {
|
|
get: {
|
|
summary: 'Lines of code',
|
|
description,
|
|
parameters: pathParams(
|
|
{
|
|
name: 'provider',
|
|
example: 'github',
|
|
},
|
|
{
|
|
name: 'user',
|
|
example: 'badges',
|
|
},
|
|
{
|
|
name: 'repo',
|
|
example: 'shields',
|
|
},
|
|
),
|
|
},
|
|
},
|
|
}
|
|
|
|
static defaultBadgeData = {
|
|
label: 'total lines',
|
|
color: 'blue',
|
|
}
|
|
|
|
static render({ lines }) {
|
|
return { message: metric(lines) }
|
|
}
|
|
|
|
async fetch({ provider, user, repo }) {
|
|
// This request uses the tokei-rs (https://github.com/XAMPPRocky/tokei_rs) API.
|
|
//
|
|
// By default, the API returns an svg, but when the Accept HTTP header is set to
|
|
// `application/json`, it sends json data. The `_requestJson` method
|
|
// automatically sets the Accept Header to what we need, so we don't need to
|
|
// specify it here.
|
|
//
|
|
// This behaviour of the API is "documented" here:
|
|
// https://github.com/XAMPPRocky/tokei_rs/issues/8#issuecomment-475071147
|
|
return this._requestJson({
|
|
schema,
|
|
url: `https://tokei.rs/b1/${provider}/${user}/${repo}`,
|
|
httpErrors: {
|
|
400: 'repo not found',
|
|
},
|
|
})
|
|
}
|
|
|
|
async handle({ provider, user, repo }) {
|
|
const { lines } = await this.fetch({ provider, user, repo })
|
|
return this.constructor.render({ lines })
|
|
}
|
|
}
|