mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 05:14:06 +02:00
* tests: don't run crowdsec if not necessary * make listen_uri report the random port number when 0 is requested * move apiserver.getTLSAuthType() -> csconfig.TLSCfg.GetAuthType() * move apiserver.isEnrolled() -> apiclient.ApiClient.IsEnrolled() * extract function apiserver.recoverFromPanic() * simplify and move APIServer.GetTLSConfig() -> TLSCfg.GetTLSConfig() * moved TLSCfg type to csconfig/tls.go * APIServer.InitController(): early return / happy path * extract function apiserver.newGinLogger() * lapi tests * update unit test * lint (testify) * lint (whitespace, variable names) * update docker tests
160 lines
4.3 KiB
Go
160 lines
4.3 KiB
Go
package apiclient
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
qs "github.com/google/go-querystring/query"
|
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/models"
|
|
)
|
|
|
|
// type ApiAlerts service
|
|
|
|
type AlertsService service
|
|
|
|
type AlertsListOpts struct {
|
|
ScopeEquals *string `url:"scope,omitempty"`
|
|
ValueEquals *string `url:"value,omitempty"`
|
|
ScenarioEquals *string `url:"scenario,omitempty"`
|
|
IPEquals *string `url:"ip,omitempty"`
|
|
RangeEquals *string `url:"range,omitempty"`
|
|
OriginEquals *string `url:"origin,omitempty"`
|
|
Since *string `url:"since,omitempty"`
|
|
TypeEquals *string `url:"decision_type,omitempty"`
|
|
Until *string `url:"until,omitempty"`
|
|
IncludeSimulated *bool `url:"simulated,omitempty"`
|
|
ActiveDecisionEquals *bool `url:"has_active_decision,omitempty"`
|
|
IncludeCAPI *bool `url:"include_capi,omitempty"`
|
|
Limit *int `url:"limit,omitempty"`
|
|
Contains *bool `url:"contains,omitempty"`
|
|
ListOpts
|
|
}
|
|
|
|
type AlertsDeleteOpts struct {
|
|
ScopeEquals *string `url:"scope,omitempty"`
|
|
ValueEquals *string `url:"value,omitempty"`
|
|
ScenarioEquals *string `url:"scenario,omitempty"`
|
|
IPEquals *string `url:"ip,omitempty"`
|
|
RangeEquals *string `url:"range,omitempty"`
|
|
Since *string `url:"since,omitempty"`
|
|
Until *string `url:"until,omitempty"`
|
|
OriginEquals *string `url:"origin,omitempty"`
|
|
ActiveDecisionEquals *bool `url:"has_active_decision,omitempty"`
|
|
SourceEquals *string `url:"alert_source,omitempty"`
|
|
Contains *bool `url:"contains,omitempty"`
|
|
Limit *int `url:"limit,omitempty"`
|
|
ListOpts
|
|
}
|
|
|
|
func (s *AlertsService) Add(ctx context.Context, alerts models.AddAlertsRequest) (*models.AddAlertsResponse, *Response, error) {
|
|
var addedIds models.AddAlertsResponse
|
|
|
|
u := fmt.Sprintf("%s/alerts", s.client.URLPrefix)
|
|
req, err := s.client.NewRequest(http.MethodPost, u, &alerts)
|
|
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(ctx, req, &addedIds)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return &addedIds, resp, nil
|
|
}
|
|
|
|
// to demo query arguments
|
|
func (s *AlertsService) List(ctx context.Context, opts AlertsListOpts) (*models.GetAlertsResponse, *Response, error) {
|
|
var (
|
|
alerts models.GetAlertsResponse
|
|
URI string
|
|
)
|
|
|
|
u := fmt.Sprintf("%s/alerts", s.client.URLPrefix)
|
|
params, err := qs.Values(opts)
|
|
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("building query: %w", err)
|
|
}
|
|
|
|
if len(params) > 0 {
|
|
URI = fmt.Sprintf("%s?%s", u, params.Encode())
|
|
} else {
|
|
URI = u
|
|
}
|
|
|
|
req, err := s.client.NewRequest(http.MethodGet, URI, nil)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("building request: %w", err)
|
|
}
|
|
|
|
resp, err := s.client.Do(ctx, req, &alerts)
|
|
if err != nil {
|
|
return nil, resp, fmt.Errorf("performing request: %w", err)
|
|
}
|
|
|
|
return &alerts, resp, nil
|
|
}
|
|
|
|
// to demo query arguments
|
|
func (s *AlertsService) Delete(ctx context.Context, opts AlertsDeleteOpts) (*models.DeleteAlertsResponse, *Response, error) {
|
|
var alerts models.DeleteAlertsResponse
|
|
|
|
params, err := qs.Values(opts)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
u := fmt.Sprintf("%s/alerts?%s", s.client.URLPrefix, params.Encode())
|
|
|
|
req, err := s.client.NewRequest(http.MethodDelete, u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(ctx, req, &alerts)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return &alerts, resp, nil
|
|
}
|
|
|
|
func (s *AlertsService) DeleteOne(ctx context.Context, alertID string) (*models.DeleteAlertsResponse, *Response, error) {
|
|
var alerts models.DeleteAlertsResponse
|
|
|
|
u := fmt.Sprintf("%s/alerts/%s", s.client.URLPrefix, alertID)
|
|
|
|
req, err := s.client.NewRequest(http.MethodDelete, u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(ctx, req, &alerts)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return &alerts, resp, nil
|
|
}
|
|
|
|
func (s *AlertsService) GetByID(ctx context.Context, alertID int) (*models.Alert, *Response, error) {
|
|
var alert models.Alert
|
|
|
|
u := fmt.Sprintf("%s/alerts/%d", s.client.URLPrefix, alertID)
|
|
|
|
req, err := s.client.NewRequest(http.MethodGet, u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(ctx, req, &alert)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return &alert, resp, nil
|
|
}
|