-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Github Checks (#110)
Currently only Github status checks are supported. This change adds support for the newer Github Checks API. I replaced the CheckSuite handler with a CheckRun one. CheckSuiteEvents are only sent once per ref, whereas a CheckRun can change after a ref is created. This change requires updated permissions to allow us to lookup Checks for specific refs and to listen to CheckRunEvents.
- Loading branch information
Showing
4 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Copyright 2018 Palantir Technologies, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package handler | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
|
||
"github.com/google/go-github/github" | ||
"github.com/palantir/go-githubapp/githubapp" | ||
"github.com/pkg/errors" | ||
|
||
"github.com/palantir/bulldozer/pull" | ||
) | ||
|
||
type CheckRun struct { | ||
Base | ||
} | ||
|
||
func (h *CheckRun) Handles() []string { | ||
return []string{"check_run"} | ||
} | ||
|
||
func (h *CheckRun) Handle(ctx context.Context, eventType, deliveryID string, payload []byte) error { | ||
var event github.CheckRunEvent | ||
|
||
if err := json.Unmarshal(payload, &event); err != nil { | ||
return errors.Wrap(err, "failed to parse check_run event payload") | ||
} | ||
|
||
repo := event.GetRepo() | ||
installationID := githubapp.GetInstallationIDFromEvent(&event) | ||
|
||
ctx, logger := githubapp.PrepareRepoContext(ctx, installationID, repo) | ||
|
||
if event.GetAction() != "completed" { | ||
logger.Debug().Msgf("Doing nothing since check_run action was %q instead of 'completed'", event.GetAction()) | ||
return nil | ||
} | ||
|
||
client, err := h.ClientCreator.NewInstallationClient(installationID) | ||
if err != nil { | ||
return errors.Wrap(err, "failed to instantiate github client") | ||
} | ||
|
||
prs := event.GetCheckRun().PullRequests | ||
if len(prs) == 0 { | ||
logger.Debug().Msg("Doing nothing since status change event affects no open pull requests") | ||
return nil | ||
} | ||
|
||
for _, pr := range prs { | ||
// The PR included in the CheckRun response is very slim on information. | ||
// It does not contain the owner information or label information we | ||
// need to process the pull request. | ||
|
||
fullPR, _, err := client.PullRequests.Get(ctx, repo.GetOwner().GetLogin(), repo.GetName(), pr.GetNumber()) | ||
if err != nil { | ||
return errors.Wrapf(err, "failed to fetch PR number %q for CheckRun", pr.GetNumber()) | ||
} | ||
pullCtx := pull.NewGithubContext(client, fullPR) | ||
|
||
logger := logger.With().Int(githubapp.LogKeyPRNum, pr.GetNumber()).Logger() | ||
if err := h.ProcessPullRequest(logger.WithContext(ctx), pullCtx, client, pr); err != nil { | ||
logger.Error().Err(errors.WithStack(err)).Msg("Error processing pull request") | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// type assertion | ||
var _ githubapp.EventHandler = &CheckRun{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters