wrangler 0.0.2 → 0.0.6

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.
Files changed (69) hide show
  1. package/README.md +51 -55
  2. package/bin/wrangler.js +36 -0
  3. package/import_meta_url.js +3 -0
  4. package/miniflare-config-stubs/.env.empty +0 -0
  5. package/miniflare-config-stubs/package.empty.json +1 -0
  6. package/miniflare-config-stubs/wrangler.empty.toml +0 -0
  7. package/package.json +111 -9
  8. package/src/__tests__/clipboardy-mock.js +4 -0
  9. package/src/__tests__/index.test.ts +391 -0
  10. package/src/__tests__/jest.setup.ts +17 -0
  11. package/src/__tests__/mock-cfetch.js +42 -0
  12. package/src/__tests__/mock-dialogs.ts +65 -0
  13. package/src/api/form_data.ts +141 -0
  14. package/src/api/inspect.ts +430 -0
  15. package/src/api/preview.ts +128 -0
  16. package/src/api/worker.ts +161 -0
  17. package/src/cfetch.ts +72 -0
  18. package/src/cli.ts +10 -0
  19. package/src/config.ts +122 -0
  20. package/src/dev.tsx +867 -0
  21. package/src/dialogs.tsx +77 -0
  22. package/src/index.tsx +1875 -0
  23. package/src/kv.tsx +211 -0
  24. package/src/module-collection.ts +64 -0
  25. package/src/pages.tsx +818 -0
  26. package/src/proxy.ts +104 -0
  27. package/src/publish.ts +358 -0
  28. package/src/sites.tsx +115 -0
  29. package/src/tail.tsx +71 -0
  30. package/src/user.tsx +1029 -0
  31. package/static-asset-facade.js +47 -0
  32. package/vendor/@cloudflare/kv-asset-handler/CHANGELOG.md +332 -0
  33. package/vendor/@cloudflare/kv-asset-handler/LICENSE_APACHE +176 -0
  34. package/vendor/@cloudflare/kv-asset-handler/LICENSE_MIT +25 -0
  35. package/vendor/@cloudflare/kv-asset-handler/README.md +245 -0
  36. package/vendor/@cloudflare/kv-asset-handler/dist/index.d.ts +32 -0
  37. package/vendor/@cloudflare/kv-asset-handler/dist/index.js +354 -0
  38. package/vendor/@cloudflare/kv-asset-handler/dist/mocks.d.ts +13 -0
  39. package/vendor/@cloudflare/kv-asset-handler/dist/mocks.js +148 -0
  40. package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.d.ts +1 -0
  41. package/vendor/@cloudflare/kv-asset-handler/dist/test/getAssetFromKV.js +436 -0
  42. package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.d.ts +1 -0
  43. package/vendor/@cloudflare/kv-asset-handler/dist/test/mapRequestToAsset.js +40 -0
  44. package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.d.ts +1 -0
  45. package/vendor/@cloudflare/kv-asset-handler/dist/test/serveSinglePageApp.js +42 -0
  46. package/vendor/@cloudflare/kv-asset-handler/dist/types.d.ts +26 -0
  47. package/vendor/@cloudflare/kv-asset-handler/dist/types.js +31 -0
  48. package/vendor/@cloudflare/kv-asset-handler/package.json +52 -0
  49. package/vendor/@cloudflare/kv-asset-handler/src/index.ts +296 -0
  50. package/vendor/@cloudflare/kv-asset-handler/src/mocks.ts +136 -0
  51. package/vendor/@cloudflare/kv-asset-handler/src/test/getAssetFromKV.ts +464 -0
  52. package/vendor/@cloudflare/kv-asset-handler/src/test/mapRequestToAsset.ts +33 -0
  53. package/vendor/@cloudflare/kv-asset-handler/src/test/serveSinglePageApp.ts +42 -0
  54. package/vendor/@cloudflare/kv-asset-handler/src/types.ts +39 -0
  55. package/vendor/wrangler-mime/CHANGELOG.md +289 -0
  56. package/vendor/wrangler-mime/LICENSE +21 -0
  57. package/vendor/wrangler-mime/Mime.js +97 -0
  58. package/vendor/wrangler-mime/README.md +187 -0
  59. package/vendor/wrangler-mime/cli.js +46 -0
  60. package/vendor/wrangler-mime/index.js +4 -0
  61. package/vendor/wrangler-mime/lite.js +4 -0
  62. package/vendor/wrangler-mime/package.json +52 -0
  63. package/vendor/wrangler-mime/types/other.js +1 -0
  64. package/vendor/wrangler-mime/types/standard.js +1 -0
  65. package/wrangler-dist/cli.js +125758 -0
  66. package/wrangler-dist/cli.js.map +7 -0
  67. package/.npmignore +0 -15
  68. package/index.js +0 -250
  69. package/tests/is.spec.js +0 -1155
package/src/kv.tsx ADDED
@@ -0,0 +1,211 @@
1
+ import type { Config } from "./config";
2
+ import cfetch from "./cfetch";
3
+ import qs from "node:querystring";
4
+
5
+ type KvArgs = {
6
+ binding?: string;
7
+ "namespace-id"?: string;
8
+ env?: string;
9
+ preview?: boolean;
10
+ config?: Config;
11
+ };
12
+
13
+ export async function listNamespaces(accountId: string) {
14
+ let page = 1,
15
+ done = false,
16
+ results = [];
17
+ while (!(done || results.length % 100 !== 0)) {
18
+ const json = await cfetch<
19
+ { id: string; title: string; supports_url_encoding: boolean }[]
20
+ >(
21
+ `/accounts/${accountId}/storage/kv/namespaces?per_page=100&order=title&direction=asc&page=${page}`
22
+ );
23
+ page++;
24
+ results = [...results, ...json];
25
+ if (json.length === 0) {
26
+ done = true;
27
+ }
28
+ }
29
+ return results;
30
+ }
31
+
32
+ export async function listNamespaceKeys(
33
+ accountId: string,
34
+ namespaceId: string,
35
+ prefix?: string,
36
+ limit?: number
37
+ ) {
38
+ // TODO: this doesn't appear to do pagination
39
+ return await cfetch<
40
+ { name: string; expiration: number; metadata: { [key: string]: unknown } }[]
41
+ >(
42
+ `/accounts/${accountId}/storage/kv/namespaces/${namespaceId}/keys?${qs.stringify(
43
+ { prefix, limit }
44
+ )}`
45
+ );
46
+ }
47
+
48
+ export async function putKeyValue(
49
+ accountId: string,
50
+ namespaceId: string,
51
+ key: string,
52
+ value: string,
53
+ args?: { expiration?: number; expiration_ttl?: number }
54
+ ) {
55
+ return await cfetch(
56
+ `/accounts/${accountId}/storage/kv/namespaces/${namespaceId}/values/${key}?${
57
+ args
58
+ ? qs.stringify({
59
+ expiration: args.expiration,
60
+ expiration_ttl: args.expiration_ttl,
61
+ })
62
+ : ""
63
+ }`,
64
+ { method: "PUT", body: value }
65
+ );
66
+ }
67
+
68
+ export async function putBulkKeyValue(
69
+ accountId: string,
70
+ namespaceId: string,
71
+ keyvalueStr: string
72
+ ) {
73
+ return await cfetch(
74
+ `/accounts/${accountId}/storage/kv/namespaces/${namespaceId}/bulk`,
75
+ {
76
+ method: "PUT",
77
+ body: keyvalueStr,
78
+ headers: { "Content-Type": "application/json" },
79
+ }
80
+ );
81
+ }
82
+
83
+ export async function deleteBulkKeyValue(
84
+ accountId: string,
85
+ namespaceId: string,
86
+ keyStr: string
87
+ ) {
88
+ return await cfetch(
89
+ `/accounts/${accountId}/storage/kv/namespaces/${namespaceId}/bulk`,
90
+ {
91
+ method: "DELETE",
92
+ body: keyStr,
93
+ headers: { "Content-Type": "application/json" },
94
+ }
95
+ );
96
+ }
97
+
98
+ export function getNamespaceId({
99
+ preview,
100
+ binding,
101
+ config,
102
+ "namespace-id": namespaceId,
103
+ env,
104
+ }: KvArgs): string {
105
+ // nice
106
+ if (namespaceId) {
107
+ return namespaceId;
108
+ }
109
+
110
+ // begin pre-flight checks
111
+
112
+ // `--binding` is only valid if there's a wrangler configuration file.
113
+ if (binding && !config) {
114
+ throw new Error("--binding specified, but no config file was found.");
115
+ }
116
+
117
+ // there's no config. abort here
118
+ if (!config) {
119
+ throw new Error(
120
+ "Failed to find a config file.\n" +
121
+ "Either use --namespace-id to upload directly or create a configuration file with a binding."
122
+ );
123
+ }
124
+
125
+ // they want to use an environment, actually
126
+ if (env) {
127
+ if (!config.env || !config.env[env]) {
128
+ throw new Error(
129
+ `Failed to find environment "${env}" in configuration file!`
130
+ );
131
+ }
132
+
133
+ // TODO: either a bespoke arg type for this function to avoid undefineds or a EnvOrConfig type
134
+ return getNamespaceId({
135
+ binding,
136
+ "namespace-id": namespaceId,
137
+ env: undefined,
138
+ preview,
139
+ config: {
140
+ env: undefined,
141
+ build: undefined,
142
+ name: undefined,
143
+ account_id: undefined,
144
+ ...config.env[env],
145
+ },
146
+ });
147
+ }
148
+
149
+ // there's no KV namespaces
150
+ if (!config.kv_namespaces || config.kv_namespaces.length === 0) {
151
+ throw new Error(
152
+ "No KV Namespace to upload to! Either use --namespace-id to upload directly or add a KV namespace to your wrangler config file."
153
+ );
154
+ }
155
+
156
+ const namespace = config.kv_namespaces.find(
157
+ (namespace) => namespace.binding === binding
158
+ );
159
+
160
+ // we couldn't find a namespace with that binding
161
+ if (!namespace) {
162
+ throw new Error(`No KV Namespaces found with binding ${binding}!`);
163
+ }
164
+
165
+ // end pre-flight checks
166
+
167
+ // we're in preview mode, `--preview true` or `--preivew` was passed
168
+ if (preview && namespace.preview_id) {
169
+ namespaceId = namespace.preview_id;
170
+ } else {
171
+ throw new Error(
172
+ `No preview ID found for ${binding}. Add one to your wrangler config file to use a separate namespace for previewing your worker.`
173
+ );
174
+ }
175
+
176
+ // either `--preview false`, or preview wasn't passed
177
+ // TODO: should we care? or should we just treat false and undefined the same
178
+ const previewIsDefined = typeof preview !== "undefined";
179
+
180
+ // --preview false was passed
181
+ if (previewIsDefined && namespace.id) {
182
+ namespaceId = namespace.id;
183
+ } else {
184
+ throw new Error(
185
+ `No namespace ID found for ${binding}. Add one to your wrangler config file to use a separate namespace for previewing your worker.`
186
+ );
187
+ }
188
+
189
+ // `--preview` wasn't passed
190
+ const bindingHasOnlyOneId =
191
+ (namespace.id && !namespace.preview_id) ||
192
+ (!namespace.id && namespace.preview_id);
193
+ if (bindingHasOnlyOneId) {
194
+ namespaceId = namespace.id || namespace.preview_id;
195
+ } else {
196
+ throw new Error(
197
+ `${binding} has both a namespace ID and a preview ID. Specify "--preview" or "--preview false" to avoid writing data to the wrong namespace.`
198
+ );
199
+ }
200
+
201
+ // shouldn't happen. we should be able to prove this with strong typing.
202
+ // TODO: when we add strongly typed commands, rewrite these checks so they're exhaustive
203
+ if (!namespaceId) {
204
+ throw Error(
205
+ "Something went wrong trying to determine which namespace to upload to.\n" +
206
+ "Please create a github issue with the command you just ran along with your wrangler configuration."
207
+ );
208
+ }
209
+
210
+ return namespaceId;
211
+ }
@@ -0,0 +1,64 @@
1
+ import type { CfModule } from "./api/worker";
2
+ import type esbuild from "esbuild";
3
+ import path from "node:path";
4
+ import { readFile } from "node:fs/promises";
5
+ import crypto from "node:crypto";
6
+
7
+ // This is a combination of an esbuild plugin and a mutable array
8
+ // that we use to collect module references from source code.
9
+ // There will be modules that _shouldn't_ be inlined directly into
10
+ // the bundle. (eg. wasm modules, some text files, etc). We can include
11
+ // those files as modules in the multi part forker form upload. This
12
+ // plugin+array is used to collect references to these modules, reference
13
+ // them correctly in the bundle, and add them to the form upload.
14
+
15
+ export default function makeModuleCollector(): {
16
+ modules: CfModule[];
17
+ plugin: esbuild.Plugin;
18
+ } {
19
+ const modules: CfModule[] = [];
20
+ return {
21
+ modules,
22
+ plugin: {
23
+ name: "wrangler-module-collector",
24
+ setup(build) {
25
+ build.onStart(() => {
26
+ // reset the moduels collection
27
+ modules.splice(0);
28
+ });
29
+
30
+ build.onResolve(
31
+ // filter on "known" file types,
32
+ // we can expand this list later
33
+ { filter: /.*\.(pem|txt|html|wasm)$/ },
34
+ async (args: esbuild.OnResolveArgs) => {
35
+ // take the file and massage it to a
36
+ // transportable/manageable format
37
+ const fileExt = path.extname(args.path);
38
+ const filePath = path.join(args.resolveDir, args.path);
39
+ const fileContent = await readFile(filePath);
40
+ const fileHash = crypto
41
+ .createHash("sha1")
42
+ .update(fileContent)
43
+ .digest("hex");
44
+ const fileName = `${fileHash}-${path.basename(args.path)}`;
45
+
46
+ // add the module to the array
47
+ modules.push({
48
+ name: fileName,
49
+ content: fileContent,
50
+ type: fileExt === ".wasm" ? "compiled-wasm" : "text",
51
+ });
52
+
53
+ return {
54
+ path: fileName, // change the reference to the changed module
55
+ external: true, // mark it as external in the bundle
56
+ namespace: "wrangler-module-collector-ns", // just a tag, this isn't strictly necessary
57
+ watchFiles: [filePath], // we also add the file to esbuild's watch list
58
+ };
59
+ }
60
+ );
61
+ },
62
+ },
63
+ };
64
+ }