mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
19 lines
420 B
Go
19 lines
420 B
Go
package parse
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
func IsBrowser(req *http.Request, checkAccepts bool) bool {
|
|
accepts := strings.ToLower(req.Header.Get("Accept"))
|
|
userAgent := strings.ToLower(req.Header.Get("User-Agent"))
|
|
|
|
if accepts == "" || !checkAccepts {
|
|
accepts = "*/*"
|
|
}
|
|
|
|
// User agent has Mozilla and browser accepts */*
|
|
return strings.Contains(userAgent, "mozilla") && strings.Contains(accepts, "*/*")
|
|
}
|