-
Notifications
You must be signed in to change notification settings - Fork 0
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
+111
−0
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}); | ||
|
||
await worker.dispose(); | ||
} | ||
|
||
run().catch((err) => { | ||
console.error(err); | ||
process.exit(1); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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:
Or you could use an alternative approach that's type-safe.
📝 Committable suggestion