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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
package api
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"regexp"
"strings"
"gitlab.com/gitlab-org/cli/api"
"gitlab.com/gitlab-org/cli/internal/config"
)
const (
// stringArrayRegexPattern represents a pattern to find strings like: [item, item_two]
stringArrayRegexPattern = `^\[\s*([[:lower:]_]+(\s*,\s*[[:lower:]_]+)*)?\s*\]$`
)
var strArrayRegex = regexp.MustCompile(stringArrayRegexPattern)
func httpRequest(client *api.Client, config config.Config, hostname string, method string, p string, params interface{}, headers []string) (*http.Response, error) {
var err error
isGraphQL := p == "graphql"
if client.Lab().BaseURL().Host != hostname || isGraphQL {
client, err = api.NewClientWithCfg(hostname, config, isGraphQL)
if err != nil {
return nil, err
}
}
baseURL := client.Lab().BaseURL()
baseURLStr := baseURL.String()
if strings.Contains(p, "://") {
baseURLStr = p
} else if isGraphQL {
baseURL.Path = strings.Replace(baseURL.Path, "api/v4/", "", 1)
baseURLStr = baseURL.String()
} else {
baseURLStr = baseURLStr + strings.TrimPrefix(p, "/")
}
var body io.Reader
var bodyIsJSON bool
switch pp := params.(type) {
case map[string]interface{}:
if strings.EqualFold(method, http.MethodGet) || strings.EqualFold(method, http.MethodDelete) {
baseURLStr, err = parseQuery(baseURLStr, pp)
if err != nil {
return nil, err
}
} else {
for key, value := range pp {
if vv, ok := value.([]byte); ok {
pp[key] = string(vv)
}
if strValue, ok := value.(string); ok && strArrayRegex.MatchString(strValue) {
pp[key] = parseStringArrayField(strValue)
}
}
if isGraphQL {
pp = groupGraphQLVariables(pp)
}
b, err := json.Marshal(pp)
if err != nil {
return nil, fmt.Errorf("error serializing parameters: %w", err)
}
body = bytes.NewBuffer(b)
bodyIsJSON = true
}
case io.Reader:
body = pp
case nil:
body = nil
default:
return nil, fmt.Errorf("unrecognized parameter type: %v", params)
}
baseURL, _ = url.Parse(baseURLStr)
req, err := api.NewHTTPRequest(client, method, baseURL, body, headers, bodyIsJSON)
if err != nil {
return nil, err
}
return client.HTTPClient().Do(req)
}
func groupGraphQLVariables(params map[string]interface{}) map[string]interface{} {
topLevel := make(map[string]interface{})
variables := make(map[string]interface{})
for key, val := range params {
switch key {
case "query", "operationName":
topLevel[key] = val
default:
variables[key] = val
}
}
if len(variables) > 0 {
topLevel["variables"] = variables
}
return topLevel
}
func parseQuery(path string, params map[string]interface{}) (string, error) {
if len(params) == 0 {
return path, nil
}
q := url.Values{}
for key, value := range params {
switch v := value.(type) {
case string:
q.Add(key, v)
case []byte:
q.Add(key, string(v))
case nil:
q.Add(key, "")
case int:
q.Add(key, fmt.Sprintf("%d", v))
case bool:
q.Add(key, fmt.Sprintf("%v", v))
default:
return "", fmt.Errorf("unknown type %v", v)
}
}
sep := "?"
if strings.ContainsRune(path, '?') {
sep = "&"
}
return path + sep + q.Encode(), nil
}
func parseStringArrayField(strValue string) []string {
strValue = strings.TrimPrefix(strValue, "[")
strValue = strings.TrimSuffix(strValue, "]")
strArrayElements := strings.Split(strValue, ",")
var strSlice []string
for _, element := range strArrayElements {
element = strings.TrimSpace(element)
element = strings.Trim(element, `"`)
strSlice = append(strSlice, element)
}
return strSlice
}
|