36 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bitbucketserver.go 5.13 KB
一键复制 编辑 原始数据 按行查看 历史
phli 提交于 2018-09-19 16:48 . add bitbucket support in pipeline
package drivers
import (
"crypto/hmac"
"crypto/sha256"
"encoding/hex"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strings"
"github.com/rancher/rancher/pkg/pipeline/remote/bitbucketserver"
"github.com/rancher/rancher/pkg/pipeline/remote/model"
"github.com/rancher/rancher/pkg/pipeline/utils"
"github.com/rancher/rancher/pkg/ref"
"github.com/rancher/types/apis/project.cattle.io/v3"
)
const (
BitbucketServerWebhookHeader = "X-Request-Id"
bitbucketServerEventHeader = "X-Event-Key"
bitbucketServerPushEvent = "repo:refs_changed"
bitbucketServerPrCreatedEvent = "pr:opened"
bitbucketServerPrUpdatedEvent = "pr:modified"
bitbucketServerStateOpen = "OPEN"
)
type BitbucketServerDriver struct {
PipelineLister v3.PipelineLister
PipelineExecutions v3.PipelineExecutionInterface
SourceCodeCredentials v3.SourceCodeCredentialInterface
SourceCodeCredentialLister v3.SourceCodeCredentialLister
}
func (b BitbucketServerDriver) Execute(req *http.Request) (int, error) {
var signature string
if signature = req.Header.Get(githubSignatureHeader); len(signature) == 0 {
return http.StatusUnprocessableEntity, errors.New("webhook missing signature")
}
event := req.Header.Get(bitbucketServerEventHeader)
if event != bitbucketServerPushEvent && event != bitbucketServerPrCreatedEvent && event != bitbucketServerPrUpdatedEvent {
return http.StatusUnprocessableEntity, fmt.Errorf("not trigger for event:%s", event)
}
pipelineID := req.URL.Query().Get("pipelineId")
ns, name := ref.Parse(pipelineID)
pipeline, err := b.PipelineLister.Get(ns, name)
if err != nil {
return http.StatusInternalServerError, err
}
body, err := ioutil.ReadAll(req.Body)
if err != nil {
return http.StatusUnprocessableEntity, err
}
if match := verifyBitbucketServerWebhookSignature([]byte(pipeline.Status.Token), signature, body); !match {
return http.StatusUnprocessableEntity, errors.New("invalid signature")
}
info := &model.BuildInfo{}
if event == bitbucketServerPushEvent {
info, err = parseBitbucketServerPushPayload(body)
if err != nil {
return http.StatusUnprocessableEntity, err
}
} else if event == bitbucketServerPrCreatedEvent || event == bitbucketServerPrUpdatedEvent {
info, err = parseBitbucketServerPullRequestPayload(body)
if err != nil {
return http.StatusUnprocessableEntity, err
}
}
return validateAndGeneratePipelineExecution(b.PipelineExecutions, b.SourceCodeCredentials, b.SourceCodeCredentialLister, info, pipeline)
}
func parseBitbucketServerPushPayload(raw []byte) (*model.BuildInfo, error) {
info := &model.BuildInfo{}
payload := bitbucketserver.PushEventPayload{}
if err := json.Unmarshal(raw, &payload); err != nil {
return nil, err
}
info.TriggerType = utils.TriggerTypeWebhook
if len(payload.Changes) > 0 {
change := payload.Changes[0]
info.Commit = change.ToHash
info.Ref = change.RefID
//info.Message = change.New.Target.Message
info.Author = payload.Actor.Name
if len(payload.Actor.Links.Self) > 0 {
info.AvatarURL = payload.Actor.Links.Self[0].Href + "/avatar.png"
}
if strings.HasPrefix(change.RefID, RefsTagPrefix) {
//git tag is triggered as a push event
info.Event = utils.WebhookEventTag
info.Branch = strings.TrimPrefix(change.RefID, RefsTagPrefix)
if change.Type != "ADD" {
return nil, fmt.Errorf("filter '%s' changes for tag event", change.Type)
}
} else {
info.Event = utils.WebhookEventPush
info.Branch = strings.TrimPrefix(change.RefID, RefsBranchPrefix)
if change.Type != "UPDATE" && change.Type != "ADD" {
return nil, fmt.Errorf("filter '%s' changes for push event", change.Type)
}
}
}
return info, nil
}
func parseBitbucketServerPullRequestPayload(raw []byte) (*model.BuildInfo, error) {
info := &model.BuildInfo{}
payload := bitbucketserver.PullRequestEventPayload{}
if err := json.Unmarshal(raw, &payload); err != nil {
return nil, err
}
if payload.PullRequest.State != bitbucketServerStateOpen {
return nil, fmt.Errorf("no trigger for closed pull requests")
}
info.TriggerType = utils.TriggerTypeWebhook
info.Event = utils.WebhookEventPullRequest
info.Branch = payload.PullRequest.ToRef.DisplayID
info.Ref = fmt.Sprintf("refs/pull-requests/%d/from", payload.PullRequest.ID)
if len(payload.PullRequest.Links.Self) > 0 {
info.HTMLLink = payload.PullRequest.Links.Self[0].Href
}
info.Title = payload.PullRequest.Title
info.Message = payload.PullRequest.Title
info.Commit = payload.PullRequest.FromRef.LatestCommit
info.Author = payload.PullRequest.Author.User.Name
if len(payload.PullRequest.Author.User.Links.Self) > 0 {
info.AvatarURL = payload.PullRequest.Author.User.Links.Self[0].Href + "/avatar.png"
}
return info, nil
}
func verifyBitbucketServerWebhookSignature(secret []byte, signature string, body []byte) bool {
const signaturePrefix = "sha256="
const signatureLength = 71 // len(SignaturePrefix) + len(hex(sha1))
if len(signature) != signatureLength || !strings.HasPrefix(signature, signaturePrefix) {
return false
}
actual := make([]byte, 32)
hex.Decode(actual, []byte(signature[7:]))
computed := hmac.New(sha256.New, secret)
computed.Write(body)
return hmac.Equal(computed.Sum(nil), actual)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.3.0-alpha1

搜索帮助

344bd9b3 5694891 D2dac590 5694891