* 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
144 lines
3.6 KiB
JavaScript
144 lines
3.6 KiB
JavaScript
import Joi from 'joi'
|
|
import { renderDateBadge } from '../date.js'
|
|
import { pathParam, queryParam } from '../index.js'
|
|
import { optionalUrl, relativeUri } from '../validators.js'
|
|
import GiteaBase from './gitea-base.js'
|
|
import { description, httpErrorsFor } from './gitea-helper.js'
|
|
|
|
const schema = Joi.array()
|
|
.items(
|
|
Joi.object({
|
|
commit: Joi.object({
|
|
author: Joi.object({
|
|
date: Joi.string().required(),
|
|
}).required(),
|
|
committer: Joi.object({
|
|
date: Joi.string().required(),
|
|
}).required(),
|
|
}).required(),
|
|
}).required(),
|
|
)
|
|
.required()
|
|
.min(1)
|
|
|
|
const displayEnum = ['author', 'committer']
|
|
|
|
const queryParamSchema = Joi.object({
|
|
path: relativeUri,
|
|
display_timestamp: Joi.string()
|
|
.valid(...displayEnum)
|
|
.default('author'),
|
|
gitea_url: optionalUrl,
|
|
}).required()
|
|
|
|
export default class GiteaLastCommit extends GiteaBase {
|
|
static category = 'activity'
|
|
|
|
static route = {
|
|
base: 'gitea/last-commit',
|
|
pattern: ':user/:repo/:branch*',
|
|
queryParamSchema,
|
|
}
|
|
|
|
static openApi = {
|
|
'/gitea/last-commit/{user}/{repo}': {
|
|
get: {
|
|
summary: 'Gitea Last Commit',
|
|
description,
|
|
parameters: [
|
|
pathParam({
|
|
name: 'user',
|
|
example: 'gitea',
|
|
}),
|
|
pathParam({
|
|
name: 'repo',
|
|
example: 'tea',
|
|
}),
|
|
queryParam({
|
|
name: 'path',
|
|
example: 'README.md',
|
|
schema: { type: 'string' },
|
|
description: 'File path to resolve the last commit for.',
|
|
}),
|
|
queryParam({
|
|
name: 'display_timestamp',
|
|
example: 'committer',
|
|
schema: { type: 'string', enum: displayEnum },
|
|
description: 'Defaults to `author` if not specified',
|
|
}),
|
|
queryParam({
|
|
name: 'gitea_url',
|
|
example: 'https://gitea.com',
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
'/gitea/last-commit/{user}/{repo}/{branch}': {
|
|
get: {
|
|
summary: 'Gitea Last Commit (branch)',
|
|
description,
|
|
parameters: [
|
|
pathParam({
|
|
name: 'user',
|
|
example: 'gitea',
|
|
}),
|
|
pathParam({
|
|
name: 'repo',
|
|
example: 'tea',
|
|
}),
|
|
pathParam({
|
|
name: 'branch',
|
|
example: 'main',
|
|
}),
|
|
queryParam({
|
|
name: 'path',
|
|
example: 'README.md',
|
|
schema: { type: 'string' },
|
|
description: 'File path to resolve the last commit for.',
|
|
}),
|
|
queryParam({
|
|
name: 'display_timestamp',
|
|
example: 'committer',
|
|
schema: { type: 'string', enum: displayEnum },
|
|
description: 'Defaults to `author` if not specified',
|
|
}),
|
|
queryParam({
|
|
name: 'gitea_url',
|
|
example: 'https://gitea.com',
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
}
|
|
|
|
static defaultBadgeData = { label: 'last commit' }
|
|
|
|
async fetch({ user, repo, branch, baseUrl, path }) {
|
|
// https://gitea.com/api/swagger#/repository
|
|
return super.fetch({
|
|
schema,
|
|
url: `${baseUrl}/api/v1/repos/${user}/${repo}/commits`,
|
|
options: { searchParams: { sha: branch, path, limit: 1 } },
|
|
httpErrors: httpErrorsFor('user, repo or path not found'),
|
|
})
|
|
}
|
|
|
|
async handle(
|
|
{ user, repo, branch },
|
|
{
|
|
gitea_url: baseUrl = 'https://gitea.com',
|
|
display_timestamp: displayTimestamp,
|
|
path,
|
|
},
|
|
) {
|
|
const body = await this.fetch({
|
|
user,
|
|
repo,
|
|
branch,
|
|
baseUrl,
|
|
path,
|
|
})
|
|
return renderDateBadge(body[0].commit[displayTimestamp].date)
|
|
}
|
|
}
|