Server : LiteSpeed System : Linux in-mum-web1333.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u141265441 ( 141265441) PHP Version : 8.4.3 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /proc/self/root/opt/golang/1.22.0/src/cmd/go/internal/vcweb/ |
// 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)
}