1
0
mirror of https://github.com/badges/shields.git synced 2025-04-18 19:44:04 +03:00
shields/services/github/gist/github-gist-last-commit.service.js
chris48s 5cdef88bcc
Add renderDateBadge helper; affects [aur BitbucketLastCommit chrome date eclipse factorio galaxytoolshed GiteaLastCommit GistLastCommit GithubCreatedAt GithubHacktoberfest GithubIssueDetail GithubLastCommit GithubReleaseDate GitlabLastCommit maven npm openvsx snapcraft SourceforgeLastCommit steam vaadin visualstudio wordpress] (#10682)
* add and consistently use parseDate and renderDateBadge helpers

also move

- age
- formatDate
- formatRelativeDate

to date.js

* fix bug in wordpress last update badge

* validate in formatDate() and age()

it is going to be unlikely we'll invoke either of these
directly now, but lets calidate here too

* remove unusued imports

* reverse colours for galaxy toolshed
2024-11-17 13:15:28 +00:00

42 lines
1.2 KiB
JavaScript

import Joi from 'joi'
import { pathParams } from '../../index.js'
import { renderDateBadge } from '../../date.js'
import { GithubAuthV3Service } from '../github-auth-service.js'
import { documentation, httpErrorsFor } from '../github-helpers.js'
const schema = Joi.object({
updated_at: Joi.string().required(),
}).required()
export default class GistLastCommit extends GithubAuthV3Service {
static category = 'activity'
static route = { base: 'github/gist/last-commit', pattern: ':gistId' }
static openApi = {
'/github/gist/last-commit/{gistId}': {
get: {
summary: 'GitHub Gist last commit',
description: `Shows the latest commit to a GitHub Gist.\n${documentation}`,
parameters: pathParams({
name: 'gistId',
example: '8710649',
}),
},
},
}
static defaultBadgeData = { label: 'last commit' }
async fetch({ gistId }) {
return this._requestJson({
url: `/gists/${gistId}`,
schema,
httpErrors: httpErrorsFor('gist not found'),
})
}
async handle({ gistId }) {
const { updated_at: commitDate } = await this.fetch({ gistId })
return renderDateBadge(commitDate)
}
}