| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- Copyright 2024 Docker Compose CLI authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package desktop
- import (
- "context"
- "encoding/json"
- "fmt"
- "io"
- "net"
- "net/http"
- "strings"
- "github.com/docker/compose/v2/internal"
- "github.com/docker/compose/v2/internal/memnet"
- "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"
- )
- // identify this client in the logs
- var userAgent = "compose/" + internal.Version
- // Client for integration with Docker Desktop features.
- type Client struct {
- apiEndpoint string
- client *http.Client
- }
- // NewClient creates a Desktop integration client for the provided in-memory
- // socket address (AF_UNIX or named pipe).
- func NewClient(apiEndpoint string) *Client {
- var transport http.RoundTripper = &http.Transport{
- DisableCompression: true,
- DialContext: func(ctx context.Context, _, _ string) (net.Conn, error) {
- return memnet.DialEndpoint(ctx, apiEndpoint)
- },
- }
- transport = otelhttp.NewTransport(transport)
- return &Client{
- apiEndpoint: apiEndpoint,
- client: &http.Client{Transport: transport},
- }
- }
- func (c *Client) Endpoint() string {
- return c.apiEndpoint
- }
- // Close releases any open connections.
- func (c *Client) Close() error {
- c.client.CloseIdleConnections()
- return nil
- }
- type PingResponse struct {
- ServerTime int64 `json:"serverTime"`
- }
- // Ping is a minimal API used to ensure that the server is available.
- func (c *Client) Ping(ctx context.Context) (*PingResponse, error) {
- req, err := c.newRequest(ctx, http.MethodGet, "/ping", http.NoBody)
- if err != nil {
- return nil, err
- }
- resp, err := c.client.Do(req)
- if err != nil {
- return nil, err
- }
- defer func() {
- _ = resp.Body.Close()
- }()
- if resp.StatusCode != http.StatusOK {
- return nil, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
- }
- var ret PingResponse
- if err := json.NewDecoder(resp.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return &ret, nil
- }
- type FeatureFlagResponse map[string]FeatureFlagValue
- type FeatureFlagValue struct {
- Enabled bool `json:"enabled"`
- }
- func (c *Client) FeatureFlags(ctx context.Context) (FeatureFlagResponse, error) {
- req, err := c.newRequest(ctx, http.MethodGet, "/features", http.NoBody)
- if err != nil {
- return nil, err
- }
- resp, err := c.client.Do(req)
- if err != nil {
- return nil, err
- }
- defer func() {
- _ = resp.Body.Close()
- }()
- if resp.StatusCode != http.StatusOK {
- return nil, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
- }
- var ret FeatureFlagResponse
- if err := json.NewDecoder(resp.Body).Decode(&ret); err != nil {
- return nil, err
- }
- return ret, nil
- }
- func (c *Client) newRequest(ctx context.Context, method, path string, body io.Reader) (*http.Request, error) {
- req, err := http.NewRequestWithContext(ctx, method, backendURL(path), body)
- if err != nil {
- return nil, err
- }
- req.Header.Set("User-Agent", userAgent)
- return req, nil
- }
- // backendURL generates a URL for the given API path.
- //
- // NOTE: Custom transport handles communication. The host is to create a valid
- // URL for the Go http.Client that is also descriptive in error/logs.
- func backendURL(path string) string {
- return "http://docker-desktop/" + strings.TrimPrefix(path, "/")
- }
|