Rainbond/pkg/builder/sources/repo.go
2018-03-27 16:16:03 +08:00

84 lines
2.4 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 (
"fmt"
"path"
"strings"
"gopkg.in/src-d/go-git.v4/plumbing/transport"
)
//RepostoryBuildInfo 源码编译信息
type RepostoryBuildInfo struct {
RepostoryURL string
BuildPath string
CodeHome string
ep *transport.Endpoint
}
//GetCodeHome 获取代码目录
func (r *RepostoryBuildInfo) GetCodeHome() string {
return r.CodeHome
}
//GetCodeBuildAbsPath 获取代码编译绝对目录
func (r *RepostoryBuildInfo) GetCodeBuildAbsPath() string {
return path.Join(r.CodeHome, r.BuildPath)
}
//GetCodeBuildPath 获取代码编译相对目录
func (r *RepostoryBuildInfo) GetCodeBuildPath() string {
return r.BuildPath
}
//GetProtocol 获取协议
func (r *RepostoryBuildInfo) GetProtocol() string {
if r.ep != nil {
if r.ep.Protocol == "" {
return "ssh"
}
return r.ep.Protocol
}
return ""
}
//CreateRepostoryBuildInfo 创建源码编译信息
func CreateRepostoryBuildInfo(repoURL, branch, tenantID string) (*RepostoryBuildInfo, error) {
// repoURL= github.com/goodrain/xxx.git?dir=home
ep, err := transport.NewEndpoint(repoURL)
if err != nil {
return nil, err
}
rbi := &RepostoryBuildInfo{
ep: ep,
RepostoryURL: repoURL,
}
index := strings.Index(repoURL, "?dir=")
if index > -1 && len(repoURL) > index+5 {
fmt.Println(repoURL[index+5:], repoURL[:index])
rbi.BuildPath = repoURL[index+5:]
rbi.CodeHome = GetCodeSourceDir(repoURL[:index], branch, tenantID)
rbi.RepostoryURL = repoURL[:index]
}
rbi.CodeHome = GetCodeSourceDir(repoURL, branch, tenantID)
return rbi, nil
}