* feat: support authentication on Libraries.io requests * feat: wire up libraries.io config and api provider instantiation * feat: create libraries.io and bower base classes * refactor: tweak libraries/bower service classes and tests * rename request fetcher function/arg * throw exception when no tokens available * cleanup old value Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
136 lines
3.5 KiB
JavaScript
136 lines
3.5 KiB
JavaScript
import Joi from 'joi'
|
|
import LibrariesIoBase from './librariesio-base.js'
|
|
import {
|
|
transform,
|
|
renderDependenciesBadge,
|
|
} from './librariesio-dependencies-helpers.js'
|
|
|
|
const schema = Joi.object({
|
|
dependencies: Joi.array()
|
|
.items(
|
|
Joi.object({
|
|
deprecated: Joi.boolean().allow(null).required(),
|
|
outdated: Joi.boolean().allow(null).required(),
|
|
})
|
|
)
|
|
.default([]),
|
|
}).required()
|
|
|
|
class LibrariesIoProjectDependencies extends LibrariesIoBase {
|
|
static category = 'dependencies'
|
|
|
|
static route = {
|
|
base: 'librariesio/release',
|
|
pattern: ':platform/:scope(@[^/]+)?/:packageName/:version?',
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Libraries.io dependency status for latest release',
|
|
pattern: ':platform/:packageName',
|
|
namedParams: {
|
|
platform: 'hex',
|
|
packageName: 'phoenix',
|
|
},
|
|
staticPreview: renderDependenciesBadge({
|
|
deprecatedCount: 0,
|
|
outdatedCount: 1,
|
|
}),
|
|
},
|
|
{
|
|
title: 'Libraries.io dependency status for specific release',
|
|
pattern: ':platform/:packageName/:version',
|
|
namedParams: {
|
|
platform: 'hex',
|
|
packageName: 'phoenix',
|
|
version: '1.0.3',
|
|
},
|
|
staticPreview: renderDependenciesBadge({
|
|
deprecatedCount: 0,
|
|
outdatedCount: 3,
|
|
}),
|
|
},
|
|
{
|
|
title:
|
|
'Libraries.io dependency status for latest release, scoped npm package',
|
|
pattern: ':platform/:scope/:packageName',
|
|
namedParams: {
|
|
platform: 'npm',
|
|
scope: '@babel',
|
|
packageName: 'core',
|
|
},
|
|
staticPreview: renderDependenciesBadge({
|
|
deprecatedCount: 8,
|
|
outdatedCount: 0,
|
|
}),
|
|
},
|
|
{
|
|
title:
|
|
'Libraries.io dependency status for specific release, scoped npm package',
|
|
pattern: ':platform/:scope/:packageName/:version',
|
|
namedParams: {
|
|
platform: 'npm',
|
|
scope: '@babel',
|
|
packageName: 'core',
|
|
version: '7.0.0',
|
|
},
|
|
staticPreview: renderDependenciesBadge({
|
|
deprecatedCount: 12,
|
|
outdatedCount: 0,
|
|
}),
|
|
},
|
|
]
|
|
|
|
async handle({ platform, scope, packageName, version = 'latest' }) {
|
|
const url = `/${encodeURIComponent(platform)}/${
|
|
scope ? encodeURIComponent(`${scope}/`) : ''
|
|
}${encodeURIComponent(packageName)}/${encodeURIComponent(
|
|
version
|
|
)}/dependencies`
|
|
const json = await this._requestJson({
|
|
url,
|
|
schema,
|
|
errorMessages: { 404: 'package or version not found' },
|
|
})
|
|
const { deprecatedCount, outdatedCount } = transform(json)
|
|
return renderDependenciesBadge({ deprecatedCount, outdatedCount })
|
|
}
|
|
}
|
|
|
|
class LibrariesIoRepoDependencies extends LibrariesIoBase {
|
|
static category = 'dependencies'
|
|
|
|
static route = {
|
|
base: 'librariesio/github',
|
|
pattern: ':user/:repo',
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Libraries.io dependency status for GitHub repo',
|
|
namedParams: {
|
|
user: 'phoenixframework',
|
|
repo: 'phoenix',
|
|
},
|
|
staticPreview: renderDependenciesBadge({ outdatedCount: 325 }),
|
|
},
|
|
]
|
|
|
|
async handle({ user, repo }) {
|
|
const url = `/github/${encodeURIComponent(user)}/${encodeURIComponent(
|
|
repo
|
|
)}/dependencies`
|
|
const json = await this._requestJson({
|
|
url,
|
|
schema,
|
|
errorMessages: {
|
|
404: 'repo not found',
|
|
},
|
|
})
|
|
const { deprecatedCount, outdatedCount } = transform(json)
|
|
return renderDependenciesBadge({ deprecatedCount, outdatedCount })
|
|
}
|
|
}
|
|
|
|
export default [LibrariesIoProjectDependencies, LibrariesIoRepoDependencies]
|