-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support github enterprise #43
Conversation
Pull Request Test Coverage Report for Build 136
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@LenaHoinkis Thank you for this PR -- the main idea to support "EnterpriseClient" is welcome. Thank you for preserving the unit test coverage!
I've added a few suggestions for how organize the feature in a way that I think will make the change easier for us to maintain going forward.
Reviewable status: 0 of 1 LGTMs obtained
cmd/github_receiver/main.go, line 45 at r2 (raw file):
githubOrg = flag.String("org", "", "The github user or organization name where all repos are found.") githubRepo = flag.String("repo", "", "The default repository for creating issues when alerts do not include a repo label.") githubBaseURL = flag.String("baseURL", "", "The URL of your GitHub Enterprise with API suffix (for example '/api/v3/').")
Please name these flags like:
enterprise.base-url
enterprise.upload-url
issues/issues.go, line 105 at r2 (raw file):
uploadURL = baseURL } githubClient, err = github.NewEnterpriseClient(baseURL, uploadURL, oauth2.NewClient(ctx, tokenSource))
Hmm, it looks like the EnterpriseClient
behaves very differently from the default client (it enforces certain api version paths).
In that case, I would rather see two functions, NewClient
(as before), and NewEnterpriseClient
. Then main can select which to call based on the given flags. There is already some client-type selection logic in main, this would be a third choice.
@stephen-soltesz Thank you for your fast reply and suggestions. I did the required changes. Due we want to use the new feature in our project it would be nice to have a new tagged github and docker release (v0.9) including the changes. Best regards |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@LenaHoinkis Great. One more small formatting, and I'll merge the change, and tag a new release.
Reviewable status: 0 of 1 LGTMs obtained
cmd/github_receiver/main.go, line 129 at r3 (raw file):
if *enableInMemory { client = local.NewClient() } else {
Please structure at the same level, like:
if ... {
// first condition
} else if {
// second condition
} else {
// third condition
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status:
complete! 1 of 1 LGTMs obtained
Add options to specify own github enterprise server.
fixes #42
This change is