summaryrefslogtreecommitdiffstats
path: root/modules/context/repo.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2019-05-27 22:08:38 +0100
committerGitHub <noreply@github.com>2019-05-27 22:08:38 +0100
commit69d81b656978a03ff277a611f5c3d9ef1814d001 (patch)
tree57e6bbaa990551b646dfbd3c7d965450d5754f54 /modules/context/repo.go
parent9ca7fcddbb4c9aba7a3f8e84f6c63b7504837bee (diff)
downloadgitea-69d81b656978a03ff277a611f5c3d9ef1814d001.tar.gz
gitea-69d81b656978a03ff277a611f5c3d9ef1814d001.zip
Handle insecure and ports in go get (#7041)
* Handle insecure and ports in go get * Fix IsExternalURL for non-standard ports
Diffstat (limited to 'modules/context/repo.go')
-rw-r--r--modules/context/repo.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go
index f9ed9327ff..0908340879 100644
--- a/modules/context/repo.go
+++ b/modules/context/repo.go
@@ -188,7 +188,10 @@ func RetrieveBaseRepo(ctx *Context, repo *models.Repository) {
// ComposeGoGetImport returns go-get-import meta content.
func ComposeGoGetImport(owner, repo string) string {
- return path.Join(setting.Domain, setting.AppSubURL, url.PathEscape(owner), url.PathEscape(repo))
+ /// setting.AppUrl is guaranteed to be parse as url
+ appURL, _ := url.Parse(setting.AppURL)
+
+ return path.Join(appURL.Host, setting.AppSubURL, url.PathEscape(owner), url.PathEscape(repo))
}
// EarlyResponseForGoGetMeta responses appropriate go-get meta with status 200