Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add script for initializing data #18

Merged
merged 2 commits into from
Mar 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@
"@stoplight/spectral-cli": "^6.14.3",
"eslint": "^9.22.0",
"eslint-plugin-format": "^1.0.1",
"nanotar": "^0.2.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9",
8 changes: 8 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions scripts/copy-emoji-data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import path from "node:path";
import process from "node:process";
import { unstable_startWorker } from "wrangler";

const root = path.resolve(import.meta.dirname, "../");

async function run() {
const res = await fetch("https://github.com/mojisdev/emoji-data/archive/refs/heads/main.tar.gz");

if (!res.ok) {
throw new Error(`Failed to fetch emoji-data: ${res.statusText}`);
}

const blob = await res.blob();

const worker = await unstable_startWorker({
config: path.join(root.toString(), "./wrangler.jsonc"),
entrypoint: path.join(root.toString(), "./scripts/emoji-data-setup-app.ts"),
});

const formData = new FormData();
formData.append("file", blob, "emoji-data.tar.gz");

await worker.fetch("https://api.mojis.dev/upload", {
method: "POST",
// @ts-expect-error hmmm
body: formData,
Comment on lines +26 to +27
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Fix TypeScript error instead of suppressing it

The code has a TypeScript error that's being suppressed with a @ts-expect-error comment. This should be addressed properly.

A possible solution would be to properly type the FormData:

- // @ts-expect-error hmmm
- body: formData,
+ body: formData as unknown as BodyInit,

Or you could use an alternative approach that's type-safe.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
// @ts-expect-error hmmm
body: formData,
body: formData as unknown as BodyInit,

});

await worker.dispose();
}

run().catch((err) => {
console.error(err);
process.exit(1);
});
66 changes: 66 additions & 0 deletions scripts/emoji-data-setup-app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import { Hono } from "hono";
import { HTTPException } from "hono/http-exception";
import { parseTarGzip } from "nanotar";

const app = new Hono<{
Bindings: {
EMOJI_DATA: R2Bucket;
};
}>();

app.post(
"/upload",
async (c) => {
const body = await c.req.parseBody();

const file = Array.isArray(body.file) ? body.file[0] : body.file;

if (file == null) {
throw new HTTPException(400, {
message: "No file uploaded",
});
}

if (typeof file === "string") {
throw new HTTPException(400, {
message: "invalid file uploaded",
});
}

const filePrefix = "emoji-data-main/data/";

const tar = await parseTarGzip(await file.arrayBuffer(), {
filter(file) {
if (!file.name.startsWith(filePrefix) || !file.name.endsWith(".json")) {
return false;
}

// remove the file prefix
file.name = file.name.slice(filePrefix.length);

return true;
},
});

const promises = [];

for (const entry of tar) {
if (entry.type !== "file") continue;
const normalizedEntryName = entry.name.replace("./", "");

promises.push(c.env.EMOJI_DATA.put(normalizedEntryName, entry.text));
}

c.executionCtx.waitUntil(
Promise.all(promises),
);

return c.json({
message: "Files uploaded",
});
},
);

console.log("started the emoji data setup app");

export default app;