You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package internal
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"zero/core/proc"
|
|
)
|
|
|
|
func StartHttp(host string, port int, handler http.Handler) error {
|
|
addr := fmt.Sprintf("%s:%d", host, port)
|
|
server := buildHttpServer(addr, handler)
|
|
return StartServer(server)
|
|
}
|
|
|
|
func StartHttps(host string, port int, certFile, keyFile string, handler http.Handler) error {
|
|
addr := fmt.Sprintf("%s:%d", host, port)
|
|
if server, err := buildHttpsServer(addr, handler, certFile, keyFile); err != nil {
|
|
return err
|
|
} else {
|
|
return StartServer(server)
|
|
}
|
|
}
|
|
|
|
func StartServer(srv *http.Server) error {
|
|
proc.AddWrapUpListener(func() {
|
|
srv.Shutdown(context.Background())
|
|
})
|
|
|
|
return srv.ListenAndServe()
|
|
}
|
|
|
|
func buildHttpServer(addr string, handler http.Handler) *http.Server {
|
|
return &http.Server{Addr: addr, Handler: handler}
|
|
}
|
|
|
|
func buildHttpsServer(addr string, handler http.Handler, certFile, keyFile string) (*http.Server, error) {
|
|
cert, err := tls.LoadX509KeyPair(certFile, keyFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
config := tls.Config{Certificates: []tls.Certificate{cert}}
|
|
return &http.Server{
|
|
Addr: addr,
|
|
Handler: handler,
|
|
TLSConfig: &config,
|
|
}, nil
|
|
}
|