summaryrefslogtreecommitdiff
path: root/go/internal/gitlabnet/client.go
blob: abc218f1a9e45065dfec3ca286f5aeb30fe04b03 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package gitlabnet

import (
	"encoding/base64"
	"encoding/json"
	"fmt"
	"net/http"
	"strings"

	"gitlab.com/gitlab-org/gitlab-shell/go/internal/config"
)

const (
	internalApiPath  = "/api/v4/internal"
	secretHeaderName = "Gitlab-Shared-Secret"
)

type GitlabClient interface {
	Get(path string) (*http.Response, error)
	// TODO: implement posts
	// Post(path string) (http.Response, error)
}

type ErrorResponse struct {
	Message string `json:"message"`
}

func GetClient(config *config.Config) (GitlabClient, error) {
	url := config.GitlabUrl
	if strings.HasPrefix(url, UnixSocketProtocol) {
		return buildSocketClient(config), nil
	}

	return nil, fmt.Errorf("Unsupported protocol")
}

func normalizePath(path string) string {
	if !strings.HasPrefix(path, "/") {
		path = "/" + path
	}

	if !strings.HasPrefix(path, internalApiPath) {
		path = internalApiPath + path
	}
	return path
}

func parseError(resp *http.Response) error {
	if resp.StatusCode >= 200 && resp.StatusCode <= 299 {
		return nil
	}
	defer resp.Body.Close()
	parsedResponse := &ErrorResponse{}

	if err := json.NewDecoder(resp.Body).Decode(parsedResponse); err != nil {
		return fmt.Errorf("Internal API error (%v)", resp.StatusCode)
	} else {
		return fmt.Errorf(parsedResponse.Message)
	}

}

func doRequest(client *http.Client, config *config.Config, request *http.Request) (*http.Response, error) {
	encodedSecret := base64.StdEncoding.EncodeToString([]byte(config.Secret))
	request.Header.Set(secretHeaderName, encodedSecret)

	response, err := client.Do(request)
	if err != nil {
		return nil, fmt.Errorf("Internal API unreachable")
	}

	if err := parseError(response); err != nil {
		return nil, err
	}

	return response, nil
}