2017-02-23 06:12:16 +01:00
|
|
|
package db
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2022-01-27 13:44:35 +01:00
|
|
|
import (
|
|
|
|
"github.com/ansible-semaphore/semaphore/util"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2022-01-27 15:16:58 +01:00
|
|
|
type RepositorySchema string
|
|
|
|
|
2022-01-27 13:44:35 +01:00
|
|
|
const (
|
2022-01-27 15:16:58 +01:00
|
|
|
RepositoryGit RepositorySchema = "git"
|
|
|
|
RepositorySSH RepositorySchema = "ssh"
|
|
|
|
RepositoryHTTPS RepositorySchema = "https"
|
|
|
|
RepositoryFile RepositorySchema = "file"
|
2022-01-27 13:44:35 +01:00
|
|
|
)
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// Repository is the model for code stored in a git repository
|
2016-04-04 15:44:34 +02:00
|
|
|
type Repository struct {
|
|
|
|
ID int `db:"id" json:"id"`
|
2016-04-11 12:02:10 +02:00
|
|
|
Name string `db:"name" json:"name" binding:"required"`
|
2016-04-04 15:44:34 +02:00
|
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
2018-03-27 22:12:47 +02:00
|
|
|
GitURL string `db:"git_url" json:"git_url" binding:"required"`
|
2022-01-20 15:53:48 +01:00
|
|
|
GitBranch string `db:"git_branch" json:"git_branch" binding:"required"`
|
2018-03-27 22:12:47 +02:00
|
|
|
SSHKeyID int `db:"ssh_key_id" json:"ssh_key_id" binding:"required"`
|
2016-06-17 22:16:46 +02:00
|
|
|
Removed bool `db:"removed" json:"removed"`
|
2016-04-07 14:49:34 +02:00
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
SSHKey AccessKey `db:"-" json:"-"`
|
2016-04-07 14:49:34 +02:00
|
|
|
}
|
2022-01-22 09:16:23 +01:00
|
|
|
|
2022-01-27 13:44:35 +01:00
|
|
|
func (r Repository) ClearCache() error {
|
|
|
|
dir, err := os.Open(util.Config.TmpPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
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) GetPath(templateID int) string {
|
|
|
|
return path.Join(util.Config.TmpPath, r.GetDirName(templateID))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r Repository) GetGitURL() string {
|
|
|
|
url := r.GitURL
|
2022-01-27 15:16:58 +01:00
|
|
|
|
|
|
|
if r.getSchema() == RepositoryHTTPS {
|
|
|
|
auth := ""
|
|
|
|
switch r.SSHKey.Type {
|
|
|
|
case AccessKeyLoginPassword:
|
|
|
|
auth = r.SSHKey.LoginPassword.Login + ":" + r.SSHKey.LoginPassword.Password
|
|
|
|
case AccessKeyPAT:
|
|
|
|
auth = r.SSHKey.PAT
|
|
|
|
}
|
|
|
|
if auth != "" {
|
|
|
|
auth += "@"
|
|
|
|
}
|
|
|
|
url = "https://" + auth + r.GitURL[8:]
|
2022-01-27 13:44:35 +01:00
|
|
|
}
|
2022-01-27 15:16:58 +01:00
|
|
|
|
2022-01-27 13:44:35 +01:00
|
|
|
return url
|
|
|
|
}
|
|
|
|
|
2022-01-27 15:16:58 +01:00
|
|
|
func (r Repository) getSchema() RepositorySchema {
|
2022-01-27 13:44:35 +01:00
|
|
|
re := regexp.MustCompile(`^(\w+)://`)
|
|
|
|
m := re.FindStringSubmatch(r.GitURL)
|
|
|
|
if m == nil {
|
|
|
|
return RepositoryFile
|
|
|
|
}
|
2022-01-27 15:16:58 +01:00
|
|
|
return RepositorySchema(m[1])
|
2022-01-27 13:44:35 +01:00
|
|
|
}
|
|
|
|
|
2022-01-22 09:16:23 +01:00
|
|
|
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.GitBranch == "" {
|
|
|
|
return &ValidationError{"repository branch can't be empty"}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|