* chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * reformat all the things (prettier 3) * update tests to await calls to prettier.format() --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: chris48s <git@chris-shaw.dev>
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
import Joi from 'joi'
|
|
import { optionalUrl } from '../validators.js'
|
|
import { formatDate } from '../text-formatters.js'
|
|
import { age as ageColor } from '../color-formatters.js'
|
|
import { documentation, httpErrorsFor } from './gitlab-helper.js'
|
|
import GitLabBase from './gitlab-base.js'
|
|
|
|
const schema = Joi.array()
|
|
.items(
|
|
Joi.object({
|
|
committed_date: Joi.string().required(),
|
|
}).required(),
|
|
)
|
|
.required()
|
|
.min(1)
|
|
|
|
const queryParamSchema = Joi.object({
|
|
ref: Joi.string(),
|
|
gitlab_url: optionalUrl,
|
|
}).required()
|
|
|
|
const refText = `
|
|
<p>
|
|
ref can be filled with the name of a branch, tag or revision range of the repository.
|
|
</p>
|
|
`
|
|
|
|
const defaultDocumentation = documentation + refText
|
|
|
|
export default class GitlabLastCommit extends GitLabBase {
|
|
static category = 'activity'
|
|
|
|
static route = {
|
|
base: 'gitlab/last-commit',
|
|
pattern: ':project+',
|
|
queryParamSchema,
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'GitLab last commit',
|
|
namedParams: {
|
|
project: 'gitlab-org/gitlab',
|
|
},
|
|
queryParams: { gitlab_url: 'https://gitlab.com' },
|
|
staticPreview: this.render({ commitDate: '2013-07-31T20:01:41Z' }),
|
|
documentation: defaultDocumentation,
|
|
},
|
|
]
|
|
|
|
static defaultBadgeData = { label: 'last commit' }
|
|
|
|
static render({ commitDate }) {
|
|
return {
|
|
message: formatDate(commitDate),
|
|
color: ageColor(Date.parse(commitDate)),
|
|
}
|
|
}
|
|
|
|
async fetch({ project, baseUrl, ref }) {
|
|
// https://docs.gitlab.com/ee/api/commits.html#list-repository-commits
|
|
return super.fetch({
|
|
url: `${baseUrl}/api/v4/projects/${encodeURIComponent(
|
|
project,
|
|
)}/repository/commits`,
|
|
options: { searchParams: { ref_name: ref } },
|
|
schema,
|
|
httpErrors: httpErrorsFor('project not found'),
|
|
})
|
|
}
|
|
|
|
async handle(
|
|
{ project },
|
|
{ gitlab_url: baseUrl = 'https://gitlab.com', ref },
|
|
) {
|
|
const data = await this.fetch({ project, baseUrl, ref })
|
|
return this.constructor.render({ commitDate: data[0].committed_date })
|
|
}
|
|
}
|