asset upload: nix list and delete commands (#3847)

these need to go

### Change Type

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

- [ ] `sdk` — Changes the tldraw SDK
- [x] `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 ️ -->

- [x] `bugfix` — Bug fix
- [ ] `feature` — New feature
- [ ] `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
This commit is contained in:
Mime Čuvalo 2024-05-30 12:13:20 +01:00 committed by GitHub
parent a457a39081
commit 760e8724db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,18 +43,6 @@ const router = Router()
router
.all('*', preflight)
.get('/uploads/list', async (request, env: Env) => {
// we need to protect this behind auth
const url = new URL(request.url)
const options: R2ListOptions = {
prefix: url.searchParams.get('prefix') ?? undefined,
delimiter: url.searchParams.get('delimiter') ?? undefined,
cursor: url.searchParams.get('cursor') ?? undefined,
}
const listing = await env.UPLOADS.list(options)
return Response.json(listing)
})
.get('/uploads/:objectName', async (request: Request, env: Env, ctx: ExecutionContext) => {
const url = new URL(request.url)
@ -155,13 +143,6 @@ router
},
})
})
.delete('/uploads/:objectName', async (request: Request, env: Env) => {
// Not sure if this is necessary, might be dangerous to expose
// TODO: infer types from path
// @ts-expect-error
await env.UPLOADS.delete(request.params.objectName)
return new Response()
})
.get('*', () => new Response('Not found', { status: 404 }))
const Worker = {