Skip to content

Commit 5405dad

Browse files
[BitbucketLastCommit] Add Bitbucket last commit (#10043)
* Add Bitbucket last commit * Update schemas * Limit API results to 1 * Make `branch` a required path param Co-authored-by: chris48s <chris48s@users.noreply.github.com> * Better message for no commits found * Update 404 message * Use common `relativeUri` validator for `path` --------- Co-authored-by: chris48s <chris48s@users.noreply.github.com>
1 parent 4f141df commit 5405dad

File tree

2 files changed

+122
-0
lines changed

2 files changed

+122
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
import { isFormattedDate } from '../test-validators.js'
2+
import { ServiceTester } from '../tester.js'
3+
4+
export const t = new ServiceTester({
5+
id: 'BitbucketLastCommit',
6+
title: 'Bitbucket last commit',
7+
pathPrefix: '/bitbucket/last-commit',
8+
})
9+
10+
t.create('last commit')
11+
.get('/shields-io/test-repo/main.json')
12+
.expectBadge({ label: 'last commit', message: isFormattedDate })
13+
14+
t.create('last commit (path)')
15+
.get('/shields-io/test-repo/main.json?path=README.md')
16+
.expectBadge({ label: 'last commit', message: isFormattedDate })
17+
18+
t.create('last commit (user not found)')
19+
.get('/not-a-user/test-repo/main.json')
20+
.expectBadge({
21+
label: 'last commit',
22+
message: 'user, repo or branch not found',
23+
})
24+
25+
t.create('last commit (repo not found)')
26+
.get('/shields-io/not-a-repo/main.json')
27+
.expectBadge({
28+
label: 'last commit',
29+
message: 'user, repo or branch not found',
30+
})
31+
32+
t.create('last commit (branch not found)')
33+
.get('/shields-io/test-repo/not-a-branch.json')
34+
.expectBadge({
35+
label: 'last commit',
36+
message: 'user, repo or branch not found',
37+
})
38+
39+
t.create('last commit (path not found)')
40+
.get('/shields-io/test-repo/main.json?path=not/a/dir')
41+
.expectBadge({ label: 'last commit', message: 'no commits found' })

0 commit comments

Comments
 (0)