228862fefa
- Parse configuration only once during startup time - Store configuration values in a global variable
39 lines
986 B
Go
39 lines
986 B
Go
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
// Use of this source code is governed by the Apache 2.0
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package httpd // import "miniflux.app/service/httpd"
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"miniflux.app/config"
|
|
"miniflux.app/http/request"
|
|
"miniflux.app/logger"
|
|
)
|
|
|
|
func middleware(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
clientIP := request.FindClientIP(r)
|
|
ctx := r.Context()
|
|
ctx = context.WithValue(ctx, request.ClientIPContextKey, clientIP)
|
|
|
|
if r.Header.Get("X-Forwarded-Proto") == "https" {
|
|
config.Opts.HTTPS = true
|
|
}
|
|
|
|
protocol := "HTTP"
|
|
if config.Opts.HTTPS {
|
|
protocol = "HTTPS"
|
|
}
|
|
|
|
logger.Debug("[%s] %s %s %s", protocol, clientIP, r.Method, r.RequestURI)
|
|
|
|
if config.Opts.HTTPS && config.Opts.HasHSTS() {
|
|
w.Header().Set("Strict-Transport-Security", "max-age=31536000")
|
|
}
|
|
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
})
|
|
}
|