1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
package api
import (
"context"
"net/http"
"gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/gitlab"
)
const (
EventAPIPath = "/api/v4/internal/kubernetes/agent_events"
)
type EventData struct {
Events map[string][]Event `json:"events"`
}
type Event struct {
UserID int64 `json:"user_id"`
ProjectID int64 `json:"project_id"`
}
func SendEvent(ctx context.Context, client gitlab.ClientInterface, data EventData, opts ...gitlab.DoOption) error {
return client.Do(ctx,
joinOpts(opts,
gitlab.WithMethod(http.MethodPost),
gitlab.WithPath(EventAPIPath),
gitlab.WithJSONRequestBody(data),
gitlab.WithResponseHandler(gitlab.NoContentResponseHandler()),
gitlab.WithJWT(true),
)...,
)
}
|