Files
probo/pkg/connector/apikey.go
Sacha Al Himdani 9ac71f948f Update contact email to hello@probo.com
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
2026-06-09 16:45:23 +02:00

179 lines
5.5 KiB
Go

// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
package connector
import (
"context"
"encoding/json"
"net/http"
"go.gearno.de/kit/httpclient"
)
type APIKeyConnection struct {
APIKey string `json:"api_key"`
// Header selects how the API key is presented on outbound requests.
// Empty (the default) sends it as `Authorization: Bearer <key>`,
// which every OAuth-style and standard API-key connector uses. A
// non-empty value (e.g. "x-api-key") sends the raw key in that
// request header instead and omits Authorization entirely —
// required by providers such as Anthropic that reject Bearer auth
// and return 400 when both x-api-key and Authorization are present.
// It is populated from the provider Registration at connector
// creation time.
Header string `json:"header,omitempty"`
// BasicAuth, when true, presents the API key as the username of an
// HTTP Basic credential with an empty password (`Authorization:
// Basic base64(<key>:)`) — required by providers such as Cursor
// whose Admin API documents Basic auth and rejects Bearer tokens.
// It is mutually exclusive with Header and is populated from the
// provider Registration at connector creation time.
BasicAuth bool `json:"basic_auth,omitempty"`
// Scheme selects a non-Bearer Authorization scheme: when non-empty
// the key is sent as `Authorization: <Scheme> <key>` instead of
// `Authorization: Bearer <key>` — required by providers such as Okta
// whose API tokens use the `SSWS` scheme. It is mutually exclusive
// with Header and BasicAuth and is populated from the provider
// Registration at connector creation time.
Scheme string `json:"scheme,omitempty"`
}
var _ Connection = (*APIKeyConnection)(nil)
func (c *APIKeyConnection) Type() ProtocolType {
return ProtocolAPIKey
}
func (c *APIKeyConnection) Scopes() []string {
return nil
}
func (c *APIKeyConnection) Client(ctx context.Context) (*http.Client, error) {
underlying := httpclient.DefaultPooledTransport(httpclient.WithSSRFProtection())
if c.BasicAuth {
return &http.Client{
Transport: &basicAuthTransport{
username: c.APIKey,
underlying: underlying,
},
}, nil
}
if c.Header != "" {
return &http.Client{
Transport: &apiKeyHeaderTransport{
header: c.Header,
value: c.APIKey,
underlying: underlying,
},
}, nil
}
if c.Scheme != "" {
return &http.Client{
Transport: &schemeAuthTransport{
scheme: c.Scheme,
token: c.APIKey,
underlying: underlying,
},
}, nil
}
return &http.Client{
Transport: &oauth2Transport{
token: c.APIKey,
tokenType: "Bearer",
underlying: underlying,
},
}, nil
}
// schemeAuthTransport presents the API key in the Authorization header
// under a non-Bearer scheme (`Authorization: <scheme> <token>`).
// Providers such as Okta document the `SSWS` scheme for their API tokens
// and reject Bearer, so neither oauth2Transport (which hardcodes Bearer)
// nor apiKeyHeaderTransport (which sets a non-Authorization header) fits.
type schemeAuthTransport struct {
scheme string
token string
underlying http.RoundTripper
}
func (t *schemeAuthTransport) RoundTrip(req *http.Request) (*http.Response, error) {
req2 := req.Clone(req.Context())
req2.Header.Set("Authorization", t.scheme+" "+t.token)
return t.underlying.RoundTrip(req2)
}
// apiKeyHeaderTransport injects the API key into a custom request header
// (for example "x-api-key") and, unlike oauth2Transport, never sets
// Authorization. Providers such as Anthropic require the key in their
// own header and reject requests that carry both that header and
// Authorization.
type apiKeyHeaderTransport struct {
header string
value string
underlying http.RoundTripper
}
func (t *apiKeyHeaderTransport) RoundTrip(req *http.Request) (*http.Response, error) {
req2 := req.Clone(req.Context())
req2.Header.Set(t.header, t.value)
return t.underlying.RoundTrip(req2)
}
// basicAuthTransport presents the API key as the username of an HTTP
// Basic credential with an empty password. Providers such as Cursor
// document `-u <key>:` Basic auth for their Admin API and reject Bearer
// tokens, so neither oauth2Transport nor apiKeyHeaderTransport fits.
type basicAuthTransport struct {
username string
underlying http.RoundTripper
}
func (t *basicAuthTransport) RoundTrip(req *http.Request) (*http.Response, error) {
req2 := req.Clone(req.Context())
req2.SetBasicAuth(t.username, "")
return t.underlying.RoundTrip(req2)
}
func (c APIKeyConnection) MarshalJSON() ([]byte, error) {
type Alias APIKeyConnection
return json.Marshal(&struct {
Type string `json:"type"`
Alias
}{
Type: string(ProtocolAPIKey),
Alias: Alias(c),
})
}
func (c *APIKeyConnection) UnmarshalJSON(data []byte) error {
type Alias APIKeyConnection
aux := &struct {
*Alias
}{
Alias: (*Alias)(c),
}
return json.Unmarshal(data, &aux)
}