2021-12-04 16:42:11 +00:00
|
|
|
// Copyright 2020 lesismal. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package nbhttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/lesismal/llib/std/crypto/tls"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Server .
|
|
|
|
type Server struct {
|
|
|
|
*Engine
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewServer .
|
|
|
|
func NewServer(conf Config, v ...interface{}) *Server {
|
|
|
|
if len(v) > 0 {
|
|
|
|
if handler, ok := v[0].(http.Handler); ok {
|
|
|
|
conf.Handler = handler
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(v) > 1 {
|
|
|
|
if messageHandlerExecutor, ok := v[1].(func(f func())); ok {
|
|
|
|
conf.ServerExecutor = messageHandlerExecutor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &Server{Engine: NewEngine(conf)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewServerTLS .
|
|
|
|
func NewServerTLS(conf Config, v ...interface{}) *Server {
|
|
|
|
if len(v) > 0 {
|
|
|
|
if handler, ok := v[0].(http.Handler); ok {
|
|
|
|
conf.Handler = handler
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(v) > 1 {
|
|
|
|
if messageHandlerExecutor, ok := v[1].(func(f func())); ok {
|
|
|
|
conf.ServerExecutor = messageHandlerExecutor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(v) > 2 {
|
|
|
|
if tlsConfig, ok := v[2].(*tls.Config); ok {
|
|
|
|
conf.TLSConfig = tlsConfig
|
|
|
|
}
|
|
|
|
}
|
2022-03-03 10:49:59 +00:00
|
|
|
conf.AddrsTLS = append(conf.AddrsTLS, conf.Addrs...)
|
|
|
|
conf.Addrs = nil
|
2021-12-04 16:42:11 +00:00
|
|
|
return &Server{Engine: NewEngine(conf)}
|
|
|
|
}
|