cflee.com
a weblog


The Golang.org URL redirector

Posted on

I always thought it was interesting that the Go project always uses "vanity" URL redirectors to link to things like GitHub issues and GitHub wiki pages and CLs, which I thought would be pretty static things. Can we figure out what these redirectors do, and what they're meant to do? Is there something more to it than vanity?

Within commit messages, issues and PRs, you'll see humans and bots make references to GitHub issues through https://golang.org/issue/1234, and Gerrit changelists through https://golang.org/cl/1234, and so on. This was the bit that puzzled me, why not just link to the actual issue or CL?

There are also another category of links like https://golang.org/s/sometext, which makes more obvious sense -- you want to use a redirector/shortener in those cases to ensure a stable URL for published links, for content that might get moved around in future.

(This post is not really a blog post since there's no real narrative, but more of publishing notes online for search engines to find, I guess.)

Current state

Right now, these redirects exist in the golang.org/x/website/internal/redirect package, where we can marvel at the full list of redirects and other special handlers. They can be grouped into a few categories:

Separate from all this is the /s/ handler, which seems to be a more "traditional" or "dynamic" URL shortening service, backed by Cloud Datastore. We can't see what links exist here, since it's not in code, so assembling a list would probably mean grepping through the codebase and issues for /s/ refs.

While first three sections contain some relatively standard backward-compatible type of things that might historically have been done with .htaccess files in httpd, the last section is the most interesting.

The /change/ handler loads a map of Mercurial to Git revisions from a file somewhere, which is quite clever, since it's presumably static and as part of the source repo migration you'd have ensured that all old commits exist in the new repo.

You can test the Mercurial to Git conversion by going to an old Rietveld CL, finding a link like https://code.google.com/p/go/source/detail?r=dc6035c8db3f&repo=tools, copy the r= value out and append it like so: https://golang.org/change/dc6035c8db3f. That URL will send you to the converted git commit on the new git repo.

The /cl/ handler has a fair bit of logic to determine whether a given integer is a Rietveld CL, a Gerrit CL, or both. Presumably they couldn't migrate past CLs from Rietveld to Gerrit, but yet they decided to continue using the same prefix for the new Gerrit CLs:

This actually feels like quite a lot of incremental effort over the past 6-7 years to retain old URLs!

Historical references

Rob Pike's Nov 2014 announcement on golang-dev of the move from Mercurial on code.google.com to Git on GitHub (HN discussion):

P.S. For those keeping score, this will be Go version control system number four. Go development started in Subversion, moved to Perforce, then Mercurial, and soon to Git.

(I suppose we should be happy they didn't try to write a VCS and issue tracker in Go for Go development?)

Major changes to this redirect code (old to new):

LinkDescription
Rietveld CL 13722043Initial add of redirects
Rietveld CL 13356047Add redirects for old content to new content
Rietveld CL 187920043Switch from code.google.com to github.com and Rietveld to Gerrit URLs
Gerrit CL 1567Add support for the Mercurial to Git map
Issue 26871Send /design to Gerrit instead of GitHub, partly because it offers nice printable HTML output
Issue 28836Gerrit CL numbers started to collide with Rietveld numbers, add disambiguation page

The old Rietveld CLs don't seem to have references to an issue tracker, or I'd point to that instead. Maybe it's all on a mailing list somewhere?

The /cl/ convention turns out to have been around for really long. The commit for issue #1 mentions http://go/go-review/1017003, but from issue #2 onwards the commit messages point to https://golang.org/cl/152048, so the /cl/ convention has been around since the very early days of Nov 2009.

Git history/log (old to new):