@ampless/backend 0.2.0-alpha.7 → 0.2.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.ja.md ADDED
@@ -0,0 +1,130 @@
1
+ > English: [README.md](./README.md)
2
+ >
3
+
4
+ # @ampless/backend
5
+
6
+ [ampless](https://github.com/heavymoons/ampless) 向け Amplify Gen 2 バックエンドファクトリー。IAM / SQS / DynamoDB ストリームの配線、認証 / データ / ストレージの定義、およびすべてのイベント処理 Lambda を `defineAmplessBackend(...)` ひとつのファクトリーにまとめます。
7
+
8
+ > **プレリリース / アルファ版。** v1.0 まではマイナーバージョンでも破壊的変更が入る可能性があります。
9
+
10
+ テンプレートから切り出すことで、スキャフォールダーを再実行せずに `npm update @ampless/backend` でアップデートできます。バックエンドのバグ修正やインフラ改善はパッケージ経由で届きます。ユーザー側の `amplify/` ツリーは、ファクトリーを組み合わせる 1〜5 行のシェルだけで済みます。
11
+
12
+ ## インストール
13
+
14
+ ```bash
15
+ npm install @ampless/backend@alpha ampless@alpha
16
+ ```
17
+
18
+ ピア依存: `@aws-amplify/backend`(^1)、`aws-cdk-lib`(^2)。CLI スキャフォールダーがテンプレートの `package.json` に互換バージョンをピン留めします。
19
+
20
+ ## 使い方
21
+
22
+ ### `amplify/backend.ts`
23
+
24
+ ```ts
25
+ import { defineAmplessBackend } from '@ampless/backend'
26
+ import { auth } from './auth/resource'
27
+ import { data } from './data/resource'
28
+ import { storage } from './storage/resource'
29
+ import { postConfirmation } from './auth/post-confirmation/resource'
30
+ import { eventDispatcher } from './events/dispatcher/resource'
31
+ import { processorTrusted } from './events/processor-trusted/resource'
32
+ import { processorUntrusted } from './events/processor-untrusted/resource'
33
+ import { apiKeyRenewer } from './functions/api-key-renewer/resource'
34
+
35
+ export default defineAmplessBackend({
36
+ auth, data, storage, postConfirmation,
37
+ eventDispatcher, processorTrusted, processorUntrusted, apiKeyRenewer,
38
+ })
39
+ ```
40
+
41
+ ### `amplify/auth/resource.ts`
42
+
43
+ ```ts
44
+ import { defineAuth } from '@aws-amplify/backend'
45
+ import { amplessAuthConfig } from '@ampless/backend'
46
+ import { postConfirmation } from './post-confirmation/resource'
47
+
48
+ export const auth = defineAuth(amplessAuthConfig({ postConfirmation }))
49
+ ```
50
+
51
+ > `defineAuth` は `amplify/auth/resource.ts` 自体に記述する必要があります。Amplify Gen 2 のインポートパス検証機能が `defineAuth` / `defineData` / `defineStorage` の呼び出し元を検査し、他のファイル(`node_modules/@ampless/backend/...` 配下のラッパーを含む)から呼び出された場合に `Amplify Auth must be defined in amplify/auth/resource.ts` というエラーを投げます。`amplessAuthConfig` は props オブジェクトを返すため、ampless のデフォルト設定を失わずにこのファイルで `defineAuth(...)` を呼び出せます。
52
+
53
+ ### `amplify/data/resource.ts`
54
+
55
+ ```ts
56
+ import { a, defineData, type ClientSchema } from '@aws-amplify/backend'
57
+ import { amplessSchemaModels, defaultAuthorizationModes } from '@ampless/backend'
58
+
59
+ const schema = a.schema({
60
+ ...amplessSchemaModels(a),
61
+ // カスタムモデルをここに追加 — 組み込みモデルと同居します:
62
+ // MyCustomModel: a.model({ ... }).authorization((allow) => [...]),
63
+ })
64
+
65
+ export type Schema = ClientSchema<typeof schema>
66
+ export const data = defineData({ schema, authorizationModes: defaultAuthorizationModes })
67
+ ```
68
+
69
+ 3 つの AppSync JS リゾルバーファイル(`list-published-posts.js`、`get-published-post.js`、`list-posts-by-tag.js`)はテンプレート内に残ります — AppSync がリゾルバーの `entry` パスを CDK synth 時に `defineData` を呼び出すファイルからの相対パスで解決するため、pnpm でシンボリックリンクされた `node_modules` パスは解決を通過できません。`amplify/data/` 以外の場所に移動する場合は、`amplessSchemaModels(a, { resolverPaths })` で新しいパスを渡してください。
70
+
71
+ ### `amplify/storage/resource.ts`
72
+
73
+ ```ts
74
+ import { defineStorage } from '@aws-amplify/backend'
75
+ import { amplessStorageConfig } from '@ampless/backend'
76
+ export const storage = defineStorage(amplessStorageConfig())
77
+ ```
78
+
79
+ > 認証と同じインポートパス制約があります — `defineStorage` はこのファイルから直接呼び出す必要があります。`amplessStorageConfig` は props オブジェクトを返します。
80
+
81
+ ### Lambda 薄型シェル
82
+
83
+ `amplify/auth/`、`amplify/events/`、`amplify/functions/` 内の各ハンドラーファイルは 1〜3 行の re-export になります。Amplify の esbuild がこのパッケージへのインポートを追跡し、実際のハンドラーコードを Lambda アーティファクトにバンドルします。
84
+
85
+ ```ts
86
+ // amplify/auth/post-confirmation/handler.ts
87
+ export { handler } from '@ampless/backend/auth/post-confirmation'
88
+
89
+ // amplify/events/dispatcher/handler.ts
90
+ export { handler } from '@ampless/backend/events/dispatcher'
91
+
92
+ // amplify/events/processor-trusted/handler.ts
93
+ import config from '../../../cms.config'
94
+ import { createProcessorTrustedHandler } from '@ampless/backend/events/processor-trusted'
95
+ export const handler = createProcessorTrustedHandler({
96
+ plugins: config.plugins,
97
+ site: config.site,
98
+ })
99
+
100
+ // amplify/events/processor-untrusted/handler.ts
101
+ import config from '../../../cms.config'
102
+ import { createProcessorUntrustedHandler } from '@ampless/backend/events/processor-untrusted'
103
+ export const handler = createProcessorUntrustedHandler({
104
+ plugins: config.plugins,
105
+ site: config.site,
106
+ })
107
+
108
+ // amplify/functions/api-key-renewer/handler.ts
109
+ export { handler } from '@ampless/backend/functions/api-key-renewer'
110
+ ```
111
+
112
+ ## サブパス
113
+
114
+ - `@ampless/backend` — `defineAmplessBackend`、`amplessAuthConfig`、`amplessStorageConfig`、`amplessSchemaModels`、`extendAmplessSchema`、`defaultAuthorizationModes`
115
+ - `@ampless/backend/auth/post-confirmation` — Lambda ハンドラー
116
+ - `@ampless/backend/events/dispatcher` — Lambda ハンドラー
117
+ - `@ampless/backend/events/processor-trusted` — `createProcessorTrustedHandler({ plugins, site })`
118
+ - `@ampless/backend/events/processor-untrusted` — `createProcessorUntrustedHandler({ plugins, site })`
119
+ - `@ampless/backend/functions/api-key-renewer` — Lambda ハンドラー
120
+
121
+ ## テンプレートに残るもの
122
+
123
+ - `amplify/data/*.js` — AppSync JS リゾルバー(ファイルパス制約のため)。
124
+ - すべての `resource.ts` と `handler.ts` — 薄型シェルですが、Amplify の CDK synth がユーザー側で解決する `entry: './handler.ts'` パスを保持しています。
125
+ - `cms.config.ts` と `themes-registry.ts` — ユーザーが所有するカスタマイズサーフェス。
126
+ - `templates/<theme>/` 以下のテーマコンポーネント — ユーザーが所有。
127
+
128
+ ## ライセンス
129
+
130
+ MIT
package/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ > 日本語版: [README.ja.md](./README.ja.md)
2
+ >
3
+
1
4
  # @ampless/backend
2
5
 
3
6
  Amplify Gen 2 backend factories for [ampless](https://github.com/heavymoons/ampless). Bundles the IAM / SQS / DynamoDB-stream wiring, the auth / data / storage definitions, and every event-processing Lambda behind one `defineAmplessBackend(...)` factory.
@@ -0,0 +1,33 @@
1
+ /**
2
+ * MCP HTTP endpoint Lambda. Phase 3: Bearer token validation only.
3
+ *
4
+ * Reads the KvStore table directly (PK = 'mcp-tokens', SK = SHA-256
5
+ * hash of the plaintext token) instead of going through AppSync — the
6
+ * Lambda IAM role only needs `dynamodb:GetItem` on that one table,
7
+ * which is much narrower than `appsync:GraphQL` and avoids the
8
+ * IAM-auth-mode complexity of letting Lambdas call AppSync as
9
+ * privileged identity. Phase 4 will add AppSync IAM auth when tool
10
+ * dispatch actually needs schema-aware access.
11
+ *
12
+ * Function URL event format: Lambda Function URLs emit API Gateway
13
+ * HTTP v2 events (https://docs.aws.amazon.com/lambda/latest/dg/urls-invocation.html#urls-payloads).
14
+ * Headers arrive lowercased.
15
+ */
16
+ interface FunctionUrlEvent {
17
+ headers?: Record<string, string | undefined>;
18
+ body?: string;
19
+ isBase64Encoded?: boolean;
20
+ requestContext?: {
21
+ http?: {
22
+ method?: string;
23
+ };
24
+ };
25
+ }
26
+ interface FunctionUrlResult {
27
+ statusCode: number;
28
+ headers?: Record<string, string>;
29
+ body: string;
30
+ }
31
+ declare const handler: (event: FunctionUrlEvent) => Promise<FunctionUrlResult>;
32
+
33
+ export { handler };
@@ -0,0 +1,70 @@
1
+ // src/functions/mcp-handler.ts
2
+ import { DynamoDBClient } from "@aws-sdk/client-dynamodb";
3
+ import { DynamoDBDocumentClient, GetCommand } from "@aws-sdk/lib-dynamodb";
4
+ import { createHash } from "crypto";
5
+ var TOKENS_PK = "mcp-tokens";
6
+ function requireEnv(name) {
7
+ const v = process.env[name];
8
+ if (!v) throw new Error(`[mcp-handler] missing required env var ${name}`);
9
+ return v;
10
+ }
11
+ var KV_TABLE = requireEnv("AMPLESS_KV_TABLE");
12
+ var ddb = DynamoDBDocumentClient.from(new DynamoDBClient({}));
13
+ function hashToken(plain) {
14
+ return createHash("sha256").update(plain).digest("hex");
15
+ }
16
+ function jsonResponse(statusCode, body) {
17
+ return {
18
+ statusCode,
19
+ headers: { "content-type": "application/json" },
20
+ body: JSON.stringify(body)
21
+ };
22
+ }
23
+ async function validateBearer(plaintext) {
24
+ const hash = hashToken(plaintext);
25
+ const res = await ddb.send(
26
+ new GetCommand({
27
+ TableName: KV_TABLE,
28
+ Key: { pk: TOKENS_PK, sk: hash }
29
+ })
30
+ );
31
+ const row = res.Item;
32
+ if (!row?.value) return null;
33
+ let meta;
34
+ try {
35
+ meta = JSON.parse(row.value);
36
+ } catch {
37
+ console.error("[mcp-handler] could not parse token row", { hash });
38
+ return null;
39
+ }
40
+ if (meta.revokedAt) return null;
41
+ if (meta.expiresAt && new Date(meta.expiresAt).getTime() <= Date.now()) return null;
42
+ return meta;
43
+ }
44
+ var handler = async (event) => {
45
+ if (event.requestContext?.http?.method === "OPTIONS") {
46
+ return { statusCode: 204, body: "" };
47
+ }
48
+ const authHeader = event.headers?.authorization ?? event.headers?.Authorization;
49
+ if (!authHeader) {
50
+ return jsonResponse(401, { error: "missing_authorization" });
51
+ }
52
+ const match = /^Bearer\s+(amk_[A-Za-z0-9_-]+)$/.exec(authHeader);
53
+ if (!match) {
54
+ return jsonResponse(401, { error: "invalid_authorization" });
55
+ }
56
+ const plaintext = match[1];
57
+ const meta = await validateBearer(plaintext);
58
+ if (!meta) {
59
+ return jsonResponse(401, { error: "invalid_token" });
60
+ }
61
+ return jsonResponse(200, {
62
+ ok: true,
63
+ tokenPrefix: meta.prefix,
64
+ scope: meta.scope,
65
+ note: "Phase 3 stub. JSON-RPC tool dispatch lands in Phase 4."
66
+ });
67
+ };
68
+ export {
69
+ handler
70
+ };
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ interface DefineAmplessBackendOpts {
14
14
  processorUntrusted: FunctionResource;
15
15
  apiKeyRenewer: FunctionResource;
16
16
  userAdmin: FunctionResource;
17
+ mcpHandler: FunctionResource;
17
18
  }
18
19
  type AmplessBackend = any;
19
20
  /**
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import { defineBackend } from "@aws-amplify/backend";
3
3
  import { Effect, PolicyStatement, AnyPrincipal } from "aws-cdk-lib/aws-iam";
4
4
  import { Duration, Stack } from "aws-cdk-lib";
5
5
  import { Queue } from "aws-cdk-lib/aws-sqs";
6
- import { StartingPosition } from "aws-cdk-lib/aws-lambda";
6
+ import { FunctionUrlAuthType, HttpMethod, StartingPosition } from "aws-cdk-lib/aws-lambda";
7
7
  import { DynamoEventSource, SqsEventSource } from "aws-cdk-lib/aws-lambda-event-sources";
8
8
  import { Rule, Schedule } from "aws-cdk-lib/aws-events";
9
9
  import { LambdaFunction } from "aws-cdk-lib/aws-events-targets";
@@ -17,7 +17,8 @@ function defineAmplessBackend(opts) {
17
17
  processorTrusted: opts.processorTrusted,
18
18
  processorUntrusted: opts.processorUntrusted,
19
19
  apiKeyRenewer: opts.apiKeyRenewer,
20
- userAdmin: opts.userAdmin
20
+ userAdmin: opts.userAdmin,
21
+ mcpHandler: opts.mcpHandler
21
22
  });
22
23
  const cfnBucket = backend.storage.resources.cfnResources.cfnBucket;
23
24
  cfnBucket.publicAccessBlockConfiguration = {
@@ -166,6 +167,31 @@ function defineAmplessBackend(opts) {
166
167
  schedule: Schedule.cron({ minute: "0", hour: "3", day: "1", month: "*", year: "*" }),
167
168
  targets: [new LambdaFunction(apiKeyRenewerFn)]
168
169
  });
170
+ const mcpHandlerFn = backend.mcpHandler.resources.lambda;
171
+ mcpHandlerFn.addToRolePolicy(
172
+ new PolicyStatement({
173
+ effect: Effect.ALLOW,
174
+ actions: ["dynamodb:GetItem"],
175
+ resources: [kvTable.tableArn]
176
+ })
177
+ );
178
+ mcpHandlerFn.addEnvironment("AMPLESS_KV_TABLE", kvTable.tableName);
179
+ const mcpFunctionUrl = mcpHandlerFn.addFunctionUrl({
180
+ authType: FunctionUrlAuthType.NONE,
181
+ cors: {
182
+ allowedOrigins: ["*"],
183
+ allowedMethods: [HttpMethod.POST, HttpMethod.OPTIONS],
184
+ allowedHeaders: ["*"],
185
+ maxAge: Duration.hours(1)
186
+ }
187
+ });
188
+ backend.addOutput({
189
+ custom: {
190
+ mcp: {
191
+ endpoint: mcpFunctionUrl.url
192
+ }
193
+ }
194
+ });
169
195
  return backend;
170
196
  }
171
197
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampless/backend",
3
- "version": "0.2.0-alpha.7",
3
+ "version": "0.2.0-alpha.9",
4
4
  "description": "Amplify Gen 2 backend factories for ampless: auth, data, storage, event processors, API key renewer",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,6 +32,10 @@
32
32
  "./functions/api-key-renewer": {
33
33
  "import": "./dist/functions/api-key-renewer.js",
34
34
  "types": "./dist/functions/api-key-renewer.d.ts"
35
+ },
36
+ "./functions/mcp-handler": {
37
+ "import": "./dist/functions/mcp-handler.js",
38
+ "types": "./dist/functions/mcp-handler.d.ts"
35
39
  }
36
40
  },
37
41
  "files": [
@@ -56,7 +60,7 @@
56
60
  "@aws-sdk/client-sqs": "^3.717.0",
57
61
  "@aws-sdk/lib-dynamodb": "^3.717.0",
58
62
  "@aws-sdk/util-dynamodb": "^3.717.0",
59
- "ampless": "0.2.0-alpha.5"
63
+ "ampless": "0.2.0-alpha.6"
60
64
  },
61
65
  "peerDependencies": {
62
66
  "@aws-amplify/backend": "^1",