aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/submodule.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-04-22 11:34:50 +0100
committerGitHub <noreply@github.com>2020-04-22 11:34:50 +0100
commit4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61 (patch)
treea6557ad5bf0701e5bb8659d983d58fb059ab0e3b /modules/git/submodule.go
parent7e20f1cb5b3ef494676f3629e4980c8cdd64525b (diff)
downloadgitea-4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61.tar.gz
gitea-4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61.zip
Fix submodule paths when AppSubUrl is not root (#11098)
Fix submodule paths when AppSubUrl is not root Fix #11002 Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/git/submodule.go')
-rw-r--r--modules/git/submodule.go27
1 files changed, 12 insertions, 15 deletions
diff --git a/modules/git/submodule.go b/modules/git/submodule.go
index 6fc2e2444f..2527eac810 100644
--- a/modules/git/submodule.go
+++ b/modules/git/submodule.go
@@ -9,6 +9,7 @@ import (
"fmt"
"net"
"net/url"
+ "path"
"regexp"
"strings"
)
@@ -38,7 +39,7 @@ func NewSubModuleFile(c *Commit, refURL, refID string) *SubModuleFile {
}
}
-func getRefURL(refURL, urlPrefix, parentPath string) string {
+func getRefURL(refURL, urlPrefix, repoFullName string) string {
if refURL == "" {
return ""
}
@@ -51,14 +52,10 @@ func getRefURL(refURL, urlPrefix, parentPath string) string {
urlPrefixHostname = prefixURL.Host
}
+ // FIXME: Need to consider branch - which will require changes in modules/git/commit.go:GetSubModules
// Relative url prefix check (according to git submodule documentation)
if strings.HasPrefix(refURI, "./") || strings.HasPrefix(refURI, "../") {
- // ...construct and return correct submodule url here...
- idx := strings.Index(parentPath, "/src/")
- if idx == -1 {
- return refURI
- }
- return strings.TrimSuffix(urlPrefix, "/") + parentPath[:idx] + "/" + refURI
+ return urlPrefix + path.Clean(path.Join(repoFullName, refURI))
}
if !strings.Contains(refURI, "://") {
@@ -69,16 +66,16 @@ func getRefURL(refURL, urlPrefix, parentPath string) string {
m := match[0]
refHostname := m[2]
- path := m[3]
+ pth := m[3]
- if !strings.HasPrefix(path, "/") {
- path = "/" + path
+ if !strings.HasPrefix(pth, "/") {
+ pth = "/" + pth
}
if urlPrefixHostname == refHostname {
- return prefixURL.Scheme + "://" + urlPrefixHostname + path
+ return prefixURL.Scheme + "://" + urlPrefixHostname + path.Join(prefixURL.Path, path.Clean(pth))
}
- return "http://" + refHostname + path
+ return "http://" + refHostname + pth
}
}
@@ -97,7 +94,7 @@ func getRefURL(refURL, urlPrefix, parentPath string) string {
for _, scheme := range supportedSchemes {
if ref.Scheme == scheme {
if urlPrefixHostname == refHostname {
- return prefixURL.Scheme + "://" + prefixURL.Host + ref.Path
+ return prefixURL.Scheme + "://" + prefixURL.Host + path.Join(prefixURL.Path, ref.Path)
} else if ref.Scheme == "http" || ref.Scheme == "https" {
if len(ref.User.Username()) > 0 {
return ref.Scheme + "://" + fmt.Sprintf("%v", ref.User) + "@" + ref.Host + ref.Path
@@ -113,8 +110,8 @@ func getRefURL(refURL, urlPrefix, parentPath string) string {
}
// RefURL guesses and returns reference URL.
-func (sf *SubModuleFile) RefURL(urlPrefix string, parentPath string) string {
- return getRefURL(sf.refURL, urlPrefix, parentPath)
+func (sf *SubModuleFile) RefURL(urlPrefix string, repoFullName string) string {
+ return getRefURL(sf.refURL, urlPrefix, repoFullName)
}
// RefID returns reference ID.