gitutil: strip SSH port from submodule URL when rendering for HTML link (#7383)

Co-authored-by: Joe Chen <jc@unknwon.io>
pull/7387/head
TheDarkUndoing 2023-03-05 07:00:56 -05:00 committed by GitHub
parent 6fa552994a
commit 5483d97f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 5 deletions

View File

@ -4,6 +4,10 @@ All notable changes to Gogs are documented in this file.
## 0.14.0+dev (`main`)
### Fixed
- Submodules using `ssh://` protocol and a port number are not rendered correctly. [#4941](https://github.com/gogs/gogs/issues/4941)
## 0.13.0
### Added

2
gen.go
View File

@ -5,4 +5,4 @@
package main
//go:generate go install golang.org/x/tools/cmd/goimports@v0.1.10
//go:generate go run github.com/derision-test/go-mockgen/cmd/go-mockgen@v1.3.3
//go:generate go run github.com/derision-test/go-mockgen/cmd/go-mockgen@v1.3.7

View File

@ -1,4 +1,4 @@
// Code generated by go-mockgen 1.3.3; DO NOT EDIT.
// Code generated by go-mockgen 1.3.7; DO NOT EDIT.
//
// This file was generated by running `go-mockgen` at the root of this repository.
// To add additional mocks to this or another package, add a new entry to the

View File

@ -50,7 +50,7 @@ func InferSubmoduleURL(baseURL string, mod *git.Submodule) string {
case "http", "https":
raw = parsed.String()
case "ssh":
raw = fmt.Sprintf("http://%s%s", parsed.Host, parsed.Path)
raw = fmt.Sprintf("http://%s%s", parsed.Hostname(), parsed.Path)
default:
return raw
}

View File

@ -31,7 +31,7 @@ func TestInferSubmoduleURL(t *testing.T) {
URL: "ssh://user@github.com:22/gogs/docs-api.git",
Commit: "6b08f76a5313fa3d26859515b30aa17a5faa2807",
},
expURL: "http://github.com:22/gogs/docs-api/commit/6b08f76a5313fa3d26859515b30aa17a5faa2807",
expURL: "http://github.com/gogs/docs-api/commit/6b08f76a5313fa3d26859515b30aa17a5faa2807",
},
{
name: "SSH URL in SCP syntax",

View File

@ -1,4 +1,4 @@
// Code generated by go-mockgen 1.3.3; DO NOT EDIT.
// Code generated by go-mockgen 1.3.7; DO NOT EDIT.
//
// This file was generated by running `go-mockgen` at the root of this repository.
// To add additional mocks to this or another package, add a new entry to the