Skip to content

Commit dab0e63

Browse files
authored
Merge pull request #968 from beezly/use_gitlab_api_env
Use CI_API_V4_URL in GitLab if it is available
2 parents 86d4573 + 3f27263 commit dab0e63

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

docs/usage/gitlab.html.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ blurb: An overview of using Danger with GitLab, and some examples
77
---
88

99
To use Danger JS with GitLab: you'll need to create a new account for Danger to use, then set the following environment
10-
variables on your CI system:
10+
variable on your CI system:
1111

12-
- `DANGER_GITLAB_HOST` = Defaults to `https://gitlab.com` but you can use it for your own url
1312
- `DANGER_GITLAB_API_TOKEN` = An access token for the account which will post comments
1413

14+
If you are using a GitLab version prior to 11.7 you will also need to define the following environment variable:
15+
16+
- `DANGER_GITLAB_HOST` = Defaults to `https://gitlab.com` but you can use it for your own url
17+
1518
Then in your Dangerfiles you will have a fully fleshed out `danger.gitlab` object to work with. For example:
1619

1720
```ts

source/platforms/gitlab/GitLabAPI.ts

+12
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,23 @@ export interface GitLabAPICredentials {
2525
export function getGitLabAPICredentialsFromEnv(env: Env): GitLabAPICredentials {
2626
let host = "https://gitlab.com"
2727
const envHost = env["DANGER_GITLAB_HOST"]
28+
const envCIAPI = env["CI_API_V4_URL"]
29+
2830
if (envHost) {
2931
// We used to support DANGER_GITLAB_HOST being just the host e.g. "gitlab.com"
3032
// however it is possible to have a custom host without SSL, ensure we only add the protocol if one is not provided
3133
const protocolRegex = /^https?:\/\//i
3234
host = protocolRegex.test(envHost) ? envHost : `https://${envHost}`
35+
} else if (envCIAPI) {
36+
// GitLab >= v11.7 supplies the API Endpoint in an environment variable and we can work out our host value from that.
37+
// See https://docs.gitlab.com/ce/ci/variables/predefined_variables.html
38+
const hostRegex = /^(https?):\/\/([^\/]+)\//i
39+
if (hostRegex.test(envCIAPI)) {
40+
const matches = hostRegex.exec(envCIAPI)!
41+
const matchProto = matches[1]
42+
const matchHost = matches[2]
43+
host = `${matchProto}://${matchHost}`
44+
}
3345
}
3446

3547
return {

source/platforms/gitlab/_tests/_gitlab_api.test.ts

+12
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ describe("GitLab API", () => {
3535
)
3636
})
3737

38+
it("configures host from CI_API_V4_URL", () => {
39+
api = new GitLabAPI(
40+
{ pullRequestID: "27117", repoSlug: "gitlab-org/gitlab-ce" },
41+
getGitLabAPICredentialsFromEnv({
42+
CI_API_V4_URL: "https://testciapiv4url.com/api/v4",
43+
DANGER_GITLAB_API_TOKEN: "FAKE_DANGER_GITLAB_API_TOKEN",
44+
})
45+
)
46+
47+
expect(api.projectURL).toBe("https://testciapiv4url.com/gitlab-org/gitlab-ce")
48+
})
49+
3850
it("projectURL is defined", () => {
3951
expect(api.projectURL).toBe("https://gitlab.com/gitlab-org/gitlab-ce")
4052
})

0 commit comments

Comments
 (0)