Skip to content

Commit 7d0f1a1

Browse files
committed
internal/source: handle blitiri.com.ar import paths
The source for these import paths is served by the git-arr web viewer, which doesn't yet handle tags. Until it does, serve the source from master. For golang/go#44607 Change-Id: I94047a887ea6f1038ae812864ad343876b74ff8e Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/303609 Trust: Jonathan Amsterdam <[email protected]> Run-TryBot: Jonathan Amsterdam <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Jamal Carvalho <[email protected]>
1 parent 8be65e0 commit 7d0f1a1

File tree

3 files changed

+1597
-1472
lines changed

3 files changed

+1597
-1472
lines changed

internal/source/source.go

+15-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ func (i *Info) FileURL(pathname string) string {
9191
"repo": i.repoURL,
9292
"importPath": path.Join(strings.TrimPrefix(i.repoURL, "https://"), dir),
9393
"commit": i.commit,
94+
"dir": dir,
9495
"file": path.Join(i.moduleDir, pathname),
9596
"base": base,
9697
})
@@ -107,6 +108,7 @@ func (i *Info) LineURL(pathname string, line int) string {
107108
"importPath": path.Join(strings.TrimPrefix(i.repoURL, "https://"), dir),
108109
"commit": i.commit,
109110
"file": path.Join(i.moduleDir, pathname),
111+
"dir": dir,
110112
"base": base,
111113
"line": strconv.Itoa(line),
112114
})
@@ -356,6 +358,10 @@ func matchStatic(moduleOrRepoPath string) (repo, relativeModulePath string, _ ur
356358
if strings.HasPrefix(repo, apacheDomain) {
357359
repo = strings.Replace(repo, apacheDomain, "github.com/apache/", 1)
358360
}
361+
// Special case: module paths are blitiri.com.ar/go/..., but repos are blitiri.com.ar/git/r/...
362+
if strings.HasPrefix(repo, "blitiri.com.ar/") {
363+
repo = strings.Replace(repo, "/go/", "/git/r/", 1)
364+
}
359365
relativeModulePath = strings.TrimPrefix(moduleOrRepoPath, matches[0])
360366
relativeModulePath = strings.TrimPrefix(relativeModulePath, "/")
361367
return repo, relativeModulePath, pat.templates, pat.transformCommit, nil
@@ -612,7 +618,6 @@ var patterns = []struct {
612618
// URLs anyway. See gogs/gogs#6242.
613619
templates: giteaURLTemplates,
614620
},
615-
616621
{
617622
pattern: `^(?P<repo>dmitri\.shuralyov\.com\/.+)$`,
618623
templates: urlTemplates{
@@ -622,6 +627,15 @@ var patterns = []struct {
622627
Line: "https://gotools.org/{importPath}?rev={commit}#{base}-L{line}",
623628
},
624629
},
630+
{
631+
pattern: `^(?P<repo>blitiri\.com\.ar/go/.+)$`,
632+
templates: urlTemplates{
633+
Repo: "{repo}",
634+
Directory: "{repo}/b/master/t/{dir}",
635+
File: "{repo}/b/master/t/{dir}f={file}.html",
636+
Line: "{repo}/b/master/t/{dir}f={file}.html#line-{line}",
637+
},
638+
},
625639

626640
// Patterns that match the general go command pattern, where they must have
627641
// a ".git" repo suffix in an import path. If matching a repo URL from a meta tag,

internal/source/source_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,15 @@ func TestModuleInfo(t *testing.T) {
399399
"https://git.zx2c4.com/wireguard-windows/tree/go.mod?h=v0.3.4#n1",
400400
"https://git.zx2c4.com/wireguard-windows/plain/go.mod?h=v0.3.4",
401401
},
402+
{
403+
"go-source templates match blitiri.com.ar",
404+
"blitiri.com.ar/go/log", "v1.1.0", "go.mod",
405+
"https://blitiri.com.ar/git/r/log",
406+
"https://blitiri.com.ar/git/r/log/b/master/t",
407+
"https://blitiri.com.ar/git/r/log/b/master/t/f=go.mod.html",
408+
"https://blitiri.com.ar/git/r/log/b/master/t/f=go.mod.html#line-1",
409+
"",
410+
},
402411
} {
403412
t.Run(test.desc, func(t *testing.T) {
404413
info, err := ModuleInfo(context.Background(), &Client{client}, test.modulePath, test.version)
@@ -945,6 +954,9 @@ func TestURLTemplates(t *testing.T) {
945954
// Check that templates contain the right variables.
946955

947956
for _, p := range patterns {
957+
if strings.Contains(p.pattern, "blitiri") {
958+
continue
959+
}
948960
check := func(tmpl string, vars ...string) {
949961
if tmpl == "" {
950962
return

0 commit comments

Comments
 (0)