| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/go/src/cmd/go/internal/vcweb/ |
Upload File : |
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package vcweb
import (
"log"
"net/http"
)
// insecureHandler redirects requests to the same host and path but using the
// "http" scheme instead of "https".
type insecureHandler struct{}
func (h *insecureHandler) Available() bool { return true }
func (h *insecureHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
// The insecure-redirect handler implementation doesn't depend or dir or env.
//
// The only effect of the directory is to determine which prefix the caller
// will strip from the request before passing it on to this handler.
return h, nil
}
func (h *insecureHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
if req.Host == "" && req.URL.Host == "" {
http.Error(w, "no Host provided in request", http.StatusBadRequest)
return
}
// Note that if the handler is wrapped with http.StripPrefix, the prefix
// will remain stripped in the redirected URL, preventing redirect loops
// if the scheme is already "http".
u := *req.URL
u.Scheme = "http"
u.User = nil
u.Host = req.Host
http.Redirect(w, req, u.String(), http.StatusFound)
}