|
| 1 | +import Joi from 'joi' |
| 2 | +import { age as ageColor } from '../color-formatters.js' |
| 3 | +import { BaseJsonService, NotFound, pathParam, queryParam } from '../index.js' |
| 4 | +import { formatDate } from '../text-formatters.js' |
| 5 | +import { relativeUri } from '../validators.js' |
| 6 | + |
| 7 | +const schema = Joi.object({ |
| 8 | + values: Joi.array().items({ |
| 9 | + date: Joi.string().isoDate().required(), |
| 10 | + }), |
| 11 | +}).required() |
| 12 | + |
| 13 | +const queryParamSchema = Joi.object({ |
| 14 | + path: relativeUri, |
| 15 | +}).required() |
| 16 | + |
| 17 | +export default class BitbucketLastCommit extends BaseJsonService { |
| 18 | + static category = 'activity' |
| 19 | + static route = { |
| 20 | + base: 'bitbucket/last-commit', |
| 21 | + pattern: ':user/:repo/:branch+', |
| 22 | + queryParamSchema, |
| 23 | + } |
| 24 | + |
| 25 | + static openApi = { |
| 26 | + '/bitbucket/last-commit/{user}/{repo}/{branch}': { |
| 27 | + get: { |
| 28 | + summary: 'Bitbucket last commit', |
| 29 | + parameters: [ |
| 30 | + pathParam({ name: 'user', example: 'shields-io' }), |
| 31 | + pathParam({ name: 'repo', example: 'test-repo' }), |
| 32 | + pathParam({ name: 'branch', example: 'main' }), |
| 33 | + queryParam({ |
| 34 | + name: 'path', |
| 35 | + example: 'README.md', |
| 36 | + schema: { type: 'string' }, |
| 37 | + description: 'File path to resolve the last commit for.', |
| 38 | + }), |
| 39 | + ], |
| 40 | + }, |
| 41 | + }, |
| 42 | + } |
| 43 | + |
| 44 | + static defaultBadgeData = { label: 'last commit' } |
| 45 | + |
| 46 | + static render({ commitDate }) { |
| 47 | + return { |
| 48 | + message: formatDate(commitDate), |
| 49 | + color: ageColor(Date.parse(commitDate)), |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + async fetch({ user, repo, branch, path }) { |
| 54 | + // https://developer.atlassian.com/cloud/bitbucket/rest/api-group-commits/#api-repositories-workspace-repo-slug-commits-get |
| 55 | + return this._requestJson({ |
| 56 | + url: `https://bitbucket.org/api/2.0/repositories/${user}/${repo}/commits/${branch}`, |
| 57 | + options: { |
| 58 | + searchParams: { |
| 59 | + path, |
| 60 | + pagelen: 1, |
| 61 | + fields: 'values.date', |
| 62 | + }, |
| 63 | + }, |
| 64 | + schema, |
| 65 | + httpErrors: { |
| 66 | + 403: 'private repo', |
| 67 | + 404: 'user, repo or branch not found', |
| 68 | + }, |
| 69 | + }) |
| 70 | + } |
| 71 | + |
| 72 | + async handle({ user, repo, branch }, queryParams) { |
| 73 | + const { path } = queryParams |
| 74 | + const data = await this.fetch({ user, repo, branch, path }) |
| 75 | + const [commit] = data.values |
| 76 | + |
| 77 | + if (!commit) throw new NotFound({ prettyMessage: 'no commits found' }) |
| 78 | + |
| 79 | + return this.constructor.render({ commitDate: commit.date }) |
| 80 | + } |
| 81 | +} |
0 commit comments