mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-21 08:51:05 +01:00
147 lines
3.0 KiB
Go
147 lines
3.0 KiB
Go
package db
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/semaphoreui/semaphore/util"
|
|
)
|
|
|
|
type RepositoryType string
|
|
|
|
const (
|
|
RepositoryGit RepositoryType = "git"
|
|
RepositorySSH RepositoryType = "ssh"
|
|
RepositoryHTTP RepositoryType = "https"
|
|
RepositoryFile RepositoryType = "file"
|
|
RepositoryLocal RepositoryType = "local"
|
|
)
|
|
|
|
// Repository is the model for code stored in a git repository
|
|
type Repository struct {
|
|
ID int `db:"id" json:"id" backup:"-"`
|
|
Name string `db:"name" json:"name" binding:"required"`
|
|
ProjectID int `db:"project_id" json:"project_id" backup:"-"`
|
|
GitURL string `db:"git_url" json:"git_url" binding:"required"`
|
|
GitBranch string `db:"git_branch" json:"git_branch" binding:"required"`
|
|
SSHKeyID int `db:"ssh_key_id" json:"ssh_key_id" binding:"required" backup:"-"`
|
|
|
|
SSHKey AccessKey `db:"-" json:"-" backup:"-"`
|
|
}
|
|
|
|
func (r Repository) ClearCache() error {
|
|
dir, err := os.Open(util.Config.TmpPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer dir.Close()
|
|
|
|
files, err := dir.ReadDir(0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, f := range files {
|
|
if !f.IsDir() {
|
|
continue
|
|
}
|
|
if strings.HasPrefix(f.Name(), r.getDirNamePrefix()) {
|
|
err = os.RemoveAll(path.Join(util.Config.TmpPath, f.Name()))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r Repository) getDirNamePrefix() string {
|
|
return "repository_" + strconv.Itoa(r.ID) + "_"
|
|
}
|
|
|
|
func (r Repository) GetDirName(templateID int) string {
|
|
return r.getDirNamePrefix() + strconv.Itoa(templateID)
|
|
}
|
|
|
|
func (r Repository) GetFullPath(templateID int) string {
|
|
if r.GetType() == RepositoryLocal {
|
|
return r.GetGitURL()
|
|
}
|
|
return path.Join(util.Config.TmpPath, r.GetDirName(templateID))
|
|
}
|
|
|
|
func (r Repository) GetGitURL() string {
|
|
url := r.GitURL
|
|
|
|
if r.GetType() == RepositoryHTTP {
|
|
auth := ""
|
|
switch r.SSHKey.Type {
|
|
case AccessKeyLoginPassword:
|
|
if r.SSHKey.LoginPassword.Login == "" {
|
|
auth = r.SSHKey.LoginPassword.Password
|
|
} else {
|
|
auth = r.SSHKey.LoginPassword.Login + ":" + r.SSHKey.LoginPassword.Password
|
|
}
|
|
}
|
|
if auth != "" {
|
|
auth += "@"
|
|
}
|
|
|
|
re := regexp.MustCompile(`^(https?)://`)
|
|
m := re.FindStringSubmatch(url)
|
|
var protocol string
|
|
|
|
if m == nil {
|
|
panic(fmt.Errorf("invalid git url: %s", url))
|
|
}
|
|
|
|
protocol = m[1]
|
|
|
|
url = protocol + "://" + auth + r.GitURL[len(protocol)+3:]
|
|
}
|
|
|
|
return url
|
|
}
|
|
|
|
func (r Repository) GetType() RepositoryType {
|
|
if strings.HasPrefix(r.GitURL, "/") {
|
|
return RepositoryLocal
|
|
}
|
|
|
|
re := regexp.MustCompile(`^(\w+)://`)
|
|
m := re.FindStringSubmatch(r.GitURL)
|
|
if m == nil {
|
|
return RepositorySSH
|
|
}
|
|
|
|
protocol := m[1]
|
|
|
|
switch protocol {
|
|
case "http", "https":
|
|
return RepositoryHTTP
|
|
default:
|
|
return RepositoryType(protocol)
|
|
}
|
|
}
|
|
|
|
func (r Repository) Validate() error {
|
|
if r.Name == "" {
|
|
return &ValidationError{"repository name can't be empty"}
|
|
}
|
|
|
|
if r.GitURL == "" {
|
|
return &ValidationError{"repository url can't be empty"}
|
|
}
|
|
|
|
if r.GetType() != RepositoryLocal && r.GitBranch == "" {
|
|
return &ValidationError{"repository branch can't be empty"}
|
|
}
|
|
|
|
return nil
|
|
}
|