123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package controllers
- import (
- "context"
- "net"
- "net/http"
- "github.com/alexliesenfeld/health"
- v1 "github.com/crowdsecurity/crowdsec/pkg/apiserver/controllers/v1"
- "github.com/crowdsecurity/crowdsec/pkg/csconfig"
- "github.com/crowdsecurity/crowdsec/pkg/csplugin"
- "github.com/crowdsecurity/crowdsec/pkg/database"
- "github.com/crowdsecurity/crowdsec/pkg/models"
- "github.com/gin-gonic/gin"
- log "github.com/sirupsen/logrus"
- )
- type Controller struct {
- Ectx context.Context
- DBClient *database.Client
- Router *gin.Engine
- Profiles []*csconfig.ProfileCfg
- AlertsAddChan chan []*models.Alert
- DecisionDeleteChan chan []*models.Decision
- PluginChannel chan csplugin.ProfileAlert
- Log *log.Logger
- ConsoleConfig *csconfig.ConsoleConfig
- TrustedIPs []net.IPNet
- HandlerV1 *v1.Controller
- DisableRemoteLapiRegistration bool
- }
- func (c *Controller) Init() error {
- if err := c.NewV1(); err != nil {
- return err
- }
- /* if we have a V2, just add
- if err := c.NewV2(); err != nil {
- return err
- }
- */
- return nil
- }
- // endpoint for health checking
- func serveHealth() http.HandlerFunc {
- checker := health.NewChecker(
- // just simple up/down status is enough
- health.WithDisabledDetails(),
- // no caching required
- health.WithDisabledCache(),
- )
- return health.NewHandler(checker)
- }
- func (c *Controller) NewV1() error {
- var err error
- v1Config := v1.ControllerV1Config{
- DbClient: c.DBClient,
- Ctx: c.Ectx,
- ProfilesCfg: c.Profiles,
- DecisionDeleteChan: c.DecisionDeleteChan,
- AlertsAddChan: c.AlertsAddChan,
- PluginChannel: c.PluginChannel,
- ConsoleConfig: *c.ConsoleConfig,
- TrustedIPs: c.TrustedIPs,
- }
- c.HandlerV1, err = v1.New(&v1Config)
- if err != nil {
- return err
- }
- c.Router.GET("/health", gin.WrapF(serveHealth()))
- c.Router.Use(v1.PrometheusMiddleware())
- c.Router.HandleMethodNotAllowed = true
- c.Router.NoRoute(func(ctx *gin.Context) {
- ctx.AbortWithStatus(http.StatusNotFound)
- })
- c.Router.NoMethod(func(ctx *gin.Context) {
- ctx.AbortWithStatus(http.StatusMethodNotAllowed)
- })
- groupV1 := c.Router.Group("/v1")
- groupV1.POST("/watchers", c.HandlerV1.AbortRemoteIf(c.DisableRemoteLapiRegistration), c.HandlerV1.CreateMachine)
- groupV1.POST("/watchers/login", c.HandlerV1.Middlewares.JWT.Middleware.LoginHandler)
- jwtAuth := groupV1.Group("")
- jwtAuth.GET("/refresh_token", c.HandlerV1.Middlewares.JWT.Middleware.RefreshHandler)
- jwtAuth.Use(c.HandlerV1.Middlewares.JWT.Middleware.MiddlewareFunc(), v1.PrometheusMachinesMiddleware())
- {
- jwtAuth.POST("/alerts", c.HandlerV1.CreateAlert)
- jwtAuth.GET("/alerts", c.HandlerV1.FindAlerts)
- jwtAuth.HEAD("/alerts", c.HandlerV1.FindAlerts)
- jwtAuth.GET("/alerts/:alert_id", c.HandlerV1.FindAlertByID)
- jwtAuth.HEAD("/alerts/:alert_id", c.HandlerV1.FindAlertByID)
- jwtAuth.DELETE("/alerts/:alert_id", c.HandlerV1.DeleteAlertByID)
- jwtAuth.DELETE("/alerts", c.HandlerV1.DeleteAlerts)
- jwtAuth.DELETE("/decisions", c.HandlerV1.DeleteDecisions)
- jwtAuth.DELETE("/decisions/:decision_id", c.HandlerV1.DeleteDecisionById)
- jwtAuth.GET("/heartbeat", c.HandlerV1.HeartBeat)
- }
- apiKeyAuth := groupV1.Group("")
- apiKeyAuth.Use(c.HandlerV1.Middlewares.APIKey.MiddlewareFunc(), v1.PrometheusBouncersMiddleware())
- {
- apiKeyAuth.GET("/decisions", c.HandlerV1.GetDecision)
- apiKeyAuth.HEAD("/decisions", c.HandlerV1.GetDecision)
- apiKeyAuth.GET("/decisions/stream", c.HandlerV1.StreamDecision)
- apiKeyAuth.HEAD("/decisions/stream", c.HandlerV1.StreamDecision)
- }
- return nil
- }
- /*
- func (c *Controller) NewV2() error {
- handlerV2, err := v2.New(c.DBClient, c.Ectx)
- if err != nil {
- return err
- }
- v2 := c.Router.Group("/v2")
- v2.POST("/watchers", handlerV2.CreateMachine)
- v2.POST("/watchers/login", handlerV2.Middlewares.JWT.Middleware.LoginHandler)
- jwtAuth := v2.Group("")
- jwtAuth.GET("/refresh_token", handlerV2.Middlewares.JWT.Middleware.RefreshHandler)
- jwtAuth.Use(handlerV2.Middlewares.JWT.Middleware.MiddlewareFunc())
- {
- jwtAuth.POST("/alerts", handlerV2.CreateAlert)
- jwtAuth.GET("/alerts", handlerV2.FindAlerts)
- jwtAuth.DELETE("/alerts", handlerV2.DeleteAlerts)
- jwtAuth.DELETE("/decisions", handlerV2.DeleteDecisions)
- jwtAuth.DELETE("/decisions/:decision_id", handlerV2.DeleteDecisionById)
- }
- apiKeyAuth := v2.Group("")
- apiKeyAuth.Use(handlerV2.Middlewares.APIKey.MiddlewareFuncV2())
- {
- apiKeyAuth.GET("/decisions", handlerV2.GetDecision)
- apiKeyAuth.GET("/decisions/stream", handlerV2.StreamDecision)
- }
- return nil
- }
- */
|