File: module_request.go

package info (click to toggle)
gitlab-agent 16.1.3-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 6,324 kB
  • sloc: makefile: 175; sh: 52; ruby: 3
file content (37 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download
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
34
35
36
37
package api

import (
	"context"
	"io"
	"net/http"
	"net/url"

	"gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/api"
	"gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/gitlab"
)

const (
	ModuleRequestApiPath = "/api/v4/internal/kubernetes/modules/"
)

func MakeModuleRequest(ctx context.Context, client gitlab.ClientInterface, agentToken api.AgentToken,
	moduleName, method, urlPath string, query url.Values, header http.Header, body io.Reader,
	opts ...gitlab.DoOption) (*http.Response, error) {
	var resp *http.Response
	err := client.Do(ctx,
		joinOpts(opts,
			gitlab.WithMethod(method),
			gitlab.WithPath(ModuleRequestApiPath+url.PathEscape(moduleName)+urlPath),
			gitlab.WithQuery(query),
			gitlab.WithHeader(header),
			gitlab.WithAgentToken(agentToken),
			gitlab.WithJWT(true),
			gitlab.WithRequestBody(body, ""),
			gitlab.WithResponseHandler(gitlab.NakedResponseHandler(&resp)),
		)...,
	)
	if err != nil {
		return nil, err
	}
	return resp, nil
}