mirror of
https://github.com/coder/coder.git
synced 2026-06-06 14:38:23 +00:00
668 lines
19 KiB
Go
668 lines
19 KiB
Go
package chatd
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"golang.org/x/xerrors"
|
|
|
|
"cdr.dev/slog/v3"
|
|
"github.com/coder/coder/v2/coderd/database"
|
|
"github.com/coder/coder/v2/coderd/util/ptr"
|
|
osschatd "github.com/coder/coder/v2/coderd/x/chatd"
|
|
"github.com/coder/coder/v2/codersdk"
|
|
"github.com/coder/quartz"
|
|
"github.com/coder/websocket"
|
|
)
|
|
|
|
// RelaySourceHeader marks replica-relayed stream requests.
|
|
const RelaySourceHeader = "X-Coder-Relay-Source-Replica"
|
|
|
|
const (
|
|
authorizationHeader = "Authorization"
|
|
cookieHeader = "Cookie"
|
|
|
|
// relayDrainTimeout is how long an established relay is
|
|
// kept open after the chat leaves running state, giving
|
|
// buffered snapshot events time to be forwarded before
|
|
// the relay is torn down.
|
|
relayDrainTimeout = 200 * time.Millisecond
|
|
)
|
|
|
|
// MultiReplicaSubscribeConfig holds the dependencies for multi-replica chat
|
|
// subscription. ReplicaIDFn is called lazily because the
|
|
// replica ID may not be known at construction time.
|
|
//
|
|
// DialerFn, when set, overrides the default WebSocket relay
|
|
// dialer. This is used in tests to inject mock relay behavior
|
|
// without requiring real HTTP servers.
|
|
type MultiReplicaSubscribeConfig struct {
|
|
ResolveReplicaAddress func(context.Context, uuid.UUID) (string, bool)
|
|
ReplicaHTTPClient *http.Client
|
|
ReplicaIDFn func() uuid.UUID
|
|
DialerFn func(
|
|
ctx context.Context,
|
|
chatID uuid.UUID,
|
|
workerID uuid.UUID,
|
|
requestHeader http.Header,
|
|
) (
|
|
snapshot []codersdk.ChatStreamEvent,
|
|
parts <-chan codersdk.ChatStreamEvent,
|
|
cancel func(),
|
|
err error,
|
|
)
|
|
// Clock is used for creating timers. In production use
|
|
// quartz.NewReal(); in tests use quartz.NewMock(t) to
|
|
// control reconnect timing deterministically.
|
|
Clock quartz.Clock
|
|
}
|
|
|
|
// dial returns the dialer function to use for relay connections.
|
|
// If DialerFn is set (e.g. in tests), it takes precedence.
|
|
// Otherwise, dialRelay is used with the real MultiReplicaSubscribeConfig dependencies.
|
|
// Returns nil when no relay capability is configured.
|
|
func (c MultiReplicaSubscribeConfig) dial() func(
|
|
ctx context.Context,
|
|
chatID uuid.UUID,
|
|
workerID uuid.UUID,
|
|
requestHeader http.Header,
|
|
) (
|
|
[]codersdk.ChatStreamEvent,
|
|
<-chan codersdk.ChatStreamEvent,
|
|
func(),
|
|
error,
|
|
) {
|
|
if c.DialerFn != nil {
|
|
return c.DialerFn
|
|
}
|
|
if c.ResolveReplicaAddress == nil {
|
|
return nil
|
|
}
|
|
return func(
|
|
ctx context.Context,
|
|
chatID uuid.UUID,
|
|
workerID uuid.UUID,
|
|
requestHeader http.Header,
|
|
) (
|
|
[]codersdk.ChatStreamEvent,
|
|
<-chan codersdk.ChatStreamEvent,
|
|
func(),
|
|
error,
|
|
) {
|
|
return dialRelay(ctx, chatID, workerID, requestHeader, c, c.clock())
|
|
}
|
|
}
|
|
|
|
// clock returns the quartz.Clock to use. Defaults to a real clock
|
|
// when not set.
|
|
func (c MultiReplicaSubscribeConfig) clock() quartz.Clock {
|
|
if c.Clock != nil {
|
|
return c.Clock
|
|
}
|
|
return quartz.NewReal()
|
|
}
|
|
|
|
// NewMultiReplicaSubscribeFn returns a SubscribeFn that manages
|
|
// relay connections to remote replicas and returns relay
|
|
// message_part events only. OSS handles pubsub subscription,
|
|
// message catch-up, queue updates, status forwarding, and local
|
|
// parts merging.
|
|
//
|
|
//nolint:gocognit // Complexity is inherent to the multi-source merge loop.
|
|
func NewMultiReplicaSubscribeFn(
|
|
cfg MultiReplicaSubscribeConfig,
|
|
) osschatd.SubscribeFn {
|
|
return func(ctx context.Context, params osschatd.SubscribeFnParams) <-chan codersdk.ChatStreamEvent {
|
|
chatID := params.ChatID
|
|
requestHeader := params.RequestHeader
|
|
logger := params.Logger
|
|
|
|
var relayCancel func()
|
|
var relayParts <-chan codersdk.ChatStreamEvent
|
|
|
|
// If the chat is currently running on a different worker
|
|
// and we have a remote parts provider, open an initial
|
|
// relay synchronously so the caller gets in-flight
|
|
// message_part events right away.
|
|
var initialRelaySnapshot []codersdk.ChatStreamEvent
|
|
if params.Chat.Status == database.ChatStatusRunning &&
|
|
params.Chat.WorkerID.Valid &&
|
|
params.Chat.WorkerID.UUID != params.WorkerID &&
|
|
cfg.dial() != nil {
|
|
snapshot, parts, cancel, err := cfg.dial()(ctx, chatID, params.Chat.WorkerID.UUID, requestHeader)
|
|
if err == nil {
|
|
relayCancel = cancel
|
|
relayParts = parts
|
|
// Collect relay message_parts to forward at the
|
|
// start of the merge goroutine.
|
|
for _, event := range snapshot {
|
|
if event.Type == codersdk.ChatStreamEventTypeMessagePart {
|
|
initialRelaySnapshot = append(initialRelaySnapshot, event)
|
|
}
|
|
}
|
|
} else {
|
|
logger.Warn(ctx, "failed to open initial relay for chat stream",
|
|
slog.F("chat_id", chatID),
|
|
slog.Error(err),
|
|
)
|
|
}
|
|
}
|
|
|
|
// Merge all event sources.
|
|
mergedEvents := make(chan codersdk.ChatStreamEvent, 128)
|
|
// Channel for async relay establishment.
|
|
type relayResult struct {
|
|
parts <-chan codersdk.ChatStreamEvent
|
|
cancel func()
|
|
workerID uuid.UUID // the worker this dial targeted
|
|
}
|
|
relayReadyCh := make(chan relayResult, 4)
|
|
|
|
// Per-dial context so in-flight dials can be canceled when
|
|
// a new dial is initiated or the relay is closed.
|
|
var dialCancel context.CancelFunc
|
|
|
|
// expectedWorkerID tracks which replica we expect the next
|
|
// relay result to target. Stale results are discarded.
|
|
var expectedWorkerID uuid.UUID
|
|
|
|
// Reconnect timer state.
|
|
var reconnectTimer *quartz.Timer
|
|
var reconnectCh <-chan time.Time
|
|
|
|
// drainAndClose is set when the chat transitions away
|
|
// from running while a relay dial is still in progress.
|
|
// Instead of canceling the dial immediately, we let it
|
|
// complete so the snapshot of buffered message_parts
|
|
// can be forwarded to the subscriber.
|
|
var drainAndClose bool
|
|
|
|
// Drain timer state. When the relay connects in
|
|
// drain-and-close mode, a short timer is started.
|
|
// During this window the normal relayPartsCh case
|
|
// forwards buffered snapshot events. When the timer
|
|
// fires the relay is torn down.
|
|
var drainTimer *quartz.Timer
|
|
var drainTimerCh <-chan time.Time
|
|
|
|
// Helper to close relay and stop any pending reconnect
|
|
// timer.
|
|
closeRelay := func() {
|
|
// Cancel any in-flight dial goroutine first.
|
|
if dialCancel != nil {
|
|
dialCancel()
|
|
dialCancel = nil
|
|
}
|
|
// Drain all buffered relay results from canceled dials.
|
|
for {
|
|
select {
|
|
case result := <-relayReadyCh:
|
|
if result.cancel != nil {
|
|
result.cancel()
|
|
}
|
|
default:
|
|
goto drained
|
|
}
|
|
}
|
|
drained:
|
|
expectedWorkerID = uuid.Nil
|
|
if relayCancel != nil {
|
|
relayCancel()
|
|
relayCancel = nil
|
|
}
|
|
relayParts = nil
|
|
if reconnectTimer != nil {
|
|
reconnectTimer.Stop()
|
|
reconnectTimer = nil
|
|
reconnectCh = nil
|
|
}
|
|
if drainTimer != nil {
|
|
drainTimer.Stop()
|
|
drainTimer = nil
|
|
drainTimerCh = nil
|
|
}
|
|
drainAndClose = false
|
|
}
|
|
|
|
// openRelayAsync dials the remote replica in a background
|
|
// goroutine and delivers the result on relayReadyCh so the
|
|
// main select loop is never blocked by network I/O.
|
|
openRelayAsync := func(workerID uuid.UUID) {
|
|
if cfg.dial() == nil {
|
|
return
|
|
}
|
|
closeRelay()
|
|
// Create a per-dial context so this goroutine is
|
|
// canceled if closeRelay() or openRelayAsync() is
|
|
// called again before the dial completes.
|
|
var dialCtx context.Context
|
|
dialCtx, dialCancel = context.WithCancel(ctx)
|
|
expectedWorkerID = workerID
|
|
go func() {
|
|
snapshot, parts, cancel, err := cfg.dial()(dialCtx, chatID, workerID, requestHeader)
|
|
if err != nil {
|
|
// Don't log context-canceled errors
|
|
// since they are expected when a dial is
|
|
// superseded by a newer one.
|
|
if dialCtx.Err() == nil {
|
|
logger.Warn(ctx, "failed to open relay for message parts",
|
|
slog.F("chat_id", chatID),
|
|
slog.F("worker_id", workerID),
|
|
slog.Error(err),
|
|
)
|
|
}
|
|
// Send an empty result so the merge loop
|
|
// can schedule a reconnect attempt.
|
|
select {
|
|
case relayReadyCh <- relayResult{workerID: workerID}:
|
|
case <-dialCtx.Done():
|
|
}
|
|
return
|
|
} // If the dial context was canceled while the
|
|
// dial was in progress, discard the result to
|
|
// avoid starting a wrappedParts goroutine for
|
|
// a stale connection.
|
|
if dialCtx.Err() != nil {
|
|
cancel()
|
|
return
|
|
}
|
|
// Wrap the relay channel so snapshot parts
|
|
// are delivered through the same channel as
|
|
// live parts. This goroutine only forwards
|
|
// events — it does not own the relay
|
|
// lifecycle. When dialCtx is canceled it
|
|
// simply returns, closing wrappedParts via
|
|
// its defer. The cancel() is called by
|
|
// whoever canceled dialCtx (closeRelay or
|
|
// the send-fallback select below).
|
|
wrappedParts := make(chan codersdk.ChatStreamEvent, 128)
|
|
go func() {
|
|
defer close(wrappedParts)
|
|
for _, event := range snapshot {
|
|
if event.Type == codersdk.ChatStreamEventTypeMessagePart {
|
|
select {
|
|
case wrappedParts <- event:
|
|
case <-dialCtx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
for {
|
|
select {
|
|
case event, ok := <-parts:
|
|
if !ok {
|
|
return
|
|
}
|
|
select {
|
|
case wrappedParts <- event:
|
|
case <-dialCtx.Done():
|
|
return
|
|
}
|
|
case <-dialCtx.Done():
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
select {
|
|
case relayReadyCh <- relayResult{parts: wrappedParts, cancel: cancel, workerID: workerID}:
|
|
case <-dialCtx.Done():
|
|
cancel()
|
|
}
|
|
}()
|
|
}
|
|
|
|
// scheduleRelayReconnect arms a short timer so the select
|
|
// loop can re-check chat status and reopen the relay
|
|
// without spinning in a tight loop.
|
|
scheduleRelayReconnect := func() {
|
|
if cfg.dial() == nil {
|
|
return
|
|
}
|
|
if reconnectTimer != nil {
|
|
reconnectTimer.Stop()
|
|
}
|
|
reconnectTimer = cfg.clock().NewTimer(500*time.Millisecond, "reconnect")
|
|
reconnectCh = reconnectTimer.C
|
|
}
|
|
|
|
statusNotifications := params.StatusNotifications
|
|
go func() {
|
|
defer close(mergedEvents)
|
|
defer closeRelay()
|
|
|
|
// Forward any initial relay snapshot parts
|
|
// collected synchronously above.
|
|
for _, event := range initialRelaySnapshot {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case mergedEvents <- event:
|
|
}
|
|
}
|
|
|
|
for {
|
|
relayPartsCh := relayParts
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case result := <-relayReadyCh:
|
|
// Discard stale relay results from a
|
|
// previous dial that was superseded.
|
|
if result.workerID != expectedWorkerID {
|
|
if result.cancel != nil {
|
|
result.cancel()
|
|
}
|
|
continue
|
|
}
|
|
// A nil parts channel signals the dial
|
|
// failed — schedule a retry.
|
|
if result.parts == nil {
|
|
if drainAndClose {
|
|
// Dial failed and we were only
|
|
// waiting to drain — nothing to do.
|
|
drainAndClose = false
|
|
} else {
|
|
scheduleRelayReconnect()
|
|
}
|
|
continue
|
|
} // An async relay dial completed; swap
|
|
// in the new relay channel.
|
|
if relayCancel != nil {
|
|
relayCancel()
|
|
}
|
|
relayParts = result.parts
|
|
relayCancel = result.cancel
|
|
if drainAndClose {
|
|
// The chat is no longer running on
|
|
// the remote worker, but the dial
|
|
// completed. Verify no new worker
|
|
// has claimed the chat before we
|
|
// drain stale parts.
|
|
currentChat, dbErr := params.DB.GetChatByID(ctx, chatID)
|
|
if dbErr != nil {
|
|
logger.Warn(ctx, "failed to check chat status for relay drain",
|
|
slog.F("chat_id", chatID),
|
|
slog.Error(dbErr),
|
|
)
|
|
}
|
|
if dbErr == nil && currentChat.Status == database.ChatStatusRunning &&
|
|
currentChat.WorkerID.Valid &&
|
|
currentChat.WorkerID.UUID != params.WorkerID {
|
|
// A new worker picked up the chat;
|
|
// discard the stale relay and let
|
|
// openRelayAsync handle the new one.
|
|
closeRelay()
|
|
} else {
|
|
// Chat is still idle — drain the
|
|
// buffered snapshot before closing.
|
|
if drainTimer != nil {
|
|
drainTimer.Stop()
|
|
}
|
|
drainTimer = cfg.clock().NewTimer(relayDrainTimeout, "drain")
|
|
drainTimerCh = drainTimer.C
|
|
drainAndClose = false
|
|
}
|
|
}
|
|
case <-reconnectCh:
|
|
reconnectCh = nil
|
|
// Re-check whether the chat is still
|
|
// running on a remote worker before
|
|
// reconnecting.
|
|
currentChat, chatErr := params.DB.GetChatByID(ctx, chatID)
|
|
if chatErr != nil {
|
|
logger.Warn(ctx, "failed to get chat for relay reconnect",
|
|
slog.F("chat_id", chatID),
|
|
slog.Error(chatErr),
|
|
)
|
|
// Retry on transient DB errors to
|
|
// avoid permanently stalling the
|
|
// stream.
|
|
scheduleRelayReconnect()
|
|
continue
|
|
}
|
|
if currentChat.Status == database.ChatStatusRunning &&
|
|
currentChat.WorkerID.Valid && currentChat.WorkerID.UUID != params.WorkerID {
|
|
openRelayAsync(currentChat.WorkerID.UUID)
|
|
}
|
|
case sn, ok := <-statusNotifications:
|
|
if !ok {
|
|
statusNotifications = nil
|
|
continue
|
|
}
|
|
if sn.Status == database.ChatStatusRunning && sn.WorkerID != uuid.Nil && sn.WorkerID != params.WorkerID {
|
|
openRelayAsync(sn.WorkerID)
|
|
} else {
|
|
switch {
|
|
case dialCancel != nil && relayParts == nil:
|
|
// In-progress dial: let it complete
|
|
// so its snapshot can be forwarded.
|
|
drainAndClose = true
|
|
case relayParts != nil:
|
|
// Active relay: give it a short
|
|
// window to deliver any remaining
|
|
// buffered parts before closing.
|
|
if drainTimer != nil {
|
|
drainTimer.Stop()
|
|
}
|
|
drainTimer = cfg.clock().NewTimer(relayDrainTimeout, "drain")
|
|
drainTimerCh = drainTimer.C
|
|
default:
|
|
closeRelay()
|
|
}
|
|
}
|
|
case <-drainTimerCh:
|
|
drainTimerCh = nil
|
|
drainTimer = nil
|
|
closeRelay()
|
|
drainTimerCh = nil
|
|
drainTimer = nil
|
|
closeRelay()
|
|
case event, ok := <-relayPartsCh:
|
|
if !ok {
|
|
if relayCancel != nil {
|
|
relayCancel()
|
|
relayCancel = nil
|
|
}
|
|
relayParts = nil
|
|
// Schedule reconnection instead of
|
|
// giving up.
|
|
scheduleRelayReconnect()
|
|
continue
|
|
}
|
|
// Only forward message_part events from
|
|
// relay.
|
|
if event.Type == codersdk.ChatStreamEventTypeMessagePart {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case mergedEvents <- event:
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
// Cleanup is driven by ctx cancellation: the merge
|
|
// goroutine owns all relay state (reconnectTimer,
|
|
// relayCancel, dialCancel, etc.) and tears it down
|
|
// via defer closeRelay() when ctx is done.
|
|
return mergedEvents
|
|
}
|
|
}
|
|
|
|
// dialRelay opens a WebSocket relay connection to the replica
|
|
// identified by workerID and returns a snapshot of buffered
|
|
// message_part events plus a live channel of subsequent events.
|
|
// It passes afterID=MaxInt64 so the remote replica skips the
|
|
// full message history snapshot, since the relay only needs
|
|
// live message_part events.
|
|
func dialRelay(
|
|
ctx context.Context,
|
|
chatID uuid.UUID,
|
|
workerID uuid.UUID,
|
|
requestHeader http.Header,
|
|
cfg MultiReplicaSubscribeConfig,
|
|
clk quartz.Clock,
|
|
) (
|
|
snapshot []codersdk.ChatStreamEvent,
|
|
parts <-chan codersdk.ChatStreamEvent,
|
|
cancel func(),
|
|
err error,
|
|
) {
|
|
address, ok := cfg.ResolveReplicaAddress(ctx, workerID)
|
|
if !ok {
|
|
return nil, nil, nil, xerrors.New("worker replica not found")
|
|
}
|
|
|
|
baseURL, err := url.Parse(address)
|
|
if err != nil {
|
|
return nil, nil, nil, xerrors.Errorf("parse relay address %q: %w", address, err)
|
|
}
|
|
replicaID := cfg.ReplicaIDFn()
|
|
relayCtx, relayCancel := context.WithCancel(ctx)
|
|
sdkClient := codersdk.New(baseURL)
|
|
sdkClient.HTTPClient = cfg.ReplicaHTTPClient
|
|
sdkClient.SessionTokenProvider = relayTokenProvider{
|
|
token: extractSessionToken(requestHeader),
|
|
replicaID: replicaID,
|
|
}
|
|
expClient := codersdk.NewExperimentalClient(sdkClient)
|
|
sourceEvents, sourceStream, err := expClient.StreamChat(relayCtx, chatID, &codersdk.StreamChatOptions{
|
|
AfterID: ptr.Ref(int64(math.MaxInt64)),
|
|
})
|
|
if err != nil {
|
|
relayCancel()
|
|
return nil, nil, nil, xerrors.Errorf("dial relay stream: %w", err)
|
|
}
|
|
|
|
snapshot = make([]codersdk.ChatStreamEvent, 0, 100)
|
|
|
|
// Wait briefly for the first event to handle the common
|
|
// case where the remote side has buffered parts but hasn't
|
|
// flushed them to the WebSocket yet.
|
|
const drainTimeout = time.Second
|
|
drainTimer := clk.NewTimer(drainTimeout, "drain")
|
|
defer drainTimer.Stop()
|
|
|
|
drainInitial:
|
|
for len(snapshot) < cap(snapshot) {
|
|
select {
|
|
case <-relayCtx.Done():
|
|
_ = sourceStream.Close()
|
|
relayCancel()
|
|
return nil, nil, nil, xerrors.Errorf("dial relay stream: %w", relayCtx.Err())
|
|
case event, ok := <-sourceEvents:
|
|
if !ok {
|
|
break drainInitial
|
|
}
|
|
if event.Type != codersdk.ChatStreamEventTypeMessagePart {
|
|
continue
|
|
}
|
|
snapshot = append(snapshot, event)
|
|
// After getting the first event, switch to
|
|
// non-blocking drain for remaining buffered events.
|
|
drainTimer.Stop()
|
|
drainTimer.Reset(0)
|
|
case <-drainTimer.C:
|
|
break drainInitial
|
|
}
|
|
}
|
|
|
|
events := make(chan codersdk.ChatStreamEvent, 128)
|
|
|
|
go func() {
|
|
defer close(events)
|
|
defer relayCancel()
|
|
defer func() {
|
|
_ = sourceStream.Close()
|
|
}()
|
|
|
|
// No need to re-send snapshot events — they're
|
|
// returned to the caller directly.
|
|
for {
|
|
select {
|
|
case <-relayCtx.Done():
|
|
return
|
|
case event, ok := <-sourceEvents:
|
|
if !ok {
|
|
return
|
|
}
|
|
if event.Type != codersdk.ChatStreamEventTypeMessagePart {
|
|
continue
|
|
}
|
|
select {
|
|
case events <- event:
|
|
case <-relayCtx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
cancelFn := func() {
|
|
relayCancel()
|
|
_ = sourceStream.Close()
|
|
}
|
|
return snapshot, events, cancelFn, nil
|
|
}
|
|
|
|
// relayTokenProvider authenticates relay requests to the worker
|
|
// replica using the session token extracted from the original
|
|
// browser request. It also stamps each request with the relay
|
|
// source header so the worker can identify it as an inter-replica
|
|
// call.
|
|
type relayTokenProvider struct {
|
|
token string
|
|
replicaID uuid.UUID
|
|
}
|
|
|
|
func (p relayTokenProvider) AsRequestOption() codersdk.RequestOption {
|
|
return func(req *http.Request) {
|
|
req.Header.Set(codersdk.SessionTokenHeader, p.token)
|
|
req.Header.Set(RelaySourceHeader, p.replicaID.String())
|
|
}
|
|
}
|
|
|
|
func (p relayTokenProvider) SetDialOption(opts *websocket.DialOptions) {
|
|
if opts.HTTPHeader == nil {
|
|
opts.HTTPHeader = make(http.Header)
|
|
}
|
|
opts.HTTPHeader.Set(codersdk.SessionTokenHeader, p.token)
|
|
opts.HTTPHeader.Set(RelaySourceHeader, p.replicaID.String())
|
|
}
|
|
|
|
func (p relayTokenProvider) GetSessionToken() string {
|
|
return p.token
|
|
}
|
|
|
|
// extractSessionToken returns the session token carried by the
|
|
// given request headers. It mirrors the priority order used by
|
|
// apiKeyMiddleware: cookie, then Coder-Session-Token header, then
|
|
// Authorization: Bearer header.
|
|
func extractSessionToken(header http.Header) string {
|
|
if header == nil {
|
|
return ""
|
|
}
|
|
// Cookie (browser WebSocket upgrade — most common relay case).
|
|
if raw := header.Get(cookieHeader); raw != "" {
|
|
r := &http.Request{Header: http.Header{cookieHeader: {raw}}}
|
|
if c, err := r.Cookie(codersdk.SessionTokenCookie); err == nil && c.Value != "" {
|
|
return c.Value
|
|
}
|
|
}
|
|
// Coder-Session-Token header (SDK / CLI callers).
|
|
if v := header.Get(codersdk.SessionTokenHeader); v != "" {
|
|
return v
|
|
}
|
|
// Authorization: Bearer <token>.
|
|
if v := header.Get(authorizationHeader); len(v) > 7 && strings.EqualFold(v[:7], "bearer ") {
|
|
return strings.TrimSpace(v[7:])
|
|
}
|
|
return ""
|
|
}
|