Files
shields/services/github/github-repo-size.service.js
chris48s 8621fe42d7 Upgrade Joi (#3505)
* upgrade joi
* find & replace ALL THE THINGS
* update related deps
2019-06-02 21:59:55 +01:00

66 lines
1.4 KiB
JavaScript

'use strict'
const Joi = require('@hapi/joi')
const prettyBytes = require('pretty-bytes')
const { nonNegativeInteger } = require('../validators')
const { GithubAuthService } = require('./github-auth-service')
const { documentation, errorMessagesFor } = require('./github-helpers')
const schema = Joi.object({
size: nonNegativeInteger,
}).required()
module.exports = class GithubRepoSize extends GithubAuthService {
static get category() {
return 'size'
}
static get route() {
return {
base: 'github/repo-size',
pattern: ':user/:repo',
}
}
static get examples() {
return [
{
title: 'GitHub repo size',
namedParams: {
user: 'atom',
repo: 'atom',
},
staticPreview: this.render({ size: 319488 }),
documentation,
},
]
}
static get defaultBadgeData() {
return {
label: 'repo size',
}
}
static render({ size }) {
return {
// note the GH API returns size in Kb
message: prettyBytes(size * 1024),
color: 'blue',
}
}
async fetch({ user, repo }) {
return this._requestJson({
url: `/repos/${user}/${repo}`,
schema,
errorMessages: errorMessagesFor(),
})
}
async handle({ user, repo }) {
const { size } = await this.fetch({ user, repo })
return this.constructor.render({ size })
}
}