import * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import { isBindingHost } from "../Lambda/Function.ts"; /** * Shared HTTP scaffolding for the geo-routes runtime bindings. * * NOT exported from `index.ts` — every `{Op}Http.ts` in this service is a * thin `Layer.effect(Cap, makeGeoRoutesHttpBinding({ … }))` over the builder * below. Everything except the operation and the IAM action is boilerplate. * * geo-routes is a standalone, pay-per-call Amazon Location API with no * resource to manage: every capability takes no arguments, and per the * `geo-routes` service authorization reference all actions authorize through * the singleton `provider/default` pseudo-resource, so grants use * `Resource: ["*"]`. */ export const makeGeoRoutesHttpBinding = (options: { /** * Short capability name used in the binding sid and runtime span, e.g. * `"CalculateRoutes"`. */ capability: string; /** IAM actions granted on `Resource: ["*"]`. */ iamActions: readonly string[]; /** The distilled operation implementing the capability. */ operation: Effect.Effect<(input: I) => Effect.Effect, never, R>; }) => Effect.gen(function* () { const op = yield* options.operation; return Effect.fn(function* () { if (!globalThis.__ALCHEMY_RUNTIME__) { const host = yield* Binding.Host; if (isBindingHost(host)) { yield* host.bind`Allow(${host}, AWS.GeoRoutes.${options.capability}())`( { policyStatements: [ { Effect: "Allow", Action: [...options.iamActions], Resource: ["*"], }, ], }, ); } } return Effect.fn(`AWS.GeoRoutes.${options.capability}`)(function* ( request: I, ) { return yield* op(request); }); }); });