2021-06-14 17:20:43 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-14 17:20:43 +00:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
2021-11-30 20:06:32 +00:00
|
|
|
import (
|
|
|
|
"context"
|
2022-06-11 13:50:14 +00:00
|
|
|
|
|
|
|
giturl "code.gitea.io/gitea/modules/git/url"
|
2021-11-30 20:06:32 +00:00
|
|
|
)
|
2021-06-14 17:20:43 +00:00
|
|
|
|
2022-06-11 13:50:14 +00: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 17:20:43 +00:00
|
|
|
var cmd *Command
|
|
|
|
if CheckGitVersionAtLeast("2.7") == nil {
|
2022-10-23 14:44:45 +00:00
|
|
|
cmd = NewCommand(ctx, "remote", "get-url").AddDynamicArguments(remoteName)
|
2021-06-14 17:20:43 +00:00
|
|
|
} else {
|
2022-10-23 14:44:45 +00:00
|
|
|
cmd = NewCommand(ctx, "config", "--get").AddDynamicArguments("remote." + remoteName + ".url")
|
2021-06-14 17:20:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-01 02:55:30 +00:00
|
|
|
result, _, err := cmd.RunStdString(&RunOpts{Dir: repoPath})
|
2021-06-14 17:20:43 +00:00
|
|
|
if err != nil {
|
2022-06-11 13:50:14 +00:00
|
|
|
return "", err
|
2021-06-14 17:20:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) > 0 {
|
|
|
|
result = result[:len(result)-1]
|
|
|
|
}
|
2022-06-11 13:50:14 +00: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 17:20:43 +00:00
|
|
|
}
|