tldraw/scripts/upload-static-assets.ts
Mitja Bezenšek 1bcc16d15a
Move from unpkg to our own cdn. (#3923)
Switches from unpkg to our own cdn files.

### Change Type

<!--  Please select a 'Scope' label ️ -->

- [x] `sdk` — Changes the tldraw SDK
- [ ] `dotcom` — Changes the tldraw.com web app
- [ ] `docs` — Changes to the documentation, examples, or templates.
- [ ] `vs code` — Changes to the vscode plugin
- [ ] `internal` — Does not affect user-facing stuff

<!--  Please select a 'Type' label ️ -->

- [ ] `bugfix` — Bug fix
- [ ] `feature` — New feature
- [x] `improvement` — Improving existing features
- [ ] `chore` — Updating dependencies, other boring stuff
- [ ] `galaxy brain` — Architectural changes
- [ ] `tests` — Changes to any test code
- [ ] `tools` — Changes to infrastructure, CI, internal scripts,
debugging tools, etc.
- [ ] `dunno` — I don't know

### Release Notes

- Start using our own cdn instead of unpkg.
2024-06-17 13:13:46 +00:00

63 lines
1.7 KiB
TypeScript

import { PutObjectCommand, S3Client } from '@aws-sdk/client-s3'
import fs from 'fs'
import mime from 'mime'
import path from 'path'
import { makeEnv } from './lib/makeEnv'
const env = makeEnv(['R2_ACCESS_KEY_ID', 'R2_ACCESS_KEY_SECRET'])
const R2_URL = 'https://c34edc4e76350954b63adebde86d5eb1.r2.cloudflarestorage.com'
const R2_BUCKET = 'cdn'
const ASSETS_FOLDER = './assets'
const R2 = new S3Client({
region: 'auto',
endpoint: R2_URL,
credentials: {
accessKeyId: env.R2_ACCESS_KEY_ID,
secretAccessKey: env.R2_ACCESS_KEY_SECRET,
},
})
async function uploadFile(key: string, fullPath: string) {
const fileStream = fs.createReadStream(fullPath)
const contentType = mime.getType(fullPath) ?? 'application/octet-stream'
const uploadParams = {
Bucket: R2_BUCKET,
Key: key,
Body: fileStream,
ContentType: contentType,
}
await R2.send(new PutObjectCommand(uploadParams))
}
async function uploadDirectory(prefix: string, directoryPath: string) {
const entries = fs.readdirSync(directoryPath, { withFileTypes: true })
for (const entry of entries) {
const fullPath = path.join(directoryPath, entry.name)
const key = path.join(prefix, entry.name)
if (entry.isDirectory()) {
await uploadDirectory(key, fullPath)
} else if (entry.isFile()) {
await uploadFile(key, fullPath)
}
}
}
export async function uploadStaticAssets(version: string) {
try {
const entries = fs.readdirSync(ASSETS_FOLDER, { withFileTypes: true })
// Loop through all the folders in the assets folder and upload them.
for (const entry of entries) {
if (entry.isDirectory()) {
const folderName = entry.name
await uploadDirectory(`${version}/${folderName}`, `${ASSETS_FOLDER}/${folderName}`)
}
}
} catch (e) {
console.error(e)
process.exit(1)
}
}