Desktop app sets OPENCODE_SERVER_PASSWORD which activates basicAuth on the server, but the SDK client provided to plugins lacks auth headers. The previous setConfig-only approach may silently fail depending on SDK version. Add belt-and-suspenders fallback chain: 1. setConfig headers (existing) 2. request interceptors 3. fetch wrapper via getConfig/setConfig 4. mutable _config.fetch wrapper 5. top-level client.fetch wrapper Replace console.warn with structured log() for better diagnostics.
191 lines
5.1 KiB
TypeScript
191 lines
5.1 KiB
TypeScript
import { log } from "./logger"
|
|
|
|
/**
|
|
* Builds HTTP Basic Auth header from environment variables.
|
|
*
|
|
* @returns Basic Auth header string, or undefined if OPENCODE_SERVER_PASSWORD is not set
|
|
*/
|
|
export function getServerBasicAuthHeader(): string | undefined {
|
|
const password = process.env.OPENCODE_SERVER_PASSWORD
|
|
if (!password) {
|
|
return undefined
|
|
}
|
|
|
|
const username = process.env.OPENCODE_SERVER_USERNAME ?? "opencode"
|
|
const token = Buffer.from(`${username}:${password}`, "utf8").toString("base64")
|
|
|
|
return `Basic ${token}`
|
|
}
|
|
|
|
type UnknownRecord = Record<string, unknown>
|
|
|
|
function isRecord(value: unknown): value is UnknownRecord {
|
|
return typeof value === "object" && value !== null
|
|
}
|
|
|
|
function isRequestFetch(value: unknown): value is (request: Request) => Promise<Response> {
|
|
return typeof value === "function"
|
|
}
|
|
|
|
function wrapRequestFetch(
|
|
baseFetch: (request: Request) => Promise<Response>,
|
|
auth: string
|
|
): (request: Request) => Promise<Response> {
|
|
return async (request: Request): Promise<Response> => {
|
|
const headers = new Headers(request.headers)
|
|
headers.set("Authorization", auth)
|
|
return baseFetch(new Request(request, { headers }))
|
|
}
|
|
}
|
|
|
|
function getInternalClient(client: unknown): UnknownRecord | null {
|
|
if (!isRecord(client)) {
|
|
return null
|
|
}
|
|
|
|
const internal = client["_client"]
|
|
return isRecord(internal) ? internal : null
|
|
}
|
|
|
|
function tryInjectViaSetConfigHeaders(internal: UnknownRecord, auth: string): boolean {
|
|
const setConfig = internal["setConfig"]
|
|
if (typeof setConfig !== "function") {
|
|
return false
|
|
}
|
|
|
|
setConfig({
|
|
headers: {
|
|
Authorization: auth,
|
|
},
|
|
})
|
|
|
|
return true
|
|
}
|
|
|
|
function tryInjectViaInterceptors(internal: UnknownRecord, auth: string): boolean {
|
|
const interceptors = internal["interceptors"]
|
|
if (!isRecord(interceptors)) {
|
|
return false
|
|
}
|
|
|
|
const requestInterceptors = interceptors["request"]
|
|
if (!isRecord(requestInterceptors)) {
|
|
return false
|
|
}
|
|
|
|
const use = requestInterceptors["use"]
|
|
if (typeof use !== "function") {
|
|
return false
|
|
}
|
|
|
|
use((request: Request): Request => {
|
|
if (!request.headers.get("Authorization")) {
|
|
request.headers.set("Authorization", auth)
|
|
}
|
|
return request
|
|
})
|
|
|
|
return true
|
|
}
|
|
|
|
function tryInjectViaFetchWrapper(internal: UnknownRecord, auth: string): boolean {
|
|
const getConfig = internal["getConfig"]
|
|
const setConfig = internal["setConfig"]
|
|
if (typeof getConfig !== "function" || typeof setConfig !== "function") {
|
|
return false
|
|
}
|
|
|
|
const config = getConfig()
|
|
if (!isRecord(config)) {
|
|
return false
|
|
}
|
|
|
|
const fetchValue = config["fetch"]
|
|
if (!isRequestFetch(fetchValue)) {
|
|
return false
|
|
}
|
|
|
|
setConfig({
|
|
fetch: wrapRequestFetch(fetchValue, auth),
|
|
})
|
|
|
|
return true
|
|
}
|
|
|
|
function tryInjectViaMutableInternalConfig(internal: UnknownRecord, auth: string): boolean {
|
|
const configValue = internal["_config"]
|
|
if (!isRecord(configValue)) {
|
|
return false
|
|
}
|
|
|
|
const fetchValue = configValue["fetch"]
|
|
if (!isRequestFetch(fetchValue)) {
|
|
return false
|
|
}
|
|
|
|
configValue["fetch"] = wrapRequestFetch(fetchValue, auth)
|
|
|
|
return true
|
|
}
|
|
|
|
function tryInjectViaTopLevelFetch(client: unknown, auth: string): boolean {
|
|
if (!isRecord(client)) {
|
|
return false
|
|
}
|
|
|
|
const fetchValue = client["fetch"]
|
|
if (!isRequestFetch(fetchValue)) {
|
|
return false
|
|
}
|
|
|
|
client["fetch"] = wrapRequestFetch(fetchValue, auth)
|
|
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* Injects HTTP Basic Auth header into the OpenCode SDK client.
|
|
*
|
|
* This function accesses the SDK's internal `_client.setConfig()` method.
|
|
* While `_client` has an underscore prefix (suggesting internal use), this is actually
|
|
* a stable public API from `@hey-api/openapi-ts` generated client:
|
|
* - `setConfig()` MERGES headers (does not replace existing ones)
|
|
* - This is the documented way to update client config at runtime
|
|
*
|
|
* @see https://github.com/sst/opencode/blob/main/packages/sdk/js/src/gen/client/client.gen.ts
|
|
* @throws {Error} If OPENCODE_SERVER_PASSWORD is set but client structure is incompatible
|
|
*/
|
|
export function injectServerAuthIntoClient(client: unknown): void {
|
|
const auth = getServerBasicAuthHeader()
|
|
if (!auth) {
|
|
return
|
|
}
|
|
|
|
try {
|
|
const internal = getInternalClient(client)
|
|
if (internal) {
|
|
const injectedHeaders = tryInjectViaSetConfigHeaders(internal, auth)
|
|
const injectedInterceptors = tryInjectViaInterceptors(internal, auth)
|
|
const injectedFetch = tryInjectViaFetchWrapper(internal, auth)
|
|
const injectedMutable = tryInjectViaMutableInternalConfig(internal, auth)
|
|
|
|
const injected = injectedHeaders || injectedInterceptors || injectedFetch || injectedMutable
|
|
|
|
if (!injected) {
|
|
log("[opencode-server-auth] OPENCODE_SERVER_PASSWORD is set but SDK client structure is incompatible", {
|
|
keys: Object.keys(internal),
|
|
})
|
|
}
|
|
return
|
|
}
|
|
|
|
const injected = tryInjectViaTopLevelFetch(client, auth)
|
|
if (!injected) {
|
|
log("[opencode-server-auth] OPENCODE_SERVER_PASSWORD is set but no compatible SDK client found")
|
|
}
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : String(error)
|
|
log("[opencode-server-auth] Failed to inject server auth", { message })
|
|
}
|
|
}
|