Files
shields/services/sourceforge/sourceforge-last-commit.service.js
dependabot[bot] b9d96755ec chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 (#9357)
* 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>
2023-07-10 09:27:51 +00:00

62 lines
1.3 KiB
JavaScript

import Joi from 'joi'
import { BaseJsonService } from '../index.js'
import { formatDate } from '../text-formatters.js'
import { age as ageColor } from '../color-formatters.js'
const schema = Joi.object({
commits: Joi.array()
.items(
Joi.object({
committed_date: Joi.string().required(),
}).required(),
)
.required(),
}).required()
export default class SourceforgeLastCommit extends BaseJsonService {
static category = 'activity'
static route = {
base: 'sourceforge/last-commit',
pattern: ':project',
}
static examples = [
{
title: 'SourceForge last commit',
namedParams: {
project: 'guitarix',
},
staticPreview: this.render({
commitDate: 1653556285,
}),
},
]
static defaultBadgeData = { label: 'last commit' }
static render({ commitDate }) {
return {
message: formatDate(new Date(commitDate)),
color: ageColor(new Date(commitDate)),
}
}
async fetch({ project }) {
return this._requestJson({
url: `https://sourceforge.net/rest/p/${project}/git/commits`,
schema,
httpErrors: {
404: 'project not found',
},
})
}
async handle({ project }) {
const body = await this.fetch({ project })
return this.constructor.render({
commitDate: body.commits[0].committed_date,
})
}
}