mirror of
https://github.com/lxc/incus
synced 2026-08-02 05:26:46 +00:00
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package incus
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"github.com/lxc/incus/v7/shared/simplestreams"
|
|
)
|
|
|
|
// ProtocolSimpleStreams implements a SimpleStreams API client.
|
|
type ProtocolSimpleStreams struct {
|
|
ssClient *simplestreams.SimpleStreams
|
|
|
|
http *http.Client
|
|
httpHost string
|
|
httpUserAgent string
|
|
httpCertificate string
|
|
|
|
tempPath string
|
|
}
|
|
|
|
// Disconnect is a no-op for simplestreams.
|
|
func (r *ProtocolSimpleStreams) Disconnect() {
|
|
}
|
|
|
|
// GetConnectionInfo returns the basic connection information used to interact with the server.
|
|
func (r *ProtocolSimpleStreams) GetConnectionInfo() (*ConnectionInfo, error) {
|
|
info := ConnectionInfo{}
|
|
info.Addresses = []string{r.httpHost}
|
|
info.Certificate = r.httpCertificate
|
|
info.Protocol = "simplestreams"
|
|
info.URL = r.httpHost
|
|
|
|
return &info, nil
|
|
}
|
|
|
|
// GetHTTPClient returns the http client used for the connection. This can be used to set custom http options.
|
|
func (r *ProtocolSimpleStreams) GetHTTPClient() (*http.Client, error) {
|
|
if r.http == nil {
|
|
return nil, errors.New("HTTP client isn't set, bad connection")
|
|
}
|
|
|
|
return r.http, nil
|
|
}
|
|
|
|
// DoHTTP performs a Request.
|
|
func (r *ProtocolSimpleStreams) DoHTTP(req *http.Request) (*http.Response, error) {
|
|
// Set the user agent
|
|
if r.httpUserAgent != "" {
|
|
req.Header.Set("User-Agent", r.httpUserAgent)
|
|
}
|
|
|
|
return r.http.Do(req)
|
|
}
|