Skip to content
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

Merged
merged 5 commits into from
Jun 17, 2020

Conversation

LenaHoinkis
Copy link
Contributor

@LenaHoinkis LenaHoinkis commented Jun 16, 2020

Add options to specify own github enterprise server.

fixes #42


This change is Reviewable

@coveralls
Copy link

coveralls commented Jun 16, 2020

Pull Request Test Coverage Report for Build 136

  • 27 of 27 (100.0%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 100.0%

Totals Coverage Status
Change from base Build 129: 0.0%
Covered Lines: 403
Relevant Lines: 403

💛 - Coveralls

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a 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.

@LenaHoinkis
Copy link
Contributor Author

@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

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a 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
}

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewable status: :shipit: complete! 1 of 1 LGTMs obtained

@stephen-soltesz stephen-soltesz merged commit 9b19ca4 into m-lab:master Jun 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for GitHub Enterprise instances
3 participants