|
| 1 | +// Package http provides a common HTTP client with standardized headers and error handling |
| 2 | +package http |
| 3 | + |
| 4 | +import ( |
| 5 | + "bytes" |
| 6 | + "context" |
| 7 | + "encoding/json" |
| 8 | + "fmt" |
| 9 | + "io" |
| 10 | + "net/http" |
| 11 | + "net/url" |
| 12 | + "strings" |
| 13 | +) |
| 14 | + |
| 15 | +// Client is an HTTP client that handles common operations for Buildkite API requests |
| 16 | +type Client struct { |
| 17 | + baseURL string |
| 18 | + token string |
| 19 | + userAgent string |
| 20 | + client *http.Client |
| 21 | +} |
| 22 | + |
| 23 | +// ClientOption is a function that modifies a Client |
| 24 | +type ClientOption func(*Client) |
| 25 | + |
| 26 | +// WithBaseURL sets the base URL for API requests |
| 27 | +func WithBaseURL(baseURL string) ClientOption { |
| 28 | + return func(c *Client) { |
| 29 | + c.baseURL = baseURL |
| 30 | + } |
| 31 | +} |
| 32 | + |
| 33 | +// WithUserAgent sets the User-Agent header for requests |
| 34 | +func WithUserAgent(userAgent string) ClientOption { |
| 35 | + return func(c *Client) { |
| 36 | + c.userAgent = userAgent |
| 37 | + } |
| 38 | +} |
| 39 | + |
| 40 | +// WithHTTPClient sets the underlying HTTP client |
| 41 | +func WithHTTPClient(client *http.Client) ClientOption { |
| 42 | + return func(c *Client) { |
| 43 | + c.client = client |
| 44 | + } |
| 45 | +} |
| 46 | + |
| 47 | +// NewClient creates a new HTTP client with the given token and options |
| 48 | +func NewClient(token string, opts ...ClientOption) *Client { |
| 49 | + c := &Client{ |
| 50 | + baseURL: "https://api.buildkite.com", |
| 51 | + token: token, |
| 52 | + userAgent: "buildkite-cli", |
| 53 | + client: http.DefaultClient, |
| 54 | + } |
| 55 | + |
| 56 | + for _, opt := range opts { |
| 57 | + opt(c) |
| 58 | + } |
| 59 | + |
| 60 | + return c |
| 61 | +} |
| 62 | + |
| 63 | +// Get performs a GET request to the specified endpoint |
| 64 | +func (c *Client) Get(ctx context.Context, endpoint string, v interface{}) error { |
| 65 | + return c.Do(ctx, http.MethodGet, endpoint, nil, v) |
| 66 | +} |
| 67 | + |
| 68 | +// Post performs a POST request to the specified endpoint with the given body |
| 69 | +func (c *Client) Post(ctx context.Context, endpoint string, body interface{}, v interface{}) error { |
| 70 | + return c.Do(ctx, http.MethodPost, endpoint, body, v) |
| 71 | +} |
| 72 | + |
| 73 | +// Put performs a PUT request to the specified endpoint with the given body |
| 74 | +func (c *Client) Put(ctx context.Context, endpoint string, body interface{}, v interface{}) error { |
| 75 | + return c.Do(ctx, http.MethodPut, endpoint, body, v) |
| 76 | +} |
| 77 | + |
| 78 | +// Delete performs a DELETE request to the specified endpoint |
| 79 | +func (c *Client) Delete(ctx context.Context, endpoint string, v interface{}) error { |
| 80 | + return c.Do(ctx, http.MethodDelete, endpoint, nil, v) |
| 81 | +} |
| 82 | + |
| 83 | +// Do performs an HTTP request with the given method, endpoint, and body |
| 84 | +func (c *Client) Do(ctx context.Context, method, endpoint string, body interface{}, v interface{}) error { |
| 85 | + // Ensure endpoint starts with "/" |
| 86 | + if !strings.HasPrefix(endpoint, "/") { |
| 87 | + endpoint = "/" + endpoint |
| 88 | + } |
| 89 | + |
| 90 | + // Create the request URL |
| 91 | + reqURL, err := url.JoinPath(c.baseURL, endpoint) |
| 92 | + if err != nil { |
| 93 | + return fmt.Errorf("failed to create request URL: %w", err) |
| 94 | + } |
| 95 | + |
| 96 | + // Create the request body |
| 97 | + var bodyReader io.Reader |
| 98 | + if body != nil { |
| 99 | + bodyBytes, err := json.Marshal(body) |
| 100 | + if err != nil { |
| 101 | + return fmt.Errorf("failed to marshal request body: %w", err) |
| 102 | + } |
| 103 | + bodyReader = bytes.NewReader(bodyBytes) |
| 104 | + } |
| 105 | + |
| 106 | + // Create the request |
| 107 | + req, err := http.NewRequestWithContext(ctx, method, reqURL, bodyReader) |
| 108 | + if err != nil { |
| 109 | + return fmt.Errorf("failed to create request: %w", err) |
| 110 | + } |
| 111 | + |
| 112 | + // Set common headers |
| 113 | + req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.token)) |
| 114 | + req.Header.Set("User-Agent", c.userAgent) |
| 115 | + if body != nil { |
| 116 | + req.Header.Set("Content-Type", "application/json") |
| 117 | + } |
| 118 | + req.Header.Set("Accept", "application/json") |
| 119 | + |
| 120 | + // Execute the request |
| 121 | + resp, err := c.client.Do(req) |
| 122 | + if err != nil { |
| 123 | + return fmt.Errorf("failed to execute request: %w", err) |
| 124 | + } |
| 125 | + defer resp.Body.Close() |
| 126 | + |
| 127 | + // Read response body |
| 128 | + respBody, err := io.ReadAll(resp.Body) |
| 129 | + if err != nil { |
| 130 | + return fmt.Errorf("failed to read response body: %w", err) |
| 131 | + } |
| 132 | + |
| 133 | + // Check for error status |
| 134 | + if resp.StatusCode >= 400 { |
| 135 | + return &ErrorResponse{ |
| 136 | + StatusCode: resp.StatusCode, |
| 137 | + Status: resp.Status, |
| 138 | + URL: reqURL, |
| 139 | + Body: respBody, |
| 140 | + } |
| 141 | + } |
| 142 | + |
| 143 | + // Parse the response if a target was provided |
| 144 | + if v != nil && len(respBody) > 0 { |
| 145 | + if err := json.Unmarshal(respBody, v); err != nil { |
| 146 | + return fmt.Errorf("failed to unmarshal response: %w", err) |
| 147 | + } |
| 148 | + } |
| 149 | + |
| 150 | + return nil |
| 151 | +} |
| 152 | + |
| 153 | +// ErrorResponse represents an error response from the API |
| 154 | +type ErrorResponse struct { |
| 155 | + StatusCode int |
| 156 | + Status string |
| 157 | + URL string |
| 158 | + Body []byte |
| 159 | +} |
| 160 | + |
| 161 | +// Error implements the error interface |
| 162 | +func (e *ErrorResponse) Error() string { |
| 163 | + msg := fmt.Sprintf("HTTP request failed: %d %s (%s)", e.StatusCode, e.Status, e.URL) |
| 164 | + if len(e.Body) > 0 { |
| 165 | + msg += fmt.Sprintf(": %s", e.Body) |
| 166 | + } |
| 167 | + return msg |
| 168 | +} |
0 commit comments