-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for sub-indexes #120
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
module go.uber.org/sally | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
toolchain go1.21.3 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.8.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,10 +1,12 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
package main | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||
"cmp" | ||||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||||
"html/template" | ||||||||||||||||||||||||||||||||||||||||||||||
"net/http" | ||||||||||||||||||||||||||||||||||||||||||||||
"sort" | ||||||||||||||||||||||||||||||||||||||||||||||
"path" | ||||||||||||||||||||||||||||||||||||||||||||||
"slices" | ||||||||||||||||||||||||||||||||||||||||||||||
"strings" | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"go.uber.org/sally/templates" | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -17,112 +19,168 @@ var ( | |||||||||||||||||||||||||||||||||||||||||||||
template.New("package.html").Parse(templates.Package)) | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// CreateHandler creates a Sally http.Handler | ||||||||||||||||||||||||||||||||||||||||||||||
// CreateHandler builds a new handler | ||||||||||||||||||||||||||||||||||||||||||||||
// with the provided package configuration. | ||||||||||||||||||||||||||||||||||||||||||||||
// The returned handler provides the following endpoints: | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// GET / | ||||||||||||||||||||||||||||||||||||||||||||||
// Index page listing all packages. | ||||||||||||||||||||||||||||||||||||||||||||||
// GET /<name> | ||||||||||||||||||||||||||||||||||||||||||||||
// Package page for the given package. | ||||||||||||||||||||||||||||||||||||||||||||||
// GET /<dir> | ||||||||||||||||||||||||||||||||||||||||||||||
// Page listing packages under the given directory, | ||||||||||||||||||||||||||||||||||||||||||||||
// assuming that there's no package with the given name. | ||||||||||||||||||||||||||||||||||||||||||||||
// GET /<name>/<subpkg> | ||||||||||||||||||||||||||||||||||||||||||||||
// Package page for the given subpackage. | ||||||||||||||||||||||||||||||||||||||||||||||
func CreateHandler(config *Config) http.Handler { | ||||||||||||||||||||||||||||||||||||||||||||||
mux := http.NewServeMux() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
pkgs := make([]packageInfo, 0, len(config.Packages)) | ||||||||||||||||||||||||||||||||||||||||||||||
pkgs := make([]*sallyPackage, 0, len(config.Packages)) | ||||||||||||||||||||||||||||||||||||||||||||||
for name, pkg := range config.Packages { | ||||||||||||||||||||||||||||||||||||||||||||||
handler := newPackageHandler(config, name, pkg) | ||||||||||||||||||||||||||||||||||||||||||||||
baseURL := config.URL | ||||||||||||||||||||||||||||||||||||||||||||||
if pkg.URL != "" { | ||||||||||||||||||||||||||||||||||||||||||||||
// Package-specific override for the base URL. | ||||||||||||||||||||||||||||||||||||||||||||||
baseURL = pkg.URL | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
modulePath := path.Join(baseURL, name) | ||||||||||||||||||||||||||||||||||||||||||||||
docURL := "https://" + path.Join(config.Godoc.Host, modulePath) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
pkg := &sallyPackage{ | ||||||||||||||||||||||||||||||||||||||||||||||
Name: name, | ||||||||||||||||||||||||||||||||||||||||||||||
Desc: pkg.Desc, | ||||||||||||||||||||||||||||||||||||||||||||||
ModulePath: modulePath, | ||||||||||||||||||||||||||||||||||||||||||||||
DocURL: docURL, | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL: pkg.Repo, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+44
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: grouping
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment as above. The var form is just less readable here. |
||||||||||||||||||||||||||||||||||||||||||||||
pkgs = append(pkgs, pkg) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Double-register so that "/foo" | ||||||||||||||||||||||||||||||||||||||||||||||
// does not redirect to "/foo/" with a 300. | ||||||||||||||||||||||||||||||||||||||||||||||
handler := &packageHandler{Pkg: pkg} | ||||||||||||||||||||||||||||||||||||||||||||||
mux.Handle("/"+name, handler) | ||||||||||||||||||||||||||||||||||||||||||||||
mux.Handle("/"+name+"/", handler) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
pkgs = append(pkgs, packageInfo{ | ||||||||||||||||||||||||||||||||||||||||||||||
Desc: pkg.Desc, | ||||||||||||||||||||||||||||||||||||||||||||||
ImportPath: handler.canonicalURL, | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL: handler.gitURL, | ||||||||||||||||||||||||||||||||||||||||||||||
GodocHome: handler.godocHost + "/" + handler.canonicalURL, | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
sort.Slice(pkgs, func(i, j int) bool { | ||||||||||||||||||||||||||||||||||||||||||||||
return pkgs[i].ImportPath < pkgs[j].ImportPath | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
mux.Handle("/", newIndexHandler(pkgs)) | ||||||||||||||||||||||||||||||||||||||||||||||
return requireMethod(http.MethodGet, mux) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func requireMethod(method string, handler http.Handler) http.Handler { | ||||||||||||||||||||||||||||||||||||||||||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||||||||||||||||||||||||||||||||||||||||||||||
if r.Method != method { | ||||||||||||||||||||||||||||||||||||||||||||||
http.NotFound(w, r) | ||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
handler.ServeHTTP(w, r) | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
mux.Handle("/", &indexHandler{pkgs: pkgs}) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return mux | ||||||||||||||||||||||||||||||||||||||||||||||
type sallyPackage struct { | ||||||||||||||||||||||||||||||||||||||||||||||
// Name of the package. | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// This is the part after the base URL. | ||||||||||||||||||||||||||||||||||||||||||||||
Name string | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Canonical import path for the package. | ||||||||||||||||||||||||||||||||||||||||||||||
ModulePath string | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Description of the package, if any. | ||||||||||||||||||||||||||||||||||||||||||||||
Desc string | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// URL at which documentation for the package can be found. | ||||||||||||||||||||||||||||||||||||||||||||||
DocURL string | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// URL at which the Git repository is hosted. | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL string | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
type indexHandler struct { | ||||||||||||||||||||||||||||||||||||||||||||||
pkgs []packageInfo | ||||||||||||||||||||||||||||||||||||||||||||||
pkgs []*sallyPackage // sorted by name | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
type packageInfo struct { | ||||||||||||||||||||||||||||||||||||||||||||||
Desc string // package description | ||||||||||||||||||||||||||||||||||||||||||||||
ImportPath string // canonical import path | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL string // URL of the Git repository | ||||||||||||||||||||||||||||||||||||||||||||||
GodocHome string // documentation home URL | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
var _ http.Handler = (*indexHandler)(nil) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func (h *indexHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | ||||||||||||||||||||||||||||||||||||||||||||||
// Index handler only supports '/'. | ||||||||||||||||||||||||||||||||||||||||||||||
// ServeMux will call us for any '/foo' that is not a known package. | ||||||||||||||||||||||||||||||||||||||||||||||
if r.Method != http.MethodGet || r.URL.Path != "/" { | ||||||||||||||||||||||||||||||||||||||||||||||
http.NotFound(w, r) | ||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
func newIndexHandler(pkgs []*sallyPackage) *indexHandler { | ||||||||||||||||||||||||||||||||||||||||||||||
slices.SortFunc(pkgs, func(a, b *sallyPackage) int { | ||||||||||||||||||||||||||||||||||||||||||||||
return cmp.Compare(a.Name, b.Name) | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
data := struct{ Packages []packageInfo }{ | ||||||||||||||||||||||||||||||||||||||||||||||
Packages: h.pkgs, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
if err := indexTemplate.Execute(w, data); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
http.Error(w, err.Error(), 500) | ||||||||||||||||||||||||||||||||||||||||||||||
return &indexHandler{ | ||||||||||||||||||||||||||||||||||||||||||||||
pkgs: pkgs, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
type packageHandler struct { | ||||||||||||||||||||||||||||||||||||||||||||||
// Hostname of the godoc server, e.g. "godoc.org". | ||||||||||||||||||||||||||||||||||||||||||||||
godocHost string | ||||||||||||||||||||||||||||||||||||||||||||||
func (h *indexHandler) rangeOf(path string) (start, end int) { | ||||||||||||||||||||||||||||||||||||||||||||||
if len(path) == 0 { | ||||||||||||||||||||||||||||||||||||||||||||||
return 0, len(h.pkgs) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Name of the package relative to the vanity base URL. | ||||||||||||||||||||||||||||||||||||||||||||||
// For example, "zap" for "go.uber.org/zap". | ||||||||||||||||||||||||||||||||||||||||||||||
name string | ||||||||||||||||||||||||||||||||||||||||||||||
// If the packages are sorted by name, | ||||||||||||||||||||||||||||||||||||||||||||||
// we can scan adjacent packages to find the range of packages | ||||||||||||||||||||||||||||||||||||||||||||||
// whose name descends from path. | ||||||||||||||||||||||||||||||||||||||||||||||
start, _ = slices.BinarySearchFunc(h.pkgs, path, func(pkg *sallyPackage, path string) int { | ||||||||||||||||||||||||||||||||||||||||||||||
return cmp.Compare(pkg.Name, path) | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Path at which the Git repository is hosted. | ||||||||||||||||||||||||||||||||||||||||||||||
// For example, "github.com/uber-go/zap". | ||||||||||||||||||||||||||||||||||||||||||||||
gitURL string | ||||||||||||||||||||||||||||||||||||||||||||||
for idx := start; idx < len(h.pkgs); idx++ { | ||||||||||||||||||||||||||||||||||||||||||||||
if !descends(path, h.pkgs[idx].Name) { | ||||||||||||||||||||||||||||||||||||||||||||||
// End of matching sequences. | ||||||||||||||||||||||||||||||||||||||||||||||
// The next path is not a descendant of path. | ||||||||||||||||||||||||||||||||||||||||||||||
return start, idx | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Canonical import path for the package. | ||||||||||||||||||||||||||||||||||||||||||||||
canonicalURL string | ||||||||||||||||||||||||||||||||||||||||||||||
// All packages following start are descendants of path. | ||||||||||||||||||||||||||||||||||||||||||||||
// Return the rest of the packages. | ||||||||||||||||||||||||||||||||||||||||||||||
return start, len(h.pkgs) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func newPackageHandler(cfg *Config, name string, pkg PackageConfig) *packageHandler { | ||||||||||||||||||||||||||||||||||||||||||||||
baseURL := cfg.URL | ||||||||||||||||||||||||||||||||||||||||||||||
if pkg.URL != "" { | ||||||||||||||||||||||||||||||||||||||||||||||
baseURL = pkg.URL | ||||||||||||||||||||||||||||||||||||||||||||||
func (h *indexHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | ||||||||||||||||||||||||||||||||||||||||||||||
path := strings.TrimPrefix(strings.TrimSuffix(r.URL.Path, "/"), "/") | ||||||||||||||||||||||||||||||||||||||||||||||
start, end := h.rangeOf(path) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// If start == end, then there are no packages | ||||||||||||||||||||||||||||||||||||||||||||||
if start == end { | ||||||||||||||||||||||||||||||||||||||||||||||
w.WriteHeader(http.StatusNotFound) | ||||||||||||||||||||||||||||||||||||||||||||||
fmt.Fprintf(w, "no packages found under path: %v\n", path) | ||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
canonicalURL := fmt.Sprintf("%s/%s", baseURL, name) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return &packageHandler{ | ||||||||||||||||||||||||||||||||||||||||||||||
godocHost: cfg.Godoc.Host, | ||||||||||||||||||||||||||||||||||||||||||||||
name: name, | ||||||||||||||||||||||||||||||||||||||||||||||
canonicalURL: canonicalURL, | ||||||||||||||||||||||||||||||||||||||||||||||
gitURL: pkg.Repo, | ||||||||||||||||||||||||||||||||||||||||||||||
err := indexTemplate.Execute(w, | ||||||||||||||||||||||||||||||||||||||||||||||
struct{ Packages []*sallyPackage }{ | ||||||||||||||||||||||||||||||||||||||||||||||
Packages: h.pkgs[start:end], | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
http.Error(w, err.Error(), 500) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func (h *packageHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | ||||||||||||||||||||||||||||||||||||||||||||||
if r.Method != http.MethodGet { | ||||||||||||||||||||||||||||||||||||||||||||||
http.NotFound(w, r) | ||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
type packageHandler struct { | ||||||||||||||||||||||||||||||||||||||||||||||
Pkg *sallyPackage | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
var _ http.Handler = (*packageHandler)(nil) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func (h *packageHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | ||||||||||||||||||||||||||||||||||||||||||||||
// Extract the relative path to subpackages, if any. | ||||||||||||||||||||||||||||||||||||||||||||||
// "/foo/bar" => "/bar" | ||||||||||||||||||||||||||||||||||||||||||||||
// "/foo" => "" | ||||||||||||||||||||||||||||||||||||||||||||||
relPath := strings.TrimPrefix(r.URL.Path, "/"+h.name) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
data := struct { | ||||||||||||||||||||||||||||||||||||||||||||||
Repo string | ||||||||||||||||||||||||||||||||||||||||||||||
CanonicalURL string | ||||||||||||||||||||||||||||||||||||||||||||||
GodocURL string | ||||||||||||||||||||||||||||||||||||||||||||||
// "/foo/bar" => "/bar" | ||||||||||||||||||||||||||||||||||||||||||||||
// "/foo" => "" | ||||||||||||||||||||||||||||||||||||||||||||||
relPath := strings.TrimPrefix(r.URL.Path, "/"+h.Pkg.Name) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
err := packageTemplate.Execute(w, struct { | ||||||||||||||||||||||||||||||||||||||||||||||
ModulePath string | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL string | ||||||||||||||||||||||||||||||||||||||||||||||
DocURL string | ||||||||||||||||||||||||||||||||||||||||||||||
}{ | ||||||||||||||||||||||||||||||||||||||||||||||
Repo: h.gitURL, | ||||||||||||||||||||||||||||||||||||||||||||||
CanonicalURL: h.canonicalURL, | ||||||||||||||||||||||||||||||||||||||||||||||
GodocURL: fmt.Sprintf("https://%s/%s%s", h.godocHost, h.canonicalURL, relPath), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
if err := packageTemplate.Execute(w, data); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
ModulePath: h.Pkg.ModulePath, | ||||||||||||||||||||||||||||||||||||||||||||||
GitURL: h.Pkg.GitURL, | ||||||||||||||||||||||||||||||||||||||||||||||
DocURL: h.Pkg.DocURL + relPath, | ||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
http.Error(w, err.Error(), 500) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func descends(from, to string) bool { | ||||||||||||||||||||||||||||||||||||||||||||||
return to == from || (strings.HasPrefix(to, from) && to[len(from)] == '/') | ||||||||||||||||||||||||||||||||||||||||||||||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
var
groupThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with var grouping when
var
form is used, but I think when we're initializing with non-zero values, var form is rarely used.Per the style guide, we use var form for zero value initialization and := form for non-zero-value:
https://github.com/uber-go/guide/blob/master/style.md#use-var-for-zero-value-structs
https://github.com/uber-go/guide/blob/master/style.md#initializing-struct-references
(That links only talk about structs, but the guidance has been consistent on this.)
The readability in a var group suffers as soon as you add a type for any actual var-form-zero-values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine as-is. :) Not trying to bikeshed.
My point was more that I don't personally see the value in segmenting the initializations here so I would probably group them all. I disagree about var group readability suffering when mixing initialization and zero-value declarations (and I think that ultimately leads to a lot more ad hoc initialization/declaration patterns).