mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
9f85b74fc9
Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
34 lines
849 B
Go
34 lines
849 B
Go
package netutil
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// used on host/supervisor/task and router/path
|
|
|
|
// IsTLS returns true if the "srv" contains any certificates
|
|
// or a get certificate function, meaning that is secure.
|
|
func IsTLS(srv *http.Server) bool {
|
|
if cfg := srv.TLSConfig; cfg != nil &&
|
|
(len(cfg.Certificates) > 0 || cfg.GetCertificate != nil) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// ResolveSchemeFromServer tries to resolve a url scheme
|
|
// based on the server's configuration.
|
|
// Returns "https" on secure server,
|
|
// otherwise "http".
|
|
func ResolveSchemeFromServer(srv *http.Server) string {
|
|
return ResolveScheme(IsTLS(srv))
|
|
}
|
|
|
|
// ResolveURLFromServer returns the scheme+host from a server.
|
|
func ResolveURLFromServer(srv *http.Server) string {
|
|
scheme := ResolveSchemeFromServer(srv)
|
|
host := ResolveVHost(srv.Addr)
|
|
return scheme + "://" + host
|
|
}
|