Rainbond/builder/sources/git.go
Quyc f0b3d05731
fix: Code branch does not have a prompt (#1654)
* fix: Code branch does not have a prompt

* fix: error creating SSH PublicKeys

---------

Co-authored-by: 曲源成 <quyc@goodrain.com>
2023-05-25 20:15:46 +08:00

540 lines
17 KiB
Go

// Copyright (C) 2014-2018 Goodrain Co., Ltd.
// RAINBOND, Application Management Platform
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package sources
import (
"context"
"crypto/tls"
"fmt"
"github.com/tidwall/gjson"
"io/ioutil"
"net/http"
"net/url"
"os"
"path"
"strings"
"time"
"gopkg.in/src-d/go-git.v4/plumbing/object"
"github.com/sirupsen/logrus"
"crypto/rand"
"crypto/rsa"
"crypto/sha1"
"crypto/x509"
"encoding/pem"
"github.com/goodrain/rainbond/event"
"github.com/goodrain/rainbond/util"
netssh "golang.org/x/crypto/ssh"
sshkey "golang.org/x/crypto/ssh"
git "gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/transport"
"gopkg.in/src-d/go-git.v4/plumbing/transport/client"
githttp "gopkg.in/src-d/go-git.v4/plumbing/transport/http"
"gopkg.in/src-d/go-git.v4/plumbing/transport/ssh"
)
//CodeSourceInfo 代码源信息
type CodeSourceInfo struct {
ServerType string `json:"server_type"`
RepositoryURL string `json:"repository_url"`
Branch string `json:"branch"`
User string `json:"user"`
Password string `json:"password"`
Configs map[string]gjson.Result `json:"configs"`
//避免项目之间冲突,代码缓存目录提高到租户
TenantID string `json:"tenant_id"`
ServiceID string `json:"service_id"`
}
//GetCodeSourceDir get source storage directory
func (c CodeSourceInfo) GetCodeSourceDir() string {
return GetCodeSourceDir(c.RepositoryURL, c.Branch, c.TenantID, c.ServiceID)
}
//GetCodeSourceDir get source storage directory
// it changes as gitrepostory address, branch, and service id change
func GetCodeSourceDir(RepositoryURL, branch, tenantID string, ServiceID string) string {
sourceDir := os.Getenv("SOURCE_DIR")
if sourceDir == "" {
sourceDir = "/grdata/source"
}
h := sha1.New()
h.Write([]byte(RepositoryURL + branch + ServiceID))
bs := h.Sum(nil)
bsStr := fmt.Sprintf("%x", bs)
return path.Join(sourceDir, "build", tenantID, bsStr)
}
//CheckFileExist CheckFileExist
func CheckFileExist(path string) bool {
_, err := os.Stat(path)
if err != nil {
if os.IsExist(err) {
return true
}
return false
}
return true
}
//RemoveDir RemoveDir
func RemoveDir(path string) error {
if path == "/" {
return fmt.Errorf("remove wrong dir")
}
return os.RemoveAll(path)
}
func getShowURL(rurl string) string {
urlpath, _ := url.Parse(rurl)
if urlpath != nil {
showURL := fmt.Sprintf("%s://%s%s", urlpath.Scheme, urlpath.Host, urlpath.Path)
return showURL
}
return ""
}
//GitClone git clone code
func GitClone(csi CodeSourceInfo, sourceDir string, logger event.Logger, timeout int) (*git.Repository, string, error) {
GetPrivateFileParam := csi.TenantID
if !strings.HasSuffix(csi.RepositoryURL, ".git") {
csi.RepositoryURL = csi.RepositoryURL + ".git"
}
flag := true
Loop:
if logger != nil {
//Hide possible account key information
logger.Info(fmt.Sprintf("Start clone source code from %s", getShowURL(csi.RepositoryURL)), map[string]string{"step": "clone_code"})
}
ep, err := transport.NewEndpoint(csi.RepositoryURL)
if err != nil {
return nil, "", err
}
if timeout < 1 {
timeout = 1
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute*time.Duration(timeout))
defer cancel()
writer := logger.GetWriter("progress", "debug")
writer.SetFormat(map[string]interface{}{"progress": "%s", "id": "Clone:"})
opts := &git.CloneOptions{
URL: csi.RepositoryURL,
Progress: writer,
SingleBranch: true,
Tags: git.NoTags,
RecurseSubmodules: git.DefaultSubmoduleRecursionDepth,
Depth: 1,
}
if csi.Branch != "" {
opts.ReferenceName = getBranch(csi.Branch)
}
var rs *git.Repository
if ep.Protocol == "ssh" {
publichFile := GetPrivateFile(GetPrivateFileParam)
sshAuth, auerr := ssh.NewPublicKeysFromFile("git", publichFile, "")
if auerr != nil {
errMsg := fmt.Sprintf("创建SSH PublicKeys错误")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return nil, errMsg, auerr
}
sshAuth.HostKeyCallbackHelper.HostKeyCallback = netssh.InsecureIgnoreHostKey()
opts.Auth = sshAuth
rs, err = git.PlainCloneContext(ctx, sourceDir, false, opts)
} else {
// only proxy github
// but when setting, other request will be proxyed
customClient := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
Timeout: time.Minute * time.Duration(timeout),
}
if strings.Contains(csi.RepositoryURL, "github.com") && os.Getenv("GITHUB_PROXY") != "" {
proxyURL, err := url.Parse(os.Getenv("GITHUB_PROXY"))
if err == nil {
customClient.Transport = &http.Transport{Proxy: http.ProxyURL(proxyURL), TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}
} else {
logrus.Error(err)
}
}
if csi.User != "" && csi.Password != "" {
httpAuth := &githttp.BasicAuth{
Username: csi.User,
Password: csi.Password,
}
opts.Auth = httpAuth
}
client.InstallProtocol("https", githttp.NewClient(customClient))
defer func() {
client.InstallProtocol("https", githttp.DefaultClient)
}()
rs, err = git.PlainCloneContext(ctx, sourceDir, false, opts)
}
if err != nil {
if reerr := os.RemoveAll(sourceDir); reerr != nil {
errMsg := fmt.Sprintf("拉取代码发生错误删除代码目录失败。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
}
if err == transport.ErrAuthenticationRequired {
errMsg := fmt.Sprintf("拉取代码发生错误,代码源需要授权访问。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrAuthorizationFailed {
errMsg := fmt.Sprintf("拉取代码发生错误,代码源鉴权失败。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrRepositoryNotFound {
errMsg := fmt.Sprintf("拉取代码发生错误,仓库不存在。")
if logger != nil {
logger.Error(fmt.Sprintf("拉取代码发生错误,仓库不存在。"), map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrEmptyRemoteRepository {
errMsg := fmt.Sprintf("拉取代码发生错误,远程仓库为空。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == plumbing.ErrReferenceNotFound || strings.Contains(err.Error(), "couldn't find remote ref") {
errMsg := fmt.Sprintf("代码分支(%s)不存在。", csi.Branch)
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, fmt.Errorf("branch %s is not exist", csi.Branch)
}
if strings.Contains(err.Error(), "ssh: unable to authenticate") {
if flag {
GetPrivateFileParam = "builder_rsa"
flag = false
goto Loop
}
errMsg := fmt.Sprintf("远程代码库需要配置SSH Key。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
if strings.Contains(err.Error(), "context deadline exceeded") {
errMsg := fmt.Sprintf("获取代码超时")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "clone-code", "status": "failure"})
}
return rs, errMsg, err
}
}
return rs, "", err
}
func retryAuth(ep *transport.Endpoint, csi CodeSourceInfo) (transport.AuthMethod, error) {
switch ep.Protocol {
case "ssh":
home, _ := Home()
sshAuth, err := ssh.NewPublicKeysFromFile("git", path.Join(home, "/.ssh/id_rsa"), "")
if err != nil {
return nil, err
}
return sshAuth, nil
case "http", "https":
//return http.NewBasicAuth(csi.User, csi.Password), nil
}
return nil, nil
}
//GitPull git pull code
func GitPull(csi CodeSourceInfo, sourceDir string, logger event.Logger, timeout int) (*git.Repository, string, error) {
GetPrivateFileParam := csi.TenantID
flag := true
Loop:
if logger != nil {
logger.Info(fmt.Sprintf("Start pull source code from %s", csi.RepositoryURL), map[string]string{"step": "clone_code"})
}
if timeout < 1 {
timeout = 1
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute*time.Duration(timeout))
defer cancel()
writer := logger.GetWriter("progress", "debug")
writer.SetFormat(map[string]interface{}{"progress": "%s", "id": "Pull:"})
opts := &git.PullOptions{
Progress: writer,
SingleBranch: true,
Depth: 1,
}
if csi.Branch != "" {
opts.ReferenceName = getBranch(csi.Branch)
}
ep, err := transport.NewEndpoint(csi.RepositoryURL)
if err != nil {
return nil, "", err
}
if ep.Protocol == "ssh" {
publichFile := GetPrivateFile(GetPrivateFileParam)
sshAuth, auerr := ssh.NewPublicKeysFromFile("git", publichFile, "")
if auerr != nil {
errMsg := fmt.Sprintf("创建SSH PublicKeys错误")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return nil, errMsg, auerr
}
sshAuth.HostKeyCallbackHelper.HostKeyCallback = netssh.InsecureIgnoreHostKey()
opts.Auth = sshAuth
} else {
// only proxy github
// but when setting, other request will be proxyed
if strings.Contains(csi.RepositoryURL, "github.com") && os.Getenv("GITHUB_PROXY") != "" {
proxyURL, _ := url.Parse(os.Getenv("GITHUB_PROXY"))
customClient := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)}}
customClient.Timeout = time.Minute * time.Duration(timeout)
client.InstallProtocol("https", githttp.NewClient(customClient))
defer func() {
client.InstallProtocol("https", githttp.DefaultClient)
}()
}
if csi.User != "" && csi.Password != "" {
httpAuth := &githttp.BasicAuth{
Username: csi.User,
Password: csi.Password,
}
opts.Auth = httpAuth
}
}
rs, err := git.PlainOpen(sourceDir)
if err != nil {
return nil, "", err
}
tree, err := rs.Worktree()
if err != nil {
return nil, "", err
}
err = tree.PullContext(ctx, opts)
if err != nil {
if err == transport.ErrAuthenticationRequired {
errMsg := fmt.Sprintf("更新代码发生错误,代码源需要授权访问。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrAuthorizationFailed {
errMsg := fmt.Sprintf("更新代码发生错误,代码源鉴权失败。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrRepositoryNotFound {
errMsg := fmt.Sprintf("更新代码发生错误,仓库不存在。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == transport.ErrEmptyRemoteRepository {
errMsg := fmt.Sprintf("更新代码发生错误,远程仓库为空。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == plumbing.ErrReferenceNotFound {
errMsg := fmt.Sprintf("代码分支(%s)不存在。", csi.Branch)
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, fmt.Errorf("branch %s is not exist", csi.Branch)
}
if strings.Contains(err.Error(), "ssh: unable to authenticate") {
if flag {
GetPrivateFileParam = "builder_rsa"
flag = false
goto Loop
}
errMsg := fmt.Sprintf("远程代码库需要配置SSH Key。")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if strings.Contains(err.Error(), "context deadline exceeded") {
errMsg := fmt.Sprintf("更新代码超时")
if logger != nil {
logger.Error(errMsg, map[string]string{"step": "pull-code", "status": "failure"})
}
return rs, errMsg, err
}
if err == git.NoErrAlreadyUpToDate {
return rs, "", nil
}
}
return rs, "", err
}
//GitCloneOrPull if code exist in local,use git pull.
func GitCloneOrPull(csi CodeSourceInfo, sourceDir string, logger event.Logger, timeout int) (*git.Repository, string, error) {
if ok, err := util.FileExists(path.Join(sourceDir, ".git")); err == nil && ok && !strings.HasPrefix(csi.Branch, "tag:") {
re, msg, err := GitPull(csi, sourceDir, logger, timeout)
if err == nil && re != nil {
return re, msg, nil
}
logrus.Error("git pull source code error,", err.Error())
}
// empty the sourceDir
if reerr := os.RemoveAll(sourceDir); reerr != nil {
logrus.Error("empty the source code dir error,", reerr.Error())
if logger != nil {
logger.Error(fmt.Sprintf("清空代码目录失败。"), map[string]string{"step": "clone-code", "status": "failure"})
}
}
return GitClone(csi, sourceDir, logger, timeout)
}
//GitCheckout checkout the specified branch
func GitCheckout(sourceDir, branch string) error {
// option := git.CheckoutOptions{
// Branch: getBranch(branch),
// }
return nil
}
func getBranch(branch string) plumbing.ReferenceName {
if strings.HasPrefix(branch, "tag:") {
return plumbing.ReferenceName(fmt.Sprintf("refs/tags/%s", branch[4:]))
}
return plumbing.ReferenceName(fmt.Sprintf("refs/heads/%s", branch))
}
//GetLastCommit get last commit info
//get commit by head reference
func GetLastCommit(re *git.Repository) (*object.Commit, error) {
ref, err := re.Head()
if err != nil {
return nil, err
}
return re.CommitObject(ref.Hash())
}
//GetPrivateFile 获取私钥文件地址
func GetPrivateFile(tenantID string) string {
home, _ := Home()
if home == "" {
home = "/root"
}
if ok, _ := util.FileExists(path.Join(home, "/.ssh/"+tenantID)); ok {
return path.Join(home, "/.ssh/"+tenantID)
}
if ok, _ := util.FileExists(path.Join(home, "/.ssh/builder_rsa")); ok {
return path.Join(home, "/.ssh/builder_rsa")
}
return path.Join(home, "/.ssh/id_rsa")
}
//GetPublicKey 获取公钥
func GetPublicKey(tenantID string) string {
home, _ := Home()
if home == "" {
home = "/root"
}
PublicKey := tenantID + ".pub"
PrivateKey := tenantID
if ok, _ := util.FileExists(path.Join(home, "/.ssh/"+PublicKey)); ok {
body, _ := ioutil.ReadFile(path.Join(home, "/.ssh/"+PublicKey))
return string(body)
}
Private, Public, err := MakeSSHKeyPair()
if err != nil {
logrus.Error("MakeSSHKeyPairError:", err)
}
PrivateKeyFile, err := os.Create(path.Join(home, "/.ssh/"+PrivateKey))
if err != nil {
fmt.Println(err)
} else {
PrivateKeyFile.WriteString(Private)
}
PublicKeyFile, err2 := os.Create(path.Join(home, "/.ssh/"+PublicKey))
if err2 != nil {
fmt.Println(err)
} else {
PublicKeyFile.WriteString(Public)
}
body, _ := ioutil.ReadFile(path.Join(home, "/.ssh/"+PublicKey))
return string(body)
}
//GenerateKey GenerateKey
func GenerateKey(bits int) (*rsa.PrivateKey, *rsa.PublicKey, error) {
private, err := rsa.GenerateKey(rand.Reader, bits)
if err != nil {
return nil, nil, err
}
return private, &private.PublicKey, nil
}
//EncodePrivateKey EncodePrivateKey
func EncodePrivateKey(private *rsa.PrivateKey) []byte {
return pem.EncodeToMemory(&pem.Block{
Bytes: x509.MarshalPKCS1PrivateKey(private),
Type: "RSA PRIVATE KEY",
})
}
//EncodeSSHKey EncodeSSHKey
func EncodeSSHKey(public *rsa.PublicKey) ([]byte, error) {
publicKey, err := sshkey.NewPublicKey(public)
if err != nil {
return nil, err
}
return sshkey.MarshalAuthorizedKey(publicKey), nil
}
//MakeSSHKeyPair make ssh key
func MakeSSHKeyPair() (string, string, error) {
pkey, pubkey, err := GenerateKey(2048)
if err != nil {
return "", "", err
}
pub, err := EncodeSSHKey(pubkey)
if err != nil {
return "", "", err
}
return string(EncodePrivateKey(pkey)), string(pub), nil
}