blob: 7508ddd8c44bde55551f01d962499e868c311f80 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rest
import (
"crypto/tls"
"time"
"github.com/apache/servicecomb-service-center/pkg/rest"
"github.com/apache/servicecomb-service-center/server/config"
"github.com/apache/servicecomb-service-center/server/plugin/security/tlsconf"
)
func LoadConfig() (srvCfg *rest.ServerConfig, err error) {
srvCfg = rest.DefaultServerConfig()
readHeaderTimeout, _ := time.ParseDuration(config.GetServer().ReadHeaderTimeout)
readTimeout, _ := time.ParseDuration(config.GetServer().ReadTimeout)
idleTimeout, _ := time.ParseDuration(config.GetServer().IdleTimeout)
writeTimeout, _ := time.ParseDuration(config.GetServer().WriteTimeout)
maxHeaderBytes := int(config.GetServer().MaxHeaderBytes)
var tlsConfig *tls.Config
if config.GetSSL().SslEnabled {
tlsConfig, err = tlsconf.ServerConfig()
if err != nil {
return
}
}
srvCfg.ReadHeaderTimeout = readHeaderTimeout
srvCfg.ReadTimeout = readTimeout
srvCfg.IdleTimeout = idleTimeout
srvCfg.WriteTimeout = writeTimeout
srvCfg.MaxHeaderBytes = maxHeaderBytes
srvCfg.TLSConfig = tlsConfig
srvCfg.Handler = DefaultServerMux
return
}
func NewServer(ipAddr string) (srv *rest.Server, err error) {
srvCfg, err := LoadConfig()
if err != nil {
return
}
srvCfg.Addr = ipAddr
srv = rest.NewServer(srvCfg)
if srvCfg.TLSConfig == nil {
err = srv.Listen()
} else {
err = srv.ListenTLS()
}
if err != nil {
return
}
return
}