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

Function resolveConnectionValues

packages/core/sdk/src/executor.ts:1650–1683  ·  view source on GitHub ↗
(
      row: ConnectionRow,
    )

Source from the content-addressed store, hash-verified

1648 // two distinct inputs yields one entry per variable. OAuth connections refresh
1649 // first (always single-input → `{ token: <access> }`).
1650 const resolveConnectionValues = (
1651 row: ConnectionRow,
1652 ): Effect.Effect<Record<string, string | null>, StorageFailure | CredentialResolutionError> =>
1653 Effect.gen(function* () {
1654 const provider = credentialProviders.get(row.provider);
1655 if (!provider) {
1656 return yield* new CredentialProviderNotRegisteredError({
1657 provider: ProviderKey.make(row.provider),
1658 });
1659 }
1660 // OAuth connections refresh their access token before resolving when
1661 // it has expired (or is within the skew window).
1662 const expiresAt = row.expires_at == null ? null : Number(row.expires_at);
1663 if (row.oauth_client != null && shouldRefreshToken({ expiresAt })) {
1664 const access = yield* refreshConnectionToken(row, provider);
1665 return { [PRIMARY_INPUT_VARIABLE]: access };
1666 }
1667 const out: Record<string, string | null> = {};
1668 for (const [variable, itemId] of Object.entries(connectionItemIds(row))) {
1669 out[variable] = yield* provider.get(ProviderItemId.make(itemId));
1670 }
1671 return out;
1672 }).pipe(
1673 // CredentialProviderNotRegisteredError is part of CredentialResolution
1674 // for ctx.connections.resolveValue's StorageFailure channel — fold it.
1675 Effect.catchTag("CredentialProviderNotRegisteredError", (err) =>
1676 Effect.fail(
1677 new StorageError({
1678 message: `Credential provider "${err.provider}" is not registered.`,
1679 cause: err,
1680 }),
1681 ),
1682 ),
1683 );
1684
1685 /** The primary (`token`) value — the public seam for OAuth + single-input
1686 * callers that only ever need one value. */

Callers 4

resolveConnectionValueFunction · 0.85
connectionCheckHealthFunction · 0.85
executeFunction · 0.85

Calls 4

shouldRefreshTokenFunction · 0.90
refreshConnectionTokenFunction · 0.85
connectionItemIdsFunction · 0.85
getMethod · 0.65

Tested by

no test coverage detected