cmd/godoc: always serve fmt handler, HTTPS fix redirection
Change-Id: Ib00a54f40b3c52c9bc6a07623259c5c82f9d28d9 Reviewed-on: https://go-review.googlesource.com/14933 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
c206e42859
commit
6b41c776c8
|
@ -13,6 +13,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"go/format"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -44,7 +46,9 @@ func (h hostEnforcerHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
if r.TLS == nil || !h.validHost(r.Host) {
|
if r.TLS == nil || !h.validHost(r.Host) {
|
||||||
r.URL.Scheme = "https"
|
r.URL.Scheme = "https"
|
||||||
if !h.validHost(r.Host) {
|
if h.validHost(r.Host) {
|
||||||
|
r.URL.Host = r.Host
|
||||||
|
} else {
|
||||||
r.URL.Host = "golang.org"
|
r.URL.Host = "golang.org"
|
||||||
}
|
}
|
||||||
http.Redirect(w, r, r.URL.String(), http.StatusFound)
|
http.Redirect(w, r, r.URL.String(), http.StatusFound)
|
||||||
|
@ -71,7 +75,9 @@ func registerHandlers(pres *godoc.Presentation) *http.ServeMux {
|
||||||
mux.Handle("/robots.txt", pres.FileServer())
|
mux.Handle("/robots.txt", pres.FileServer())
|
||||||
mux.Handle("/", pres)
|
mux.Handle("/", pres)
|
||||||
mux.Handle("/pkg/C/", redirect.Handler("/cmd/cgo/"))
|
mux.Handle("/pkg/C/", redirect.Handler("/cmd/cgo/"))
|
||||||
|
mux.HandleFunc("/fmt", fmtHandler)
|
||||||
redirect.Register(mux)
|
redirect.Register(mux)
|
||||||
|
|
||||||
http.Handle("/", hostEnforcerHandler{mux})
|
http.Handle("/", hostEnforcerHandler{mux})
|
||||||
|
|
||||||
return mux
|
return mux
|
||||||
|
@ -119,3 +125,21 @@ func readTemplates(p *godoc.Presentation, html bool) {
|
||||||
p.SearchDescXML = readTemplate("opensearch.xml")
|
p.SearchDescXML = readTemplate("opensearch.xml")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type fmtResponse struct {
|
||||||
|
Body string
|
||||||
|
Error string
|
||||||
|
}
|
||||||
|
|
||||||
|
// fmtHandler takes a Go program in its "body" form value, formats it with
|
||||||
|
// standard gofmt formatting, and writes a fmtResponse as a JSON object.
|
||||||
|
func fmtHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
resp := new(fmtResponse)
|
||||||
|
body, err := format.Source([]byte(r.FormValue("body")))
|
||||||
|
if err != nil {
|
||||||
|
resp.Error = err.Error()
|
||||||
|
} else {
|
||||||
|
resp.Body = string(body)
|
||||||
|
}
|
||||||
|
json.NewEncoder(w).Encode(resp)
|
||||||
|
}
|
||||||
|
|
|
@ -6,41 +6,6 @@
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
// This package registers "/compile" and "/share" handlers
|
||||||
"encoding/json"
|
// that redirect to the golang.org playground.
|
||||||
"fmt"
|
import _ "golang.org/x/tools/playground"
|
||||||
"go/format"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
// This package registers "/compile" and "/share" handlers
|
|
||||||
// that redirect to the golang.org playground.
|
|
||||||
_ "golang.org/x/tools/playground"
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
http.HandleFunc("/fmt", fmtHandler)
|
|
||||||
}
|
|
||||||
|
|
||||||
type fmtResponse struct {
|
|
||||||
Body string
|
|
||||||
Error string
|
|
||||||
}
|
|
||||||
|
|
||||||
// fmtHandler takes a Go program in its "body" form value, formats it with
|
|
||||||
// standard gofmt formatting, and writes a fmtResponse as a JSON object.
|
|
||||||
func fmtHandler(w http.ResponseWriter, r *http.Request) {
|
|
||||||
resp := new(fmtResponse)
|
|
||||||
body, err := format.Source([]byte(r.FormValue("body")))
|
|
||||||
if err != nil {
|
|
||||||
resp.Error = err.Error()
|
|
||||||
} else {
|
|
||||||
resp.Body = string(body)
|
|
||||||
}
|
|
||||||
json.NewEncoder(w).Encode(resp)
|
|
||||||
}
|
|
||||||
|
|
||||||
// disabledHandler serves a 501 "Not Implemented" response.
|
|
||||||
func disabledHandler(w http.ResponseWriter, r *http.Request) {
|
|
||||||
w.WriteHeader(http.StatusNotImplemented)
|
|
||||||
fmt.Fprint(w, "This functionality is not available via local godoc.")
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue