2fas-server/internal/pass/server.go

102 lines
3.3 KiB
Go
Raw Normal View History

package pass
import (
2024-01-24 20:57:31 +01:00
"log"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/kms"
"github.com/gin-gonic/gin"
2024-01-24 20:57:31 +01:00
"github.com/twofas/2fas-server/config"
httphelpers "github.com/twofas/2fas-server/internal/common/http"
"github.com/twofas/2fas-server/internal/common/logging"
"github.com/twofas/2fas-server/internal/common/recovery"
"github.com/twofas/2fas-server/internal/pass/connection"
"github.com/twofas/2fas-server/internal/pass/pairing"
"github.com/twofas/2fas-server/internal/pass/sign"
"github.com/twofas/2fas-server/internal/pass/sync"
)
type Server struct {
router *gin.Engine
addr string
}
2024-01-24 20:57:31 +01:00
func NewServer(cfg config.PassConfig) *Server {
var awsEndpoint *string
if cfg.AWSEndpoint != "" {
awsEndpoint = aws.String(cfg.AWSEndpoint)
}
2024-01-24 21:05:16 +01:00
region := cfg.AWSRegion
if region == "" {
region = "us-east-1"
}
2024-01-25 17:55:08 +01:00
sess, err := session.NewSessionWithOptions(
session.Options{
Config: aws.Config{
Region: aws.String(region),
S3ForcePathStyle: aws.Bool(true),
Endpoint: awsEndpoint,
},
SharedConfigState: session.SharedConfigEnable,
})
2024-01-24 20:57:31 +01:00
if err != nil {
log.Fatal(err)
}
kmsClient := kms.New(sess)
signSvc, err := sign.NewService(cfg.KMSKeyID, kmsClient)
if err != nil {
log.Fatal(err)
}
pairingApp := pairing.NewApp(signSvc, cfg.PairingRequestTokenValidityDuration)
proxyPairingApp := connection.NewProxyServer("device_id")
syncApp := sync.NewApp(signSvc, cfg.FakeMobilePush)
proxySyncApp := connection.NewProxyServer("fcm_token")
router := gin.New()
router.Use(recovery.RecoveryMiddleware())
2024-04-27 15:24:58 +02:00
router.Use(httphelpers.LoggingMiddleware())
router.Use(httphelpers.RequestJsonLogger())
router.GET("/health", func(context *gin.Context) {
context.Status(200)
})
// Deprecated paths start here.
router.GET("/browser_extension/wait_for_connection", pairing.ExtensionWaitForConnWSHandler(pairingApp))
router.GET("/browser_extension/proxy_to_mobile", pairing.ExtensionProxyWSHandler(pairingApp, proxyPairingApp))
router.POST("/mobile/confirm", pairing.MobileConfirmHandler(pairingApp))
router.GET("/mobile/proxy_to_browser_extension", pairing.MobileProxyWSHandler(pairingApp, proxyPairingApp))
// Deprecated paths end here.
router.POST("/browser_extension/configure", pairing.ExtensionConfigureHandler(pairingApp))
router.GET("/browser_extension/pairing/wait", pairing.ExtensionWaitForConnWSHandler(pairingApp))
router.GET("/browser_extension/pairing/proxy", pairing.ExtensionProxyWSHandler(pairingApp, proxyPairingApp))
router.POST("/mobile/pairing/confirm", pairing.MobileConfirmHandler(pairingApp))
router.GET("/mobile/pairing/proxy", pairing.MobileProxyWSHandler(pairingApp, proxyPairingApp))
router.GET("/browser_extension/sync/request", sync.ExtensionRequestSync(syncApp))
router.GET("/browser_extension/sync/proxy", sync.ExtensionProxyWSHandler(syncApp, proxySyncApp))
router.POST("/mobile/sync/confirm", sync.MobileConfirmHandler(syncApp))
router.GET("/mobile/sync/proxy", sync.MobileProxyWSHandler(syncApp, proxySyncApp))
if cfg.FakeMobilePush {
logging.Info("Enabled '/mobile/sync/:fcm/token' endpoint. This should happen in test env only!")
router.GET("/mobile/sync/:fcm/token", sync.MobileGenerateSyncToken(syncApp))
}
return &Server{
router: router,
2024-01-24 20:57:31 +01:00
addr: cfg.Addr,
}
}
func (s *Server) Run() error {
return s.router.Run(s.addr)
}