fix: Cannot build for aws lambda (#433)
* fix: Cannot build for aws lambda fix: https://github.com/appleboy/gorush/issues/432 * update command Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update command Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
a49bf91e75
commit
d86ccf15ea
|
@ -3,8 +3,6 @@ package gorush
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/base64"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
@ -139,66 +137,3 @@ func routerEngine() *gin.Engine {
|
||||||
|
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunHTTPServer provide run http or https protocol.
|
|
||||||
func RunHTTPServer() (err error) {
|
|
||||||
if !PushConf.Core.Enabled {
|
|
||||||
LogAccess.Debug("httpd server is disabled.")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
server := &http.Server{
|
|
||||||
Addr: PushConf.Core.Address + ":" + PushConf.Core.Port,
|
|
||||||
Handler: routerEngine(),
|
|
||||||
}
|
|
||||||
|
|
||||||
LogAccess.Debug("HTTPD server is running on " + PushConf.Core.Port + " port.")
|
|
||||||
if PushConf.Core.AutoTLS.Enabled {
|
|
||||||
return startServer(autoTLSServer())
|
|
||||||
} else if PushConf.Core.SSL {
|
|
||||||
config := &tls.Config{
|
|
||||||
MinVersion: tls.VersionTLS10,
|
|
||||||
}
|
|
||||||
|
|
||||||
if config.NextProtos == nil {
|
|
||||||
config.NextProtos = []string{"http/1.1"}
|
|
||||||
}
|
|
||||||
|
|
||||||
config.Certificates = make([]tls.Certificate, 1)
|
|
||||||
if PushConf.Core.CertPath != "" && PushConf.Core.KeyPath != "" {
|
|
||||||
config.Certificates[0], err = tls.LoadX509KeyPair(PushConf.Core.CertPath, PushConf.Core.KeyPath)
|
|
||||||
if err != nil {
|
|
||||||
LogError.Error("Failed to load https cert file: ", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else if PushConf.Core.CertBase64 != "" && PushConf.Core.KeyBase64 != "" {
|
|
||||||
cert, err := base64.StdEncoding.DecodeString(PushConf.Core.CertBase64)
|
|
||||||
if err != nil {
|
|
||||||
LogError.Error("base64 decode error:", err.Error())
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
key, err := base64.StdEncoding.DecodeString(PushConf.Core.KeyBase64)
|
|
||||||
if err != nil {
|
|
||||||
LogError.Error("base64 decode error:", err.Error())
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if config.Certificates[0], err = tls.X509KeyPair(cert, key); err != nil {
|
|
||||||
LogError.Error("tls key pair error:", err.Error())
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return errors.New("missing https cert config")
|
|
||||||
}
|
|
||||||
|
|
||||||
server.TLSConfig = config
|
|
||||||
}
|
|
||||||
|
|
||||||
return startServer(server)
|
|
||||||
}
|
|
||||||
|
|
||||||
func startServer(s *http.Server) error {
|
|
||||||
if s.TLSConfig == nil {
|
|
||||||
return s.ListenAndServe()
|
|
||||||
}
|
|
||||||
return s.ListenAndServeTLS("", "")
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
// +build !lambda
|
||||||
|
|
||||||
|
package gorush
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"encoding/base64"
|
||||||
|
"errors"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
// RunHTTPServer provide run http or https protocol.
|
||||||
|
func RunHTTPServer() (err error) {
|
||||||
|
if !PushConf.Core.Enabled {
|
||||||
|
LogAccess.Debug("httpd server is disabled.")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
server := &http.Server{
|
||||||
|
Addr: PushConf.Core.Address + ":" + PushConf.Core.Port,
|
||||||
|
Handler: routerEngine(),
|
||||||
|
}
|
||||||
|
|
||||||
|
LogAccess.Debug("HTTPD server is running on " + PushConf.Core.Port + " port.")
|
||||||
|
if PushConf.Core.AutoTLS.Enabled {
|
||||||
|
return startServer(autoTLSServer())
|
||||||
|
} else if PushConf.Core.SSL {
|
||||||
|
config := &tls.Config{
|
||||||
|
MinVersion: tls.VersionTLS10,
|
||||||
|
}
|
||||||
|
|
||||||
|
if config.NextProtos == nil {
|
||||||
|
config.NextProtos = []string{"http/1.1"}
|
||||||
|
}
|
||||||
|
|
||||||
|
config.Certificates = make([]tls.Certificate, 1)
|
||||||
|
if PushConf.Core.CertPath != "" && PushConf.Core.KeyPath != "" {
|
||||||
|
config.Certificates[0], err = tls.LoadX509KeyPair(PushConf.Core.CertPath, PushConf.Core.KeyPath)
|
||||||
|
if err != nil {
|
||||||
|
LogError.Error("Failed to load https cert file: ", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else if PushConf.Core.CertBase64 != "" && PushConf.Core.KeyBase64 != "" {
|
||||||
|
cert, err := base64.StdEncoding.DecodeString(PushConf.Core.CertBase64)
|
||||||
|
if err != nil {
|
||||||
|
LogError.Error("base64 decode error:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
key, err := base64.StdEncoding.DecodeString(PushConf.Core.KeyBase64)
|
||||||
|
if err != nil {
|
||||||
|
LogError.Error("base64 decode error:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if config.Certificates[0], err = tls.X509KeyPair(cert, key); err != nil {
|
||||||
|
LogError.Error("tls key pair error:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return errors.New("missing https cert config")
|
||||||
|
}
|
||||||
|
|
||||||
|
server.TLSConfig = config
|
||||||
|
}
|
||||||
|
|
||||||
|
return startServer(server)
|
||||||
|
}
|
||||||
|
|
||||||
|
func startServer(s *http.Server) error {
|
||||||
|
if s.TLSConfig == nil {
|
||||||
|
return s.ListenAndServe()
|
||||||
|
}
|
||||||
|
return s.ListenAndServeTLS("", "")
|
||||||
|
}
|
|
@ -128,6 +128,22 @@
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// name: 'build-push-lambda',
|
||||||
|
// image: 'golang:1.13',
|
||||||
|
// pull: 'always',
|
||||||
|
// environment: {
|
||||||
|
// CGO_ENABLED: '0',
|
||||||
|
// },
|
||||||
|
// commands: [
|
||||||
|
// 'go build -v -tags \'lambda\' -ldflags \'-X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/lambda/' + name,
|
||||||
|
// ],
|
||||||
|
// when: {
|
||||||
|
// event: {
|
||||||
|
// exclude: [ 'tag' ],
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
name: 'build-tag',
|
name: 'build-tag',
|
||||||
image: 'golang:1.13',
|
image: 'golang:1.13',
|
||||||
|
|
Loading…
Reference in New Issue