21 lines
704 B
Go
Raw Normal View History

2017-12-02 16:03:36 +00:00
package middleware
2017-12-02 18:19:08 +00:00
// // HTTPSRedirect middleware redirects to HTTPS if needed.
// func HTTPSRedirect() aero.Middleware {
// return func(ctx *aero.Context, next func()) {
// request := ctx.Request()
// userAgent := request.Header().Get("User-Agent")
// isBrowser := strings.Contains(userAgent, "Mozilla/") || strings.Contains(userAgent, "Chrome/") || strings.Contains(userAgent, "AppleWebKit/")
2017-12-02 16:03:36 +00:00
2017-12-02 18:19:08 +00:00
// if !strings.HasPrefix(request.Protocol(), "HTTP/2") && isBrowser {
// fmt.Println("Redirect to HTTPS")
// ctx.Redirect("https://" + request.Host() + request.URL().Path)
// ctx.Response().WriteHeader(ctx.StatusCode)
// return
// }
2017-12-02 16:03:36 +00:00
2017-12-02 18:19:08 +00:00
// // Handle the request
// next()
// }
// }