MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / refreshConnectionToken

Function refreshConnectionToken

packages/core/sdk/src/executor.ts:2027–2057  ·  view source on GitHub ↗
(
      row: ConnectionRow,
      provider: CredentialProvider,
      trigger: RefreshTrigger = "proactive",
    )

Source from the content-addressed store, hash-verified

2025 );
2026
2027 const refreshConnectionToken = (
2028 row: ConnectionRow,
2029 provider: CredentialProvider,
2030 trigger: RefreshTrigger = "proactive",
2031 ): Effect.Effect<string | null, StorageFailure | CredentialResolutionError> =>
2032 // Share a single refresh per connection so concurrent resolves of the same
2033 // connection all await one refresh-token grant (the AS rotates the refresh
2034 // token; parallel grants would race on a consumed token — v1's refresh
2035 // deferred-map). The gate is cleared once the refresh settles so a later
2036 // expiry can refresh again.
2037 Effect.gen(function* () {
2038 const key = connectionKey(row);
2039 // Joining an in-flight grant is correct for BOTH triggers: whatever
2040 // that peer mints is newer than the token this fiber just saw rejected,
2041 // which is exactly what a reactive retry wants. The gate is cleared on
2042 // settle, so a 401 arriving after a refresh completed starts a fresh
2043 // grant rather than replaying the stale memoized one.
2044 const existing = refreshInFlight.get(key);
2045 if (existing) return yield* existing;
2046 // `Effect.cached` memoizes the grant onto a deferred: it runs once and
2047 // replays to every awaiter sharing this entry.
2048 const memoized = yield* Effect.cached(performTokenRefresh(row, provider, trigger));
2049 const gated = memoized.pipe(
2050 Effect.ensuring(Effect.sync(() => refreshInFlight.delete(key))),
2051 );
2052 // Re-check after building (a peer fiber may have registered first while
2053 // we built ours) so everyone converges on the same shared grant.
2054 const winner = refreshInFlight.get(key) ?? gated;
2055 if (winner === gated) refreshInFlight.set(key, gated);
2056 return yield* winner;
2057 });
2058
2059 // Resolve every named input of a connection (`variable → value`). A
2060 // single-secret connection yields `{ token: <value> }`; an apiKey method with

Callers 2

resolveConnectionValuesFunction · 0.85

Calls 6

connectionKeyFunction · 0.85
performTokenRefreshFunction · 0.85
setMethod · 0.80
getMethod · 0.65
syncMethod · 0.65
deleteMethod · 0.65

Tested by

no test coverage detected