import * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import { isBindingHost } from "../Lambda/Function.ts"; import type { Profile } from "./Profile.ts"; /** * Shared scaffolding for Route 53 Profiles HTTP bindings. * * NOT exported from `index.ts` — every thin `{Op}Http.ts` in this service is * a `Layer.effect(Cap, makeProfilesHttpBinding({ … }))` over the builder * below. Everything except the operation, the IAM action list, and the grant * scope is boilerplate. */ /** * Build the impl Effect for a Route 53 Profiles operation scoped to a * {@link Profile}: the deploy-time half grants `actions`, and the runtime * half injects the profile's `ProfileId` into every request. * * The grant is on `*` — the Route 53 Profiles list actions follow the * common AWS List-action pattern of not supporting resource-level * permissions (a profile-ARN-scoped grant is rejected with AccessDenied). */ export const makeProfilesHttpBinding = < I extends { ProfileId?: string }, A, E, R, >(options: { /** Fully-qualified binding tag, e.g. `AWS.Route53Profiles.ListProfileAssociations`. */ tag: string; /** The distilled operation. */ operation: Effect.Effect<(input: I) => Effect.Effect, never, R>; /** IAM actions granted by the binding. */ actions: readonly string[]; }) => Effect.gen(function* () { const op = yield* options.operation; return Effect.fn(function* (profile: Profile) { const ProfileId = yield* profile.profileId; if (!globalThis.__ALCHEMY_RUNTIME__) { const host = yield* Binding.Host; if (isBindingHost(host)) { yield* host.bind`Allow(${host}, ${options.tag}(${profile}))`({ policyStatements: [ { Effect: "Allow", Action: [...options.actions], Resource: ["*"], }, ], }); } } return Effect.fn(`${options.tag}(${profile.LogicalId})`)(function* ( request?: Omit, ) { const profileId = yield* ProfileId; return yield* op({ ...request, ProfileId: profileId } as I); }); }); });