2021-06-14 19:20:43 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
2021-11-30 21:06:32 +01:00
|
|
|
import (
|
|
|
|
"context"
|
2022-06-11 15:50:14 +02:00
|
|
|
|
|
|
|
giturl "code.gitea.io/gitea/modules/git/url"
|
2021-11-30 21:06:32 +01:00
|
|
|
)
|
2021-06-14 19:20:43 +02:00
|
|
|
|
2022-06-11 15:50:14 +02:00
|
|
|
// GetRemoteAddress returns remote url of git repository in the repoPath with special remote name
|
|
|
|
func GetRemoteAddress(ctx context.Context, repoPath, remoteName string) (string, error) {
|
2021-06-14 19:20:43 +02:00
|
|
|
var cmd *Command
|
|
|
|
if CheckGitVersionAtLeast("2.7") == nil {
|
2022-02-06 20:01:47 +01:00
|
|
|
cmd = NewCommand(ctx, "remote", "get-url", remoteName)
|
2021-06-14 19:20:43 +02:00
|
|
|
} else {
|
2022-02-06 20:01:47 +01:00
|
|
|
cmd = NewCommand(ctx, "config", "--get", "remote."+remoteName+".url")
|
2021-06-14 19:20:43 +02:00
|
|
|
}
|
|
|
|
|
2022-04-01 04:55:30 +02:00
|
|
|
result, _, err := cmd.RunStdString(&RunOpts{Dir: repoPath})
|
2021-06-14 19:20:43 +02:00
|
|
|
if err != nil {
|
2022-06-11 15:50:14 +02:00
|
|
|
return "", err
|
2021-06-14 19:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) > 0 {
|
|
|
|
result = result[:len(result)-1]
|
|
|
|
}
|
2022-06-11 15:50:14 +02:00
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRemoteURL returns the url of a specific remote of the repository.
|
|
|
|
func GetRemoteURL(ctx context.Context, repoPath, remoteName string) (*giturl.GitURL, error) {
|
|
|
|
addr, err := GetRemoteAddress(ctx, repoPath, remoteName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return giturl.Parse(addr)
|
2021-06-14 19:20:43 +02:00
|
|
|
}
|