2018-03-08 06:16:57 +01:00
|
|
|
// Copyright 2018 The Harbor Authors. All rights reserved.
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2018-08-23 09:02:20 +02:00
|
|
|
"github.com/goharbor/harbor/src/jobservice/config"
|
|
|
|
"github.com/goharbor/harbor/src/jobservice/env"
|
|
|
|
"github.com/goharbor/harbor/src/jobservice/logger"
|
2018-03-08 06:16:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
//Server serves the http requests.
|
|
|
|
type Server struct {
|
|
|
|
//The real backend http server to serve the requests
|
|
|
|
httpServer *http.Server
|
|
|
|
|
|
|
|
//Define the routes of http service
|
|
|
|
router Router
|
|
|
|
|
|
|
|
//Keep the configurations of server
|
|
|
|
config ServerConfig
|
|
|
|
|
|
|
|
//The context
|
2018-03-13 16:58:07 +01:00
|
|
|
context *env.Context
|
2018-03-08 06:16:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//ServerConfig contains the configurations of Server.
|
|
|
|
type ServerConfig struct {
|
|
|
|
//Protocol server listening on: https/http
|
|
|
|
Protocol string
|
|
|
|
|
|
|
|
//Server listening port
|
|
|
|
Port uint
|
|
|
|
|
|
|
|
//Cert file path if using https
|
|
|
|
Cert string
|
|
|
|
|
|
|
|
//Key file path if using https
|
|
|
|
Key string
|
|
|
|
}
|
|
|
|
|
|
|
|
//NewServer is constructor of Server.
|
2018-03-13 16:58:07 +01:00
|
|
|
func NewServer(ctx *env.Context, router Router, cfg ServerConfig) *Server {
|
2018-03-15 05:26:01 +01:00
|
|
|
apiServer := &Server{
|
|
|
|
router: router,
|
|
|
|
config: cfg,
|
|
|
|
context: ctx,
|
|
|
|
}
|
|
|
|
|
2018-03-08 06:16:57 +01:00
|
|
|
srv := &http.Server{
|
|
|
|
Addr: fmt.Sprintf(":%d", cfg.Port),
|
|
|
|
Handler: http.HandlerFunc(router.ServeHTTP),
|
|
|
|
WriteTimeout: 15 * time.Second,
|
|
|
|
ReadTimeout: 15 * time.Second,
|
|
|
|
IdleTimeout: 60 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
//Initialize TLS/SSL config if protocol is https
|
|
|
|
if cfg.Protocol == config.JobServiceProtocolHTTPS {
|
|
|
|
tlsCfg := &tls.Config{
|
|
|
|
MinVersion: tls.VersionTLS12,
|
|
|
|
CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256},
|
|
|
|
PreferServerCipherSuites: true,
|
|
|
|
CipherSuites: []uint16{
|
|
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
|
|
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
|
|
|
|
tls.TLS_RSA_WITH_AES_256_GCM_SHA384,
|
|
|
|
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
srv.TLSConfig = tlsCfg
|
|
|
|
srv.TLSNextProto = make(map[string]func(*http.Server, *tls.Conn, http.Handler), 0)
|
|
|
|
}
|
|
|
|
|
2018-03-15 05:26:01 +01:00
|
|
|
apiServer.httpServer = srv
|
|
|
|
|
|
|
|
return apiServer
|
2018-03-08 06:16:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Start the server to serve requests.
|
|
|
|
func (s *Server) Start() {
|
2018-03-13 16:58:07 +01:00
|
|
|
s.context.WG.Add(1)
|
|
|
|
|
2018-03-08 06:16:57 +01:00
|
|
|
go func() {
|
|
|
|
var err error
|
|
|
|
defer func() {
|
2018-03-15 05:26:01 +01:00
|
|
|
s.context.WG.Done()
|
2018-03-26 09:30:16 +02:00
|
|
|
logger.Infof("API server is gracefully shutdown")
|
2018-03-08 06:16:57 +01:00
|
|
|
}()
|
2018-03-15 05:26:01 +01:00
|
|
|
|
2018-03-08 06:16:57 +01:00
|
|
|
if s.config.Protocol == config.JobServiceProtocolHTTPS {
|
|
|
|
err = s.httpServer.ListenAndServeTLS(s.config.Cert, s.config.Key)
|
|
|
|
} else {
|
|
|
|
err = s.httpServer.ListenAndServe()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2018-03-13 16:58:07 +01:00
|
|
|
s.context.ErrorChan <- err
|
2018-03-08 06:16:57 +01:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
//Stop server gracefully.
|
|
|
|
func (s *Server) Stop() {
|
|
|
|
go func() {
|
2018-03-15 05:26:01 +01:00
|
|
|
defer func() {
|
2018-03-26 09:30:16 +02:00
|
|
|
logger.Info("Stop API server done!")
|
2018-03-15 05:26:01 +01:00
|
|
|
}()
|
2018-03-08 06:16:57 +01:00
|
|
|
shutDownCtx, cancel := context.WithTimeout(s.context.SystemContext, 10*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := s.httpServer.Shutdown(shutDownCtx); err != nil {
|
2018-03-26 09:30:16 +02:00
|
|
|
logger.Errorf("Shutdown API server failed with error: %s\n", err)
|
2018-03-08 06:16:57 +01:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|